question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
Which Winners is the highest one that has a Rank larger than 7, and a Third smaller than 1?
CREATE TABLE table_name_44 (winners INTEGER, rank VARCHAR, third VARCHAR)
SELECT MAX(winners) FROM table_name_44 WHERE rank > 7 AND third < 1
### Context: CREATE TABLE table_name_44 (winners INTEGER, rank VARCHAR, third VARCHAR) ### Question: Which Winners is the highest one that has a Rank larger than 7, and a Third smaller than 1? ### Answer: SELECT MAX(winners) FROM table_name_44 WHERE rank > 7 AND third < 1
Which Leading Scorer has an Opponent of @ seattle, and a Record of 14-16?
CREATE TABLE table_name_59 (Leading VARCHAR, opponent VARCHAR, record VARCHAR)
SELECT Leading AS scorer FROM table_name_59 WHERE opponent = "@ seattle" AND record = "14-16"
### Context: CREATE TABLE table_name_59 (Leading VARCHAR, opponent VARCHAR, record VARCHAR) ### Question: Which Leading Scorer has an Opponent of @ seattle, and a Record of 14-16? ### Answer: SELECT Leading AS scorer FROM table_name_59 WHERE opponent = "@ seattle" AND record = "14-16"
Which Score has an Opponent of @ houston, and a Record of 2-0?
CREATE TABLE table_name_46 (score VARCHAR, opponent VARCHAR, record VARCHAR)
SELECT score FROM table_name_46 WHERE opponent = "@ houston" AND record = "2-0"
### Context: CREATE TABLE table_name_46 (score VARCHAR, opponent VARCHAR, record VARCHAR) ### Question: Which Score has an Opponent of @ houston, and a Record of 2-0? ### Answer: SELECT score FROM table_name_46 WHERE opponent = "@ houston" AND record = "2-0"
Which Attendance has a Date of september 7?
CREATE TABLE table_name_84 (attendance INTEGER, date VARCHAR)
SELECT MIN(attendance) FROM table_name_84 WHERE date = "september 7"
### Context: CREATE TABLE table_name_84 (attendance INTEGER, date VARCHAR) ### Question: Which Attendance has a Date of september 7? ### Answer: SELECT MIN(attendance) FROM table_name_84 WHERE date = "september 7"
What is the venue of game 3?
CREATE TABLE table_name_88 (venue VARCHAR, game VARCHAR)
SELECT venue FROM table_name_88 WHERE game = 3
### Context: CREATE TABLE table_name_88 (venue VARCHAR, game VARCHAR) ### Question: What is the venue of game 3? ### Answer: SELECT venue FROM table_name_88 WHERE game = 3
What is the lowest game number on 20 July 2008?
CREATE TABLE table_name_33 (game INTEGER, date VARCHAR)
SELECT MIN(game) FROM table_name_33 WHERE date = "20 july 2008"
### Context: CREATE TABLE table_name_33 (game INTEGER, date VARCHAR) ### Question: What is the lowest game number on 20 July 2008? ### Answer: SELECT MIN(game) FROM table_name_33 WHERE date = "20 july 2008"
What is the result on 20 July 2008?
CREATE TABLE table_name_52 (result VARCHAR, date VARCHAR)
SELECT result FROM table_name_52 WHERE date = "20 july 2008"
### Context: CREATE TABLE table_name_52 (result VARCHAR, date VARCHAR) ### Question: What is the result on 20 July 2008? ### Answer: SELECT result FROM table_name_52 WHERE date = "20 july 2008"
What is the total game number with athlone town as the opponent?
CREATE TABLE table_name_95 (game VARCHAR, opponent VARCHAR)
SELECT COUNT(game) FROM table_name_95 WHERE opponent = "athlone town"
### Context: CREATE TABLE table_name_95 (game VARCHAR, opponent VARCHAR) ### Question: What is the total game number with athlone town as the opponent? ### Answer: SELECT COUNT(game) FROM table_name_95 WHERE opponent = "athlone town"
What is the result of the game with a game number greater than 6 and an away venue?
CREATE TABLE table_name_7 (result VARCHAR, venue VARCHAR, game VARCHAR)
SELECT result FROM table_name_7 WHERE venue = "away" AND game > 6
### Context: CREATE TABLE table_name_7 (result VARCHAR, venue VARCHAR, game VARCHAR) ### Question: What is the result of the game with a game number greater than 6 and an away venue? ### Answer: SELECT result FROM table_name_7 WHERE venue = "away" AND game > 6
What was the end date when Alex Bodry was the minister?
CREATE TABLE table_name_11 (end_date VARCHAR, minister VARCHAR)
SELECT end_date FROM table_name_11 WHERE minister = "alex bodry"
### Context: CREATE TABLE table_name_11 (end_date VARCHAR, minister VARCHAR) ### Question: What was the end date when Alex Bodry was the minister? ### Answer: SELECT end_date FROM table_name_11 WHERE minister = "alex bodry"
Who was the minister for the CSV party with a present day end date?
CREATE TABLE table_name_43 (minister VARCHAR, party VARCHAR, end_date VARCHAR)
SELECT minister FROM table_name_43 WHERE party = "csv" AND end_date = "present day"
### Context: CREATE TABLE table_name_43 (minister VARCHAR, party VARCHAR, end_date VARCHAR) ### Question: Who was the minister for the CSV party with a present day end date? ### Answer: SELECT minister FROM table_name_43 WHERE party = "csv" AND end_date = "present day"
What is the sum of the points of the game with philadelphia as the visitor and an attendance greater than 7,284?
CREATE TABLE table_name_26 (points INTEGER, visitor VARCHAR, attendance VARCHAR)
SELECT SUM(points) FROM table_name_26 WHERE visitor = "philadelphia" AND attendance > 7 OFFSET 284
### Context: CREATE TABLE table_name_26 (points INTEGER, visitor VARCHAR, attendance VARCHAR) ### Question: What is the sum of the points of the game with philadelphia as the visitor and an attendance greater than 7,284? ### Answer: SELECT SUM(points) FROM table_name_26 WHERE visitor = "philadelphia" AND attendance > 7...
What is the lowest amount of points of the game with toronto as the home team?
CREATE TABLE table_name_99 (points INTEGER, home VARCHAR)
SELECT MIN(points) FROM table_name_99 WHERE home = "toronto"
### Context: CREATE TABLE table_name_99 (points INTEGER, home VARCHAR) ### Question: What is the lowest amount of points of the game with toronto as the home team? ### Answer: SELECT MIN(points) FROM table_name_99 WHERE home = "toronto"
How many laps did pere riba ride?
CREATE TABLE table_name_52 (laps INTEGER, rider VARCHAR)
SELECT SUM(laps) FROM table_name_52 WHERE rider = "pere riba"
### Context: CREATE TABLE table_name_52 (laps INTEGER, rider VARCHAR) ### Question: How many laps did pere riba ride? ### Answer: SELECT SUM(laps) FROM table_name_52 WHERE rider = "pere riba"
How many laps were in grid 4?
CREATE TABLE table_name_97 (laps VARCHAR, grid VARCHAR)
SELECT laps FROM table_name_97 WHERE grid = 4
### Context: CREATE TABLE table_name_97 (laps VARCHAR, grid VARCHAR) ### Question: How many laps were in grid 4? ### Answer: SELECT laps FROM table_name_97 WHERE grid = 4
Who manufactured grid 11?
CREATE TABLE table_name_91 (manufacturer VARCHAR, grid VARCHAR)
SELECT manufacturer FROM table_name_91 WHERE grid = 11
### Context: CREATE TABLE table_name_91 (manufacturer VARCHAR, grid VARCHAR) ### Question: Who manufactured grid 11? ### Answer: SELECT manufacturer FROM table_name_91 WHERE grid = 11
Which Grid has Laps larger than 26, and a Time/Retired of 44:39.467?
CREATE TABLE table_name_16 (grid INTEGER, laps VARCHAR, time_retired VARCHAR)
SELECT MIN(grid) FROM table_name_16 WHERE laps > 26 AND time_retired = "44:39.467"
### Context: CREATE TABLE table_name_16 (grid INTEGER, laps VARCHAR, time_retired VARCHAR) ### Question: Which Grid has Laps larger than 26, and a Time/Retired of 44:39.467? ### Answer: SELECT MIN(grid) FROM table_name_16 WHERE laps > 26 AND time_retired = "44:39.467"
Which Horse finished in 8?
CREATE TABLE table_name_54 (horse VARCHAR, finished VARCHAR)
SELECT horse FROM table_name_54 WHERE finished = "8"
### Context: CREATE TABLE table_name_54 (horse VARCHAR, finished VARCHAR) ### Question: Which Horse finished in 8? ### Answer: SELECT horse FROM table_name_54 WHERE finished = "8"
Who is the Jockey that has Nick Zito as Trainer and Odds of 34-1?
CREATE TABLE table_name_39 (jockey VARCHAR, trainer VARCHAR, odds VARCHAR)
SELECT jockey FROM table_name_39 WHERE trainer = "nick zito" AND odds = "34-1"
### Context: CREATE TABLE table_name_39 (jockey VARCHAR, trainer VARCHAR, odds VARCHAR) ### Question: Who is the Jockey that has Nick Zito as Trainer and Odds of 34-1? ### Answer: SELECT jockey FROM table_name_39 WHERE trainer = "nick zito" AND odds = "34-1"
What are the Odds for the Horse called Ready's Echo?
CREATE TABLE table_name_72 (odds VARCHAR, horse VARCHAR)
SELECT odds FROM table_name_72 WHERE horse = "ready's echo"
### Context: CREATE TABLE table_name_72 (odds VARCHAR, horse VARCHAR) ### Question: What are the Odds for the Horse called Ready's Echo? ### Answer: SELECT odds FROM table_name_72 WHERE horse = "ready's echo"
What are the Odds for Trainer Barclay Tagg?
CREATE TABLE table_name_87 (odds VARCHAR, trainer VARCHAR)
SELECT odds FROM table_name_87 WHERE trainer = "barclay tagg"
### Context: CREATE TABLE table_name_87 (odds VARCHAR, trainer VARCHAR) ### Question: What are the Odds for Trainer Barclay Tagg? ### Answer: SELECT odds FROM table_name_87 WHERE trainer = "barclay tagg"
What is the Finished place for da'tara trained by Nick zito?
CREATE TABLE table_name_3 (finished VARCHAR, trainer VARCHAR, horse VARCHAR)
SELECT finished FROM table_name_3 WHERE trainer = "nick zito" AND horse = "da'tara"
### Context: CREATE TABLE table_name_3 (finished VARCHAR, trainer VARCHAR, horse VARCHAR) ### Question: What is the Finished place for da'tara trained by Nick zito? ### Answer: SELECT finished FROM table_name_3 WHERE trainer = "nick zito" AND horse = "da'tara"
Who is the Jockey for guadalcanal?
CREATE TABLE table_name_52 (jockey VARCHAR, horse VARCHAR)
SELECT jockey FROM table_name_52 WHERE horse = "guadalcanal"
### Context: CREATE TABLE table_name_52 (jockey VARCHAR, horse VARCHAR) ### Question: Who is the Jockey for guadalcanal? ### Answer: SELECT jockey FROM table_name_52 WHERE horse = "guadalcanal"
Which Manufacturer has a Time of accident and a Grid greater than 15?
CREATE TABLE table_name_61 (manufacturer VARCHAR, time VARCHAR, grid VARCHAR)
SELECT manufacturer FROM table_name_61 WHERE time = "accident" AND grid > 15
### Context: CREATE TABLE table_name_61 (manufacturer VARCHAR, time VARCHAR, grid VARCHAR) ### Question: Which Manufacturer has a Time of accident and a Grid greater than 15? ### Answer: SELECT manufacturer FROM table_name_61 WHERE time = "accident" AND grid > 15
What is the verb for Khola?
CREATE TABLE table_name_1 (verb VARCHAR)
SELECT 3 AS __f_ FROM table_name_1 WHERE verb = "khola"
### Context: CREATE TABLE table_name_1 (verb VARCHAR) ### Question: What is the verb for Khola? ### Answer: SELECT 3 AS __f_ FROM table_name_1 WHERE verb = "khola"
What is the 2nd verb for Khola?
CREATE TABLE table_name_34 (verb VARCHAR)
SELECT 2 AS __f_ FROM table_name_34 WHERE verb = "khola"
### Context: CREATE TABLE table_name_34 (verb VARCHAR) ### Question: What is the 2nd verb for Khola? ### Answer: SELECT 2 AS __f_ FROM table_name_34 WHERE verb = "khola"
What is the 2nd verb for chena?
CREATE TABLE table_name_7 (verb VARCHAR)
SELECT 2 AS __f_ FROM table_name_7 WHERE verb = "chena"
### Context: CREATE TABLE table_name_7 (verb VARCHAR) ### Question: What is the 2nd verb for chena? ### Answer: SELECT 2 AS __f_ FROM table_name_7 WHERE verb = "chena"
Which Lead has a Third of randy ferbey (skip), a Second of scott pfeifer, and a Season of 2009–10?
CREATE TABLE table_name_21 (lead VARCHAR, season VARCHAR, third VARCHAR, second VARCHAR)
SELECT lead FROM table_name_21 WHERE third = "randy ferbey (skip)" AND second = "scott pfeifer" AND season = "2009–10"
### Context: CREATE TABLE table_name_21 (lead VARCHAR, season VARCHAR, third VARCHAR, second VARCHAR) ### Question: Which Lead has a Third of randy ferbey (skip), a Second of scott pfeifer, and a Season of 2009–10? ### Answer: SELECT lead FROM table_name_21 WHERE third = "randy ferbey (skip)" AND second = "scott pfeife...
Which Season has a Third of colin hodgson?
CREATE TABLE table_name_47 (season VARCHAR, third VARCHAR)
SELECT season FROM table_name_47 WHERE third = "colin hodgson"
### Context: CREATE TABLE table_name_47 (season VARCHAR, third VARCHAR) ### Question: Which Season has a Third of colin hodgson? ### Answer: SELECT season FROM table_name_47 WHERE third = "colin hodgson"
Which Second has a Lead of ben hebert?
CREATE TABLE table_name_6 (second VARCHAR, lead VARCHAR)
SELECT second FROM table_name_6 WHERE lead = "ben hebert"
### Context: CREATE TABLE table_name_6 (second VARCHAR, lead VARCHAR) ### Question: Which Second has a Lead of ben hebert? ### Answer: SELECT second FROM table_name_6 WHERE lead = "ben hebert"
Which Third has a Second of scott pfeifer?
CREATE TABLE table_name_29 (third VARCHAR, second VARCHAR)
SELECT third FROM table_name_29 WHERE second = "scott pfeifer"
### Context: CREATE TABLE table_name_29 (third VARCHAR, second VARCHAR) ### Question: Which Third has a Second of scott pfeifer? ### Answer: SELECT third FROM table_name_29 WHERE second = "scott pfeifer"
Which Second has a Third of david nedohin, and a Lead of ben hebert?
CREATE TABLE table_name_76 (second VARCHAR, third VARCHAR, lead VARCHAR)
SELECT second FROM table_name_76 WHERE third = "david nedohin" AND lead = "ben hebert"
### Context: CREATE TABLE table_name_76 (second VARCHAR, third VARCHAR, lead VARCHAR) ### Question: Which Second has a Third of david nedohin, and a Lead of ben hebert? ### Answer: SELECT second FROM table_name_76 WHERE third = "david nedohin" AND lead = "ben hebert"
Which Skip has a Season of 2002–03?
CREATE TABLE table_name_77 (skip VARCHAR, season VARCHAR)
SELECT skip FROM table_name_77 WHERE season = "2002–03"
### Context: CREATE TABLE table_name_77 (skip VARCHAR, season VARCHAR) ### Question: Which Skip has a Season of 2002–03? ### Answer: SELECT skip FROM table_name_77 WHERE season = "2002–03"
What was the date of the poll with a sample size of 496 where Republican Mike Huckabee was chosen?
CREATE TABLE table_name_29 (date VARCHAR, republican VARCHAR, sample_size VARCHAR)
SELECT date FROM table_name_29 WHERE republican = "mike huckabee" AND sample_size = 496
### Context: CREATE TABLE table_name_29 (date VARCHAR, republican VARCHAR, sample_size VARCHAR) ### Question: What was the date of the poll with a sample size of 496 where Republican Mike Huckabee was chosen? ### Answer: SELECT date FROM table_name_29 WHERE republican = "mike huckabee" AND sample_size = 496
What is the sample size of the poll taken on Dec 13-15, 2007 that had a margin of error of more than 4 and resulted with Republican Mike Huckabee?
CREATE TABLE table_name_5 (sample_size INTEGER, date VARCHAR, republican VARCHAR, margin_of_error VARCHAR)
SELECT AVG(sample_size) FROM table_name_5 WHERE republican = "mike huckabee" AND margin_of_error > 4 AND date = "dec 13-15, 2007"
### Context: CREATE TABLE table_name_5 (sample_size INTEGER, date VARCHAR, republican VARCHAR, margin_of_error VARCHAR) ### Question: What is the sample size of the poll taken on Dec 13-15, 2007 that had a margin of error of more than 4 and resulted with Republican Mike Huckabee? ### Answer: SELECT AVG(sample_size) FRO...
Which Democrat was selected in the poll with a sample size smaller than 516 where the Republican chosen was Ron Paul?
CREATE TABLE table_name_16 (democrat VARCHAR, sample_size VARCHAR, republican VARCHAR)
SELECT democrat FROM table_name_16 WHERE sample_size < 516 AND republican = "ron paul"
### Context: CREATE TABLE table_name_16 (democrat VARCHAR, sample_size VARCHAR, republican VARCHAR) ### Question: Which Democrat was selected in the poll with a sample size smaller than 516 where the Republican chosen was Ron Paul? ### Answer: SELECT democrat FROM table_name_16 WHERE sample_size < 516 AND republican = ...
When was the show 9 to 5 returning?
CREATE TABLE table_name_7 (returning VARCHAR, show VARCHAR)
SELECT returning FROM table_name_7 WHERE show = "9 to 5"
### Context: CREATE TABLE table_name_7 (returning VARCHAR, show VARCHAR) ### Question: When was the show 9 to 5 returning? ### Answer: SELECT returning FROM table_name_7 WHERE show = "9 to 5"
What was the earliest aired show that's returning on September 13?
CREATE TABLE table_name_1 (last_aired INTEGER, returning VARCHAR)
SELECT MIN(last_aired) FROM table_name_1 WHERE returning = "september 13"
### Context: CREATE TABLE table_name_1 (last_aired INTEGER, returning VARCHAR) ### Question: What was the earliest aired show that's returning on September 13? ### Answer: SELECT MIN(last_aired) FROM table_name_1 WHERE returning = "september 13"
What is the Opponent of the game with a Score of 74-66?
CREATE TABLE table_name_82 (opponent VARCHAR, score VARCHAR)
SELECT opponent FROM table_name_82 WHERE score = "74-66"
### Context: CREATE TABLE table_name_82 (opponent VARCHAR, score VARCHAR) ### Question: What is the Opponent of the game with a Score of 74-66? ### Answer: SELECT opponent FROM table_name_82 WHERE score = "74-66"
What is the Score of the game @ San Antonio on June 20?
CREATE TABLE table_name_81 (score VARCHAR, opponent VARCHAR, date VARCHAR)
SELECT score FROM table_name_81 WHERE opponent = "@ san antonio" AND date = "june 20"
### Context: CREATE TABLE table_name_81 (score VARCHAR, opponent VARCHAR, date VARCHAR) ### Question: What is the Score of the game @ San Antonio on June 20? ### Answer: SELECT score FROM table_name_81 WHERE opponent = "@ san antonio" AND date = "june 20"
What is the Record of the game on September 6?
CREATE TABLE table_name_49 (record VARCHAR, date VARCHAR)
SELECT record FROM table_name_49 WHERE date = "september 6"
### Context: CREATE TABLE table_name_49 (record VARCHAR, date VARCHAR) ### Question: What is the Record of the game on September 6? ### Answer: SELECT record FROM table_name_49 WHERE date = "september 6"
What is the Record of the game with a Score of 65-48?
CREATE TABLE table_name_38 (record VARCHAR, score VARCHAR)
SELECT record FROM table_name_38 WHERE score = "65-48"
### Context: CREATE TABLE table_name_38 (record VARCHAR, score VARCHAR) ### Question: What is the Record of the game with a Score of 65-48? ### Answer: SELECT record FROM table_name_38 WHERE score = "65-48"
What is the lowest League Cup Goals, when Scorer is Denis Law?
CREATE TABLE table_name_59 (league_cup_goals INTEGER, scorer VARCHAR)
SELECT MIN(league_cup_goals) FROM table_name_59 WHERE scorer = "denis law"
### Context: CREATE TABLE table_name_59 (league_cup_goals INTEGER, scorer VARCHAR) ### Question: What is the lowest League Cup Goals, when Scorer is Denis Law? ### Answer: SELECT MIN(league_cup_goals) FROM table_name_59 WHERE scorer = "denis law"
What is the average Total, when FA Cup Goals is 1, when League Goals is 10, and when Club is Crystal Palace?
CREATE TABLE table_name_20 (total INTEGER, club VARCHAR, fa_cup_goals VARCHAR, league_goals VARCHAR)
SELECT AVG(total) FROM table_name_20 WHERE fa_cup_goals = "1" AND league_goals = "10" AND club = "crystal palace"
### Context: CREATE TABLE table_name_20 (total INTEGER, club VARCHAR, fa_cup_goals VARCHAR, league_goals VARCHAR) ### Question: What is the average Total, when FA Cup Goals is 1, when League Goals is 10, and when Club is Crystal Palace? ### Answer: SELECT AVG(total) FROM table_name_20 WHERE fa_cup_goals = "1" AND leagu...
What is the total number of Total, when Club is Leeds United, and when League Goals is 13?
CREATE TABLE table_name_77 (total VARCHAR, club VARCHAR, league_goals VARCHAR)
SELECT COUNT(total) FROM table_name_77 WHERE club = "leeds united" AND league_goals = "13"
### Context: CREATE TABLE table_name_77 (total VARCHAR, club VARCHAR, league_goals VARCHAR) ### Question: What is the total number of Total, when Club is Leeds United, and when League Goals is 13? ### Answer: SELECT COUNT(total) FROM table_name_77 WHERE club = "leeds united" AND league_goals = "13"
What is FA Cup Goals, when Euro Competitions is 1, and when League Goals is 11?
CREATE TABLE table_name_75 (fa_cup_goals VARCHAR, euro_competitions VARCHAR, league_goals VARCHAR)
SELECT fa_cup_goals FROM table_name_75 WHERE euro_competitions = "1" AND league_goals = "11"
### Context: CREATE TABLE table_name_75 (fa_cup_goals VARCHAR, euro_competitions VARCHAR, league_goals VARCHAR) ### Question: What is FA Cup Goals, when Euro Competitions is 1, and when League Goals is 11? ### Answer: SELECT fa_cup_goals FROM table_name_75 WHERE euro_competitions = "1" AND league_goals = "11"
What tournament had finalist Monica Seles?
CREATE TABLE table_name_49 (tournament VARCHAR, finalist VARCHAR)
SELECT tournament FROM table_name_49 WHERE finalist = "monica seles"
### Context: CREATE TABLE table_name_49 (tournament VARCHAR, finalist VARCHAR) ### Question: What tournament had finalist Monica Seles? ### Answer: SELECT tournament FROM table_name_49 WHERE finalist = "monica seles"
What week was the finalist Martina Hingis?
CREATE TABLE table_name_6 (week VARCHAR, finalist VARCHAR)
SELECT week FROM table_name_6 WHERE finalist = "martina hingis"
### Context: CREATE TABLE table_name_6 (week VARCHAR, finalist VARCHAR) ### Question: What week was the finalist Martina Hingis? ### Answer: SELECT week FROM table_name_6 WHERE finalist = "martina hingis"
What was the surface for finalist Justine Henin?
CREATE TABLE table_name_56 (surface VARCHAR, finalist VARCHAR)
SELECT surface FROM table_name_56 WHERE finalist = "justine henin"
### Context: CREATE TABLE table_name_56 (surface VARCHAR, finalist VARCHAR) ### Question: What was the surface for finalist Justine Henin? ### Answer: SELECT surface FROM table_name_56 WHERE finalist = "justine henin"
Who was the winner in the Indian Wells?
CREATE TABLE table_name_67 (winner VARCHAR, tournament VARCHAR)
SELECT winner FROM table_name_67 WHERE tournament = "indian wells"
### Context: CREATE TABLE table_name_67 (winner VARCHAR, tournament VARCHAR) ### Question: Who was the winner in the Indian Wells? ### Answer: SELECT winner FROM table_name_67 WHERE tournament = "indian wells"
Which race did Bill Holland win in 1946?
CREATE TABLE table_name_40 (race_name VARCHAR, year VARCHAR, winner VARCHAR)
SELECT race_name FROM table_name_40 WHERE year = 1946 AND winner = "bill holland"
### Context: CREATE TABLE table_name_40 (race_name VARCHAR, year VARCHAR, winner VARCHAR) ### Question: Which race did Bill Holland win in 1946? ### Answer: SELECT race_name FROM table_name_40 WHERE year = 1946 AND winner = "bill holland"
What date did Ted Horn win Lakewood Race 2?
CREATE TABLE table_name_46 (date VARCHAR, winner VARCHAR, race_name VARCHAR)
SELECT date FROM table_name_46 WHERE winner = "ted horn" AND race_name = "lakewood race 2"
### Context: CREATE TABLE table_name_46 (date VARCHAR, winner VARCHAR, race_name VARCHAR) ### Question: What date did Ted Horn win Lakewood Race 2? ### Answer: SELECT date FROM table_name_46 WHERE winner = "ted horn" AND race_name = "lakewood race 2"
Who won on September 6?
CREATE TABLE table_name_2 (winner VARCHAR, date VARCHAR)
SELECT winner FROM table_name_2 WHERE date = "september 6"
### Context: CREATE TABLE table_name_2 (winner VARCHAR, date VARCHAR) ### Question: Who won on September 6? ### Answer: SELECT winner FROM table_name_2 WHERE date = "september 6"
Jud Larson who which race after 1956?
CREATE TABLE table_name_70 (race_name VARCHAR, year VARCHAR, winner VARCHAR)
SELECT race_name FROM table_name_70 WHERE year > 1956 AND winner = "jud larson"
### Context: CREATE TABLE table_name_70 (race_name VARCHAR, year VARCHAR, winner VARCHAR) ### Question: Jud Larson who which race after 1956? ### Answer: SELECT race_name FROM table_name_70 WHERE year > 1956 AND winner = "jud larson"
What is the Total medals for the Nation ranking 33 with more than 1 Bronze?
CREATE TABLE table_name_5 (total INTEGER, rank VARCHAR, bronze VARCHAR)
SELECT AVG(total) FROM table_name_5 WHERE rank = "33" AND bronze > 1
### Context: CREATE TABLE table_name_5 (total INTEGER, rank VARCHAR, bronze VARCHAR) ### Question: What is the Total medals for the Nation ranking 33 with more than 1 Bronze? ### Answer: SELECT AVG(total) FROM table_name_5 WHERE rank = "33" AND bronze > 1
How many games have an Attendance of 19,190?
CREATE TABLE table_name_52 (game VARCHAR, attendance VARCHAR)
SELECT COUNT(game) FROM table_name_52 WHERE attendance = 19 OFFSET 190
### Context: CREATE TABLE table_name_52 (game VARCHAR, attendance VARCHAR) ### Question: How many games have an Attendance of 19,190? ### Answer: SELECT COUNT(game) FROM table_name_52 WHERE attendance = 19 OFFSET 190
How many games had a Time of 2:14?
CREATE TABLE table_name_45 (game INTEGER, time VARCHAR)
SELECT SUM(game) FROM table_name_45 WHERE time = "2:14"
### Context: CREATE TABLE table_name_45 (game INTEGER, time VARCHAR) ### Question: How many games had a Time of 2:14? ### Answer: SELECT SUM(game) FROM table_name_45 WHERE time = "2:14"
Which Score has a Time of 2:28?
CREATE TABLE table_name_41 (score VARCHAR, time VARCHAR)
SELECT score FROM table_name_41 WHERE time = "2:28"
### Context: CREATE TABLE table_name_41 (score VARCHAR, time VARCHAR) ### Question: Which Score has a Time of 2:28? ### Answer: SELECT score FROM table_name_41 WHERE time = "2:28"
Which Result has a Captain 1 of louis burger, and a Date of 30 october–2 november?
CREATE TABLE table_name_53 (result VARCHAR, captain_1 VARCHAR, date VARCHAR)
SELECT result FROM table_name_53 WHERE captain_1 = "louis burger" AND date = "30 october–2 november"
### Context: CREATE TABLE table_name_53 (result VARCHAR, captain_1 VARCHAR, date VARCHAR) ### Question: Which Result has a Captain 1 of louis burger, and a Date of 30 october–2 november? ### Answer: SELECT result FROM table_name_53 WHERE captain_1 = "louis burger" AND date = "30 october–2 november"
Which Team 2 has a Captain 1 of final?
CREATE TABLE table_name_87 (team_2 VARCHAR, captain_1 VARCHAR)
SELECT team_2 FROM table_name_87 WHERE captain_1 = "final"
### Context: CREATE TABLE table_name_87 (team_2 VARCHAR, captain_1 VARCHAR) ### Question: Which Team 2 has a Captain 1 of final? ### Answer: SELECT team_2 FROM table_name_87 WHERE captain_1 = "final"
Which Captain 2 has a Result of ireland by 8 runs?
CREATE TABLE table_name_87 (captain_2 VARCHAR, result VARCHAR)
SELECT captain_2 FROM table_name_87 WHERE result = "ireland by 8 runs"
### Context: CREATE TABLE table_name_87 (captain_2 VARCHAR, result VARCHAR) ### Question: Which Captain 2 has a Result of ireland by 8 runs? ### Answer: SELECT captain_2 FROM table_name_87 WHERE result = "ireland by 8 runs"
Which Result has a Captain 2 of louis burger?
CREATE TABLE table_name_81 (result VARCHAR, captain_2 VARCHAR)
SELECT result FROM table_name_81 WHERE captain_2 = "louis burger"
### Context: CREATE TABLE table_name_81 (result VARCHAR, captain_2 VARCHAR) ### Question: Which Result has a Captain 2 of louis burger? ### Answer: SELECT result FROM table_name_81 WHERE captain_2 = "louis burger"
Which Captain 2 has a Result of final?
CREATE TABLE table_name_50 (captain_2 VARCHAR, result VARCHAR)
SELECT captain_2 FROM table_name_50 WHERE result = "final"
### Context: CREATE TABLE table_name_50 (captain_2 VARCHAR, result VARCHAR) ### Question: Which Captain 2 has a Result of final? ### Answer: SELECT captain_2 FROM table_name_50 WHERE result = "final"
What is the Kosal with a balangir town sitalsasthi carnival?
CREATE TABLE table_name_97 (kosal VARCHAR, sitalsasthi_carnival VARCHAR)
SELECT kosal FROM table_name_97 WHERE sitalsasthi_carnival = "balangir town"
### Context: CREATE TABLE table_name_97 (kosal VARCHAR, sitalsasthi_carnival VARCHAR) ### Question: What is the Kosal with a balangir town sitalsasthi carnival? ### Answer: SELECT kosal FROM table_name_97 WHERE sitalsasthi_carnival = "balangir town"
What is the kosal with hatibandha as the sambalpuri cinema?
CREATE TABLE table_name_94 (kosal VARCHAR, sambalpuri_cinema VARCHAR)
SELECT kosal FROM table_name_94 WHERE sambalpuri_cinema = "hatibandha"
### Context: CREATE TABLE table_name_94 (kosal VARCHAR, sambalpuri_cinema VARCHAR) ### Question: What is the kosal with hatibandha as the sambalpuri cinema? ### Answer: SELECT kosal FROM table_name_94 WHERE sambalpuri_cinema = "hatibandha"
What is the sambalpuri saree with a samaleswari temple as sambalpuri language?
CREATE TABLE table_name_22 (sambalpuri_saree VARCHAR, sambalpuri_language VARCHAR)
SELECT sambalpuri_saree FROM table_name_22 WHERE sambalpuri_language = "samaleswari temple"
### Context: CREATE TABLE table_name_22 (sambalpuri_saree VARCHAR, sambalpuri_language VARCHAR) ### Question: What is the sambalpuri saree with a samaleswari temple as sambalpuri language? ### Answer: SELECT sambalpuri_saree FROM table_name_22 WHERE sambalpuri_language = "samaleswari temple"
What is the sitalsasthi carnival with sonepur as kosal?
CREATE TABLE table_name_97 (sitalsasthi_carnival VARCHAR, kosal VARCHAR)
SELECT sitalsasthi_carnival FROM table_name_97 WHERE kosal = "sonepur"
### Context: CREATE TABLE table_name_97 (sitalsasthi_carnival VARCHAR, kosal VARCHAR) ### Question: What is the sitalsasthi carnival with sonepur as kosal? ### Answer: SELECT sitalsasthi_carnival FROM table_name_97 WHERE kosal = "sonepur"
What is the sitalsasthi carnival with hirakud as sambalpuri saree?
CREATE TABLE table_name_92 (sitalsasthi_carnival VARCHAR, sambalpuri_saree VARCHAR)
SELECT sitalsasthi_carnival FROM table_name_92 WHERE sambalpuri_saree = "hirakud"
### Context: CREATE TABLE table_name_92 (sitalsasthi_carnival VARCHAR, sambalpuri_saree VARCHAR) ### Question: What is the sitalsasthi carnival with hirakud as sambalpuri saree? ### Answer: SELECT sitalsasthi_carnival FROM table_name_92 WHERE sambalpuri_saree = "hirakud"
What was the attendance when their record stood at 0-2-2?
CREATE TABLE table_name_5 (attendance INTEGER, record VARCHAR)
SELECT SUM(attendance) FROM table_name_5 WHERE record = "0-2-2"
### Context: CREATE TABLE table_name_5 (attendance INTEGER, record VARCHAR) ### Question: What was the attendance when their record stood at 0-2-2? ### Answer: SELECT SUM(attendance) FROM table_name_5 WHERE record = "0-2-2"
On what date was the venue Away and the result was lost 6-4 (lost 9-7 on agg)?
CREATE TABLE table_name_5 (date VARCHAR, venue VARCHAR, result VARCHAR)
SELECT date FROM table_name_5 WHERE venue = "away" AND result = "lost 6-4 (lost 9-7 on agg)"
### Context: CREATE TABLE table_name_5 (date VARCHAR, venue VARCHAR, result VARCHAR) ### Question: On what date was the venue Away and the result was lost 6-4 (lost 9-7 on agg)? ### Answer: SELECT date FROM table_name_5 WHERE venue = "away" AND result = "lost 6-4 (lost 9-7 on agg)"
What was the result on the 26th?
CREATE TABLE table_name_31 (result VARCHAR, date VARCHAR)
SELECT result FROM table_name_31 WHERE date = "26th"
### Context: CREATE TABLE table_name_31 (result VARCHAR, date VARCHAR) ### Question: What was the result on the 26th? ### Answer: SELECT result FROM table_name_31 WHERE date = "26th"
What was the date when the opponent was Sheffield Scimitars and the venue was Home?
CREATE TABLE table_name_4 (date VARCHAR, opponent VARCHAR, venue VARCHAR)
SELECT date FROM table_name_4 WHERE opponent = "sheffield scimitars" AND venue = "home"
### Context: CREATE TABLE table_name_4 (date VARCHAR, opponent VARCHAR, venue VARCHAR) ### Question: What was the date when the opponent was Sheffield Scimitars and the venue was Home? ### Answer: SELECT date FROM table_name_4 WHERE opponent = "sheffield scimitars" AND venue = "home"
Who was the Man of the Match when the opponent was Milton Keynes Lightning and the venue was Away?
CREATE TABLE table_name_19 (man_of_the_match VARCHAR, opponent VARCHAR, venue VARCHAR)
SELECT man_of_the_match FROM table_name_19 WHERE opponent = "milton keynes lightning" AND venue = "away"
### Context: CREATE TABLE table_name_19 (man_of_the_match VARCHAR, opponent VARCHAR, venue VARCHAR) ### Question: Who was the Man of the Match when the opponent was Milton Keynes Lightning and the venue was Away? ### Answer: SELECT man_of_the_match FROM table_name_19 WHERE opponent = "milton keynes lightning" AND venue...
What competition was held on the 26th?
CREATE TABLE table_name_50 (competition VARCHAR, date VARCHAR)
SELECT competition FROM table_name_50 WHERE date = "26th"
### Context: CREATE TABLE table_name_50 (competition VARCHAR, date VARCHAR) ### Question: What competition was held on the 26th? ### Answer: SELECT competition FROM table_name_50 WHERE date = "26th"
What was the date when the attendance was n/a and the Man of the Match was unknown?
CREATE TABLE table_name_32 (date VARCHAR, attendance VARCHAR, man_of_the_match VARCHAR)
SELECT date FROM table_name_32 WHERE attendance = "n/a" AND man_of_the_match = "unknown"
### Context: CREATE TABLE table_name_32 (date VARCHAR, attendance VARCHAR, man_of_the_match VARCHAR) ### Question: What was the date when the attendance was n/a and the Man of the Match was unknown? ### Answer: SELECT date FROM table_name_32 WHERE attendance = "n/a" AND man_of_the_match = "unknown"
What Edition had a Result of 6-3, 6-0, 6-2?
CREATE TABLE table_name_45 (edition VARCHAR, result VARCHAR)
SELECT edition FROM table_name_45 WHERE result = "6-3, 6-0, 6-2"
### Context: CREATE TABLE table_name_45 (edition VARCHAR, result VARCHAR) ### Question: What Edition had a Result of 6-3, 6-0, 6-2? ### Answer: SELECT edition FROM table_name_45 WHERE result = "6-3, 6-0, 6-2"
What is the date of Super G in the 2010 season?
CREATE TABLE table_name_50 (date VARCHAR, discipline VARCHAR, season VARCHAR)
SELECT date FROM table_name_50 WHERE discipline = "super g" AND season = 2010
### Context: CREATE TABLE table_name_50 (date VARCHAR, discipline VARCHAR, season VARCHAR) ### Question: What is the date of Super G in the 2010 season? ### Answer: SELECT date FROM table_name_50 WHERE discipline = "super g" AND season = 2010
When the communities name is Balmoral and the area is over 43.51 kilometers squared, what's the total population amount?
CREATE TABLE table_name_56 (population VARCHAR, official_name VARCHAR, area_km_2 VARCHAR)
SELECT COUNT(population) FROM table_name_56 WHERE official_name = "balmoral" AND area_km_2 > 43.51
### Context: CREATE TABLE table_name_56 (population VARCHAR, official_name VARCHAR, area_km_2 VARCHAR) ### Question: When the communities name is Balmoral and the area is over 43.51 kilometers squared, what's the total population amount? ### Answer: SELECT COUNT(population) FROM table_name_56 WHERE official_name = "bal...
When the status is rural community what's the lowest area in kilometers squared?
CREATE TABLE table_name_47 (area_km_2 INTEGER, status VARCHAR)
SELECT MIN(area_km_2) FROM table_name_47 WHERE status = "rural community"
### Context: CREATE TABLE table_name_47 (area_km_2 INTEGER, status VARCHAR) ### Question: When the status is rural community what's the lowest area in kilometers squared? ### Answer: SELECT MIN(area_km_2) FROM table_name_47 WHERE status = "rural community"
How many total golds do teams have when the total medals is less than 1?
CREATE TABLE table_name_79 (gold INTEGER, total INTEGER)
SELECT SUM(gold) FROM table_name_79 WHERE total < 1
### Context: CREATE TABLE table_name_79 (gold INTEGER, total INTEGER) ### Question: How many total golds do teams have when the total medals is less than 1? ### Answer: SELECT SUM(gold) FROM table_name_79 WHERE total < 1
who was the semifinalist for the Key Biscane tournament?
CREATE TABLE table_name_12 (semifinalists VARCHAR, tournament VARCHAR)
SELECT semifinalists FROM table_name_12 WHERE tournament = "key biscane"
### Context: CREATE TABLE table_name_12 (semifinalists VARCHAR, tournament VARCHAR) ### Question: who was the semifinalist for the Key Biscane tournament? ### Answer: SELECT semifinalists FROM table_name_12 WHERE tournament = "key biscane"
What is the score of the game before 56 held after February 18 against the Chicago Black Hawks.
CREATE TABLE table_name_52 (score VARCHAR, opponent VARCHAR, game VARCHAR, february VARCHAR)
SELECT score FROM table_name_52 WHERE game < 56 AND february > 18 AND opponent = "chicago black hawks"
### Context: CREATE TABLE table_name_52 (score VARCHAR, opponent VARCHAR, game VARCHAR, february VARCHAR) ### Question: What is the score of the game before 56 held after February 18 against the Chicago Black Hawks. ### Answer: SELECT score FROM table_name_52 WHERE game < 56 AND february > 18 AND opponent = "chicago bl...
What was the score of the game 57 after February 23?
CREATE TABLE table_name_19 (score VARCHAR, february VARCHAR, game VARCHAR)
SELECT score FROM table_name_19 WHERE february > 23 AND game = 57
### Context: CREATE TABLE table_name_19 (score VARCHAR, february VARCHAR, game VARCHAR) ### Question: What was the score of the game 57 after February 23? ### Answer: SELECT score FROM table_name_19 WHERE february > 23 AND game = 57
Who had the lowest laps on a grid smaller than 16 with a time of +21.689?
CREATE TABLE table_name_27 (laps INTEGER, grid VARCHAR, time VARCHAR)
SELECT MIN(laps) FROM table_name_27 WHERE grid < 16 AND time = "+21.689"
### Context: CREATE TABLE table_name_27 (laps INTEGER, grid VARCHAR, time VARCHAR) ### Question: Who had the lowest laps on a grid smaller than 16 with a time of +21.689? ### Answer: SELECT MIN(laps) FROM table_name_27 WHERE grid < 16 AND time = "+21.689"
What laps did Honda do with a time of +1:38.407?
CREATE TABLE table_name_39 (laps VARCHAR, manufacturer VARCHAR, time VARCHAR)
SELECT laps FROM table_name_39 WHERE manufacturer = "honda" AND time = "+1:38.407"
### Context: CREATE TABLE table_name_39 (laps VARCHAR, manufacturer VARCHAR, time VARCHAR) ### Question: What laps did Honda do with a time of +1:38.407? ### Answer: SELECT laps FROM table_name_39 WHERE manufacturer = "honda" AND time = "+1:38.407"
What grid is Ducati with fewer than 22 laps?
CREATE TABLE table_name_96 (grid VARCHAR, manufacturer VARCHAR, laps VARCHAR)
SELECT grid FROM table_name_96 WHERE manufacturer = "ducati" AND laps < 22
### Context: CREATE TABLE table_name_96 (grid VARCHAR, manufacturer VARCHAR, laps VARCHAR) ### Question: What grid is Ducati with fewer than 22 laps? ### Answer: SELECT grid FROM table_name_96 WHERE manufacturer = "ducati" AND laps < 22
What is Honda's highest grid with a time of +1:38.407?
CREATE TABLE table_name_61 (grid INTEGER, manufacturer VARCHAR, time VARCHAR)
SELECT MAX(grid) FROM table_name_61 WHERE manufacturer = "honda" AND time = "+1:38.407"
### Context: CREATE TABLE table_name_61 (grid INTEGER, manufacturer VARCHAR, time VARCHAR) ### Question: What is Honda's highest grid with a time of +1:38.407? ### Answer: SELECT MAX(grid) FROM table_name_61 WHERE manufacturer = "honda" AND time = "+1:38.407"
What is the to par of player bunky henry?
CREATE TABLE table_name_5 (to_par VARCHAR, player VARCHAR)
SELECT to_par FROM table_name_5 WHERE player = "bunky henry"
### Context: CREATE TABLE table_name_5 (to_par VARCHAR, player VARCHAR) ### Question: What is the to par of player bunky henry? ### Answer: SELECT to_par FROM table_name_5 WHERE player = "bunky henry"
What is the score of player bob rosburg?
CREATE TABLE table_name_90 (score VARCHAR, player VARCHAR)
SELECT score FROM table_name_90 WHERE player = "bob rosburg"
### Context: CREATE TABLE table_name_90 (score VARCHAR, player VARCHAR) ### Question: What is the score of player bob rosburg? ### Answer: SELECT score FROM table_name_90 WHERE player = "bob rosburg"
Who is the player with a t6 place and a 72-68-72=212 score?
CREATE TABLE table_name_7 (player VARCHAR, place VARCHAR, score VARCHAR)
SELECT player FROM table_name_7 WHERE place = "t6" AND score = 72 - 68 - 72 = 212
### Context: CREATE TABLE table_name_7 (player VARCHAR, place VARCHAR, score VARCHAR) ### Question: Who is the player with a t6 place and a 72-68-72=212 score? ### Answer: SELECT player FROM table_name_7 WHERE place = "t6" AND score = 72 - 68 - 72 = 212
What is the score of player bob rosburg?
CREATE TABLE table_name_46 (score VARCHAR, player VARCHAR)
SELECT score FROM table_name_46 WHERE player = "bob rosburg"
### Context: CREATE TABLE table_name_46 (score VARCHAR, player VARCHAR) ### Question: What is the score of player bob rosburg? ### Answer: SELECT score FROM table_name_46 WHERE player = "bob rosburg"
What is the place of the 68-69-73=210?
CREATE TABLE table_name_51 (place VARCHAR, score VARCHAR)
SELECT place FROM table_name_51 WHERE score = 68 - 69 - 73 = 210
### Context: CREATE TABLE table_name_51 (place VARCHAR, score VARCHAR) ### Question: What is the place of the 68-69-73=210? ### Answer: SELECT place FROM table_name_51 WHERE score = 68 - 69 - 73 = 210
What is Record, when High Rebounds is "Tyson Chandler (6)"?
CREATE TABLE table_name_68 (record VARCHAR, high_rebounds VARCHAR)
SELECT record FROM table_name_68 WHERE high_rebounds = "tyson chandler (6)"
### Context: CREATE TABLE table_name_68 (record VARCHAR, high_rebounds VARCHAR) ### Question: What is Record, when High Rebounds is "Tyson Chandler (6)"? ### Answer: SELECT record FROM table_name_68 WHERE high_rebounds = "tyson chandler (6)"
What is Date, when Location Attendance is "TD Banknorth Garden 18,624"?
CREATE TABLE table_name_29 (date VARCHAR, location_attendance VARCHAR)
SELECT date FROM table_name_29 WHERE location_attendance = "td banknorth garden 18,624"
### Context: CREATE TABLE table_name_29 (date VARCHAR, location_attendance VARCHAR) ### Question: What is Date, when Location Attendance is "TD Banknorth Garden 18,624"? ### Answer: SELECT date FROM table_name_29 WHERE location_attendance = "td banknorth garden 18,624"
What is the average Game, when Date is "December 23"?
CREATE TABLE table_name_58 (game INTEGER, date VARCHAR)
SELECT AVG(game) FROM table_name_58 WHERE date = "december 23"
### Context: CREATE TABLE table_name_58 (game INTEGER, date VARCHAR) ### Question: What is the average Game, when Date is "December 23"? ### Answer: SELECT AVG(game) FROM table_name_58 WHERE date = "december 23"
What is Score, when Team is "@ Memphis"?
CREATE TABLE table_name_29 (score VARCHAR, team VARCHAR)
SELECT score FROM table_name_29 WHERE team = "@ memphis"
### Context: CREATE TABLE table_name_29 (score VARCHAR, team VARCHAR) ### Question: What is Score, when Team is "@ Memphis"? ### Answer: SELECT score FROM table_name_29 WHERE team = "@ memphis"
What's the post position when the lengths behind is 0?
CREATE TABLE table_name_74 (post_position INTEGER, lengths_behind VARCHAR)
SELECT AVG(post_position) FROM table_name_74 WHERE lengths_behind = "0"
### Context: CREATE TABLE table_name_74 (post_position INTEGER, lengths_behind VARCHAR) ### Question: What's the post position when the lengths behind is 0? ### Answer: SELECT AVG(post_position) FROM table_name_74 WHERE lengths_behind = "0"
What's the lengths behind of Jockey Ramon A. Dominguez?
CREATE TABLE table_name_63 (lengths_behind VARCHAR, jockey VARCHAR)
SELECT lengths_behind FROM table_name_63 WHERE jockey = "ramon a. dominguez"
### Context: CREATE TABLE table_name_63 (lengths_behind VARCHAR, jockey VARCHAR) ### Question: What's the lengths behind of Jockey Ramon A. Dominguez? ### Answer: SELECT lengths_behind FROM table_name_63 WHERE jockey = "ramon a. dominguez"
Who was the jockey that had post time odds of 34-1?
CREATE TABLE table_name_59 (jockey VARCHAR, post_time_odds VARCHAR)
SELECT jockey FROM table_name_59 WHERE post_time_odds = "34-1"
### Context: CREATE TABLE table_name_59 (jockey VARCHAR, post_time_odds VARCHAR) ### Question: Who was the jockey that had post time odds of 34-1? ### Answer: SELECT jockey FROM table_name_59 WHERE post_time_odds = "34-1"
Who is the owner of Icabad Crane?
CREATE TABLE table_name_53 (owner VARCHAR, horse_name VARCHAR)
SELECT owner FROM table_name_53 WHERE horse_name = "icabad crane"
### Context: CREATE TABLE table_name_53 (owner VARCHAR, horse_name VARCHAR) ### Question: Who is the owner of Icabad Crane? ### Answer: SELECT owner FROM table_name_53 WHERE horse_name = "icabad crane"