question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
What is the run 2 of athlete Maria Orlova from Russia?
CREATE TABLE table_name_24 (run_2 INTEGER, country VARCHAR, athlete VARCHAR)
SELECT SUM(run_2) FROM table_name_24 WHERE country = "russia" AND athlete = "maria orlova"
### Context: CREATE TABLE table_name_24 (run_2 INTEGER, country VARCHAR, athlete VARCHAR) ### Question: What is the run 2 of athlete Maria Orlova from Russia? ### Answer: SELECT SUM(run_2) FROM table_name_24 WHERE country = "russia" AND athlete = "maria orlova"
What is the run 3 of the athlete with a run 1 more than 53.75 and a run 2 less than 52.91?
CREATE TABLE table_name_5 (run_3 INTEGER, run_1 VARCHAR, run_2 VARCHAR)
SELECT SUM(run_3) FROM table_name_5 WHERE run_1 > 53.75 AND run_2 < 52.91
### Context: CREATE TABLE table_name_5 (run_3 INTEGER, run_1 VARCHAR, run_2 VARCHAR) ### Question: What is the run 3 of the athlete with a run 1 more than 53.75 and a run 2 less than 52.91? ### Answer: SELECT SUM(run_3) FROM table_name_5 WHERE run_1 > 53.75 AND run_2 < 52.91
What is the lowest run 3 an athlete with a run 2 less than 53.72 and a run 1 of 53.1 has?
CREATE TABLE table_name_30 (run_3 INTEGER, run_2 VARCHAR, run_1 VARCHAR)
SELECT MIN(run_3) FROM table_name_30 WHERE run_2 < 53.72 AND run_1 = 53.1
### Context: CREATE TABLE table_name_30 (run_3 INTEGER, run_2 VARCHAR, run_1 VARCHAR) ### Question: What is the lowest run 3 an athlete with a run 2 less than 53.72 and a run 1 of 53.1 has? ### Answer: SELECT MIN(run_3) FROM table_name_30 WHERE run_2 < 53.72 AND run_1 = 53.1
What is the lowest run 2 of the athlete with a run 1 of 52.44 and a run 3 less than 52.35?
CREATE TABLE table_name_90 (run_2 INTEGER, run_1 VARCHAR, run_3 VARCHAR)
SELECT MIN(run_2) FROM table_name_90 WHERE run_1 = 52.44 AND run_3 < 52.35
### Context: CREATE TABLE table_name_90 (run_2 INTEGER, run_1 VARCHAR, run_3 VARCHAR) ### Question: What is the lowest run 2 of the athlete with a run 1 of 52.44 and a run 3 less than 52.35? ### Answer: SELECT MIN(run_2) FROM table_name_90 WHERE run_1 = 52.44 AND run_3 < 52.35
How many points are associated with 0 poles?
CREATE TABLE table_name_39 (points VARCHAR, poles INTEGER)
SELECT COUNT(points) FROM table_name_39 WHERE poles < 0
### Context: CREATE TABLE table_name_39 (points VARCHAR, poles INTEGER) ### Question: How many points are associated with 0 poles? ### Answer: SELECT COUNT(points) FROM table_name_39 WHERE poles < 0
What is the first game that has a home team of Detroit?
CREATE TABLE table_name_93 (game__number INTEGER, home VARCHAR)
SELECT MIN(game__number) FROM table_name_93 WHERE home = "detroit"
### Context: CREATE TABLE table_name_93 (game__number INTEGER, home VARCHAR) ### Question: What is the first game that has a home team of Detroit? ### Answer: SELECT MIN(game__number) FROM table_name_93 WHERE home = "detroit"
Which home team has higher than 92 points?
CREATE TABLE table_name_14 (home VARCHAR, points INTEGER)
SELECT home FROM table_name_14 WHERE points > 92
### Context: CREATE TABLE table_name_14 (home VARCHAR, points INTEGER) ### Question: Which home team has higher than 92 points? ### Answer: SELECT home FROM table_name_14 WHERE points > 92
what team's score is 101?
CREATE TABLE table_name_42 (team VARCHAR, score VARCHAR)
SELECT team FROM table_name_42 WHERE score = "101"
### Context: CREATE TABLE table_name_42 (team VARCHAR, score VARCHAR) ### Question: what team's score is 101? ### Answer: SELECT team FROM table_name_42 WHERE score = "101"
what team played against zimbabwe in 1999?
CREATE TABLE table_name_11 (team VARCHAR, year VARCHAR, versus VARCHAR)
SELECT team FROM table_name_11 WHERE year = 1999 AND versus = "zimbabwe"
### Context: CREATE TABLE table_name_11 (team VARCHAR, year VARCHAR, versus VARCHAR) ### Question: what team played against zimbabwe in 1999? ### Answer: SELECT team FROM table_name_11 WHERE year = 1999 AND versus = "zimbabwe"
what is the team that played in 2006?
CREATE TABLE table_name_70 (team VARCHAR, year VARCHAR)
SELECT team FROM table_name_70 WHERE year = 2006
### Context: CREATE TABLE table_name_70 (team VARCHAR, year VARCHAR) ### Question: what is the team that played in 2006? ### Answer: SELECT team FROM table_name_70 WHERE year = 2006
What is the lowest amount of points driver Romain Grosjean, who has an average pre-2010 less than 0, has?
CREATE TABLE table_name_49 (points INTEGER, driver VARCHAR, average_pre_2010 VARCHAR)
SELECT MIN(points) FROM table_name_49 WHERE driver = "romain grosjean" AND average_pre_2010 < 0
### Context: CREATE TABLE table_name_49 (points INTEGER, driver VARCHAR, average_pre_2010 VARCHAR) ### Question: What is the lowest amount of points driver Romain Grosjean, who has an average pre-2010 less than 0, has? ### Answer: SELECT MIN(points) FROM table_name_49 WHERE driver = "romain grosjean" AND average_pre_2010 < 0
What is the average number of entries driver Mark Webber, who has more than 1014.5 points, has?
CREATE TABLE table_name_27 (entries INTEGER, driver VARCHAR, points VARCHAR)
SELECT AVG(entries) FROM table_name_27 WHERE driver = "mark webber" AND points > 1014.5
### Context: CREATE TABLE table_name_27 (entries INTEGER, driver VARCHAR, points VARCHAR) ### Question: What is the average number of entries driver Mark Webber, who has more than 1014.5 points, has? ### Answer: SELECT AVG(entries) FROM table_name_27 WHERE driver = "mark webber" AND points > 1014.5
What is the highest average points per race of the driver with less than 969 points and an average pre-2010 less than 0?
CREATE TABLE table_name_75 (average_points_per_race_entered INTEGER, points VARCHAR, average_pre_2010 VARCHAR)
SELECT MAX(average_points_per_race_entered) FROM table_name_75 WHERE points < 969 AND average_pre_2010 < 0
### Context: CREATE TABLE table_name_75 (average_points_per_race_entered INTEGER, points VARCHAR, average_pre_2010 VARCHAR) ### Question: What is the highest average points per race of the driver with less than 969 points and an average pre-2010 less than 0? ### Answer: SELECT MAX(average_points_per_race_entered) FROM table_name_75 WHERE points < 969 AND average_pre_2010 < 0
What is the lowest average points per race entered of driver kimi räikkönen, who has more than 194 entries?
CREATE TABLE table_name_3 (average_points_per_race_entered INTEGER, driver VARCHAR, entries VARCHAR)
SELECT MIN(average_points_per_race_entered) FROM table_name_3 WHERE driver = "kimi räikkönen" AND entries > 194
### Context: CREATE TABLE table_name_3 (average_points_per_race_entered INTEGER, driver VARCHAR, entries VARCHAR) ### Question: What is the lowest average points per race entered of driver kimi räikkönen, who has more than 194 entries? ### Answer: SELECT MIN(average_points_per_race_entered) FROM table_name_3 WHERE driver = "kimi räikkönen" AND entries > 194
What is the first game played against the Chicago Black Hawks?
CREATE TABLE table_name_92 (game INTEGER, opponent VARCHAR)
SELECT MIN(game) FROM table_name_92 WHERE opponent = "chicago black hawks"
### Context: CREATE TABLE table_name_92 (game INTEGER, opponent VARCHAR) ### Question: What is the first game played against the Chicago Black Hawks? ### Answer: SELECT MIN(game) FROM table_name_92 WHERE opponent = "chicago black hawks"
Name the opponent for 9 november 1991
CREATE TABLE table_name_19 (opponent VARCHAR, date VARCHAR)
SELECT opponent FROM table_name_19 WHERE date = "9 november 1991"
### Context: CREATE TABLE table_name_19 (opponent VARCHAR, date VARCHAR) ### Question: Name the opponent for 9 november 1991 ### Answer: SELECT opponent FROM table_name_19 WHERE date = "9 november 1991"
Which Losses is the lowest one that has Wins smaller than 0?
CREATE TABLE table_name_92 (losses INTEGER, wins INTEGER)
SELECT MIN(losses) FROM table_name_92 WHERE wins < 0
### Context: CREATE TABLE table_name_92 (losses INTEGER, wins INTEGER) ### Question: Which Losses is the lowest one that has Wins smaller than 0? ### Answer: SELECT MIN(losses) FROM table_name_92 WHERE wins < 0
Which Losses have a Season larger than 1941, and a Team of hamilton wildcats, and Ties of 0?
CREATE TABLE table_name_95 (losses VARCHAR, ties VARCHAR, season VARCHAR, team VARCHAR)
SELECT losses FROM table_name_95 WHERE season > 1941 AND team = "hamilton wildcats" AND ties = 0
### Context: CREATE TABLE table_name_95 (losses VARCHAR, ties VARCHAR, season VARCHAR, team VARCHAR) ### Question: Which Losses have a Season larger than 1941, and a Team of hamilton wildcats, and Ties of 0? ### Answer: SELECT losses FROM table_name_95 WHERE season > 1941 AND team = "hamilton wildcats" AND ties = 0
Which Season has Ties smaller than 1, and a Team of vancouver grizzlies, and Wins smaller than 1?
CREATE TABLE table_name_42 (season INTEGER, wins VARCHAR, ties VARCHAR, team VARCHAR)
SELECT SUM(season) FROM table_name_42 WHERE ties < 1 AND team = "vancouver grizzlies" AND wins < 1
### Context: CREATE TABLE table_name_42 (season INTEGER, wins VARCHAR, ties VARCHAR, team VARCHAR) ### Question: Which Season has Ties smaller than 1, and a Team of vancouver grizzlies, and Wins smaller than 1? ### Answer: SELECT SUM(season) FROM table_name_42 WHERE ties < 1 AND team = "vancouver grizzlies" AND wins < 1
How many Ties have Wins smaller than 1, and Games of 6, and Losses of 6, and a Season larger than 1941?
CREATE TABLE table_name_41 (ties VARCHAR, season VARCHAR, losses VARCHAR, wins VARCHAR, games VARCHAR)
SELECT COUNT(ties) FROM table_name_41 WHERE wins < 1 AND games = 6 AND losses = 6 AND season > 1941
### Context: CREATE TABLE table_name_41 (ties VARCHAR, season VARCHAR, losses VARCHAR, wins VARCHAR, games VARCHAR) ### Question: How many Ties have Wins smaller than 1, and Games of 6, and Losses of 6, and a Season larger than 1941? ### Answer: SELECT COUNT(ties) FROM table_name_41 WHERE wins < 1 AND games = 6 AND losses = 6 AND season > 1941
Which Wins have a Team of winnipeg blue bombers, and a Season larger than 1964?
CREATE TABLE table_name_56 (wins INTEGER, team VARCHAR, season VARCHAR)
SELECT AVG(wins) FROM table_name_56 WHERE team = "winnipeg blue bombers" AND season > 1964
### Context: CREATE TABLE table_name_56 (wins INTEGER, team VARCHAR, season VARCHAR) ### Question: Which Wins have a Team of winnipeg blue bombers, and a Season larger than 1964? ### Answer: SELECT AVG(wins) FROM table_name_56 WHERE team = "winnipeg blue bombers" AND season > 1964
What engine class is associated with a year after 1985 and over 0 wins?
CREATE TABLE table_name_44 (class VARCHAR, year VARCHAR, wins VARCHAR)
SELECT class FROM table_name_44 WHERE year > 1985 AND wins > 0
### Context: CREATE TABLE table_name_44 (class VARCHAR, year VARCHAR, wins VARCHAR) ### Question: What engine class is associated with a year after 1985 and over 0 wins? ### Answer: SELECT class FROM table_name_44 WHERE year > 1985 AND wins > 0
Which opponent has a loss of trout (7-4)?
CREATE TABLE table_name_53 (opponent VARCHAR, loss VARCHAR)
SELECT opponent FROM table_name_53 WHERE loss = "trout (7-4)"
### Context: CREATE TABLE table_name_53 (opponent VARCHAR, loss VARCHAR) ### Question: Which opponent has a loss of trout (7-4)? ### Answer: SELECT opponent FROM table_name_53 WHERE loss = "trout (7-4)"
Which opponent has a save of smith (22)?
CREATE TABLE table_name_65 (opponent VARCHAR, save VARCHAR)
SELECT opponent FROM table_name_65 WHERE save = "smith (22)"
### Context: CREATE TABLE table_name_65 (opponent VARCHAR, save VARCHAR) ### Question: Which opponent has a save of smith (22)? ### Answer: SELECT opponent FROM table_name_65 WHERE save = "smith (22)"
How much Gold has a Bronze larger than 1, and a Silver larger than 2?
CREATE TABLE table_name_38 (gold VARCHAR, bronze VARCHAR, silver VARCHAR)
SELECT COUNT(gold) FROM table_name_38 WHERE bronze > 1 AND silver > 2
### Context: CREATE TABLE table_name_38 (gold VARCHAR, bronze VARCHAR, silver VARCHAR) ### Question: How much Gold has a Bronze larger than 1, and a Silver larger than 2? ### Answer: SELECT COUNT(gold) FROM table_name_38 WHERE bronze > 1 AND silver > 2
Which Total has a Nation of japan (jpn), and a Silver smaller than 1?
CREATE TABLE table_name_85 (total INTEGER, nation VARCHAR, silver VARCHAR)
SELECT AVG(total) FROM table_name_85 WHERE nation = "japan (jpn)" AND silver < 1
### Context: CREATE TABLE table_name_85 (total INTEGER, nation VARCHAR, silver VARCHAR) ### Question: Which Total has a Nation of japan (jpn), and a Silver smaller than 1? ### Answer: SELECT AVG(total) FROM table_name_85 WHERE nation = "japan (jpn)" AND silver < 1
What is the margin of victory in WGC-Accenture Match Play Championship?
CREATE TABLE table_name_98 (margin_of_victory VARCHAR, tournament VARCHAR)
SELECT margin_of_victory FROM table_name_98 WHERE tournament = "wgc-accenture match play championship"
### Context: CREATE TABLE table_name_98 (margin_of_victory VARCHAR, tournament VARCHAR) ### Question: What is the margin of victory in WGC-Accenture Match Play Championship? ### Answer: SELECT margin_of_victory FROM table_name_98 WHERE tournament = "wgc-accenture match play championship"
On what date was Nick Price the runner-up?
CREATE TABLE table_name_7 (date VARCHAR, runner_s__up VARCHAR)
SELECT date FROM table_name_7 WHERE runner_s__up = "nick price"
### Context: CREATE TABLE table_name_7 (date VARCHAR, runner_s__up VARCHAR) ### Question: On what date was Nick Price the runner-up? ### Answer: SELECT date FROM table_name_7 WHERE runner_s__up = "nick price"
What is the margin of victory for Nick Price as a runner-up?
CREATE TABLE table_name_52 (margin_of_victory VARCHAR, runner_s__up VARCHAR)
SELECT margin_of_victory FROM table_name_52 WHERE runner_s__up = "nick price"
### Context: CREATE TABLE table_name_52 (margin_of_victory VARCHAR, runner_s__up VARCHAR) ### Question: What is the margin of victory for Nick Price as a runner-up? ### Answer: SELECT margin_of_victory FROM table_name_52 WHERE runner_s__up = "nick price"
What is the margin of victory for PGA Championship?
CREATE TABLE table_name_25 (margin_of_victory VARCHAR, tournament VARCHAR)
SELECT margin_of_victory FROM table_name_25 WHERE tournament = "pga championship"
### Context: CREATE TABLE table_name_25 (margin_of_victory VARCHAR, tournament VARCHAR) ### Question: What is the margin of victory for PGA Championship? ### Answer: SELECT margin_of_victory FROM table_name_25 WHERE tournament = "pga championship"
On what date was the winning score –20 (68-67-65-64=264)?
CREATE TABLE table_name_46 (date VARCHAR, winning_score VARCHAR)
SELECT date FROM table_name_46 WHERE winning_score = –20(68 - 67 - 65 - 64 = 264)
### Context: CREATE TABLE table_name_46 (date VARCHAR, winning_score VARCHAR) ### Question: On what date was the winning score –20 (68-67-65-64=264)? ### Answer: SELECT date FROM table_name_46 WHERE winning_score = –20(68 - 67 - 65 - 64 = 264)
Which player was D past Round 3?
CREATE TABLE table_name_88 (player VARCHAR, position VARCHAR, round VARCHAR)
SELECT player FROM table_name_88 WHERE position = "d" AND round > 3
### Context: CREATE TABLE table_name_88 (player VARCHAR, position VARCHAR, round VARCHAR) ### Question: Which player was D past Round 3? ### Answer: SELECT player FROM table_name_88 WHERE position = "d" AND round > 3
Which Round was F picked?
CREATE TABLE table_name_5 (round VARCHAR, position VARCHAR)
SELECT round FROM table_name_5 WHERE position = "f"
### Context: CREATE TABLE table_name_5 (round VARCHAR, position VARCHAR) ### Question: Which Round was F picked? ### Answer: SELECT round FROM table_name_5 WHERE position = "f"
What Position is Ryan Russell?
CREATE TABLE table_name_6 (position VARCHAR, player VARCHAR)
SELECT position FROM table_name_6 WHERE player = "ryan russell"
### Context: CREATE TABLE table_name_6 (position VARCHAR, player VARCHAR) ### Question: What Position is Ryan Russell? ### Answer: SELECT position FROM table_name_6 WHERE player = "ryan russell"
What country does Round 4 come from?
CREATE TABLE table_name_12 (nationality VARCHAR, round VARCHAR)
SELECT nationality FROM table_name_12 WHERE round = 4
### Context: CREATE TABLE table_name_12 (nationality VARCHAR, round VARCHAR) ### Question: What country does Round 4 come from? ### Answer: SELECT nationality FROM table_name_12 WHERE round = 4
Which opponent was present on April 14?
CREATE TABLE table_name_17 (opponent VARCHAR, date VARCHAR)
SELECT opponent FROM table_name_17 WHERE date = "april 14"
### Context: CREATE TABLE table_name_17 (opponent VARCHAR, date VARCHAR) ### Question: Which opponent was present on April 14? ### Answer: SELECT opponent FROM table_name_17 WHERE date = "april 14"
what team lost on april 15
CREATE TABLE table_name_60 (loss VARCHAR, date VARCHAR)
SELECT loss FROM table_name_60 WHERE date = "april 15"
### Context: CREATE TABLE table_name_60 (loss VARCHAR, date VARCHAR) ### Question: what team lost on april 15 ### Answer: SELECT loss FROM table_name_60 WHERE date = "april 15"
what team played on april 21
CREATE TABLE table_name_93 (opponent VARCHAR, date VARCHAR)
SELECT opponent FROM table_name_93 WHERE date = "april 21"
### Context: CREATE TABLE table_name_93 (opponent VARCHAR, date VARCHAR) ### Question: what team played on april 21 ### Answer: SELECT opponent FROM table_name_93 WHERE date = "april 21"
what team scored on april 10
CREATE TABLE table_name_81 (score VARCHAR, date VARCHAR)
SELECT score FROM table_name_81 WHERE date = "april 10"
### Context: CREATE TABLE table_name_81 (score VARCHAR, date VARCHAR) ### Question: what team scored on april 10 ### Answer: SELECT score FROM table_name_81 WHERE date = "april 10"
Who lost with a time of 0:58?
CREATE TABLE table_name_44 (loser VARCHAR, time VARCHAR)
SELECT loser FROM table_name_44 WHERE time = "0:58"
### Context: CREATE TABLE table_name_44 (loser VARCHAR, time VARCHAR) ### Question: Who lost with a time of 0:58? ### Answer: SELECT loser FROM table_name_44 WHERE time = "0:58"
What is the average number of rounds for winner Rafael Cavalcante?
CREATE TABLE table_name_37 (round INTEGER, winner VARCHAR)
SELECT AVG(round) FROM table_name_37 WHERE winner = "rafael cavalcante"
### Context: CREATE TABLE table_name_37 (round INTEGER, winner VARCHAR) ### Question: What is the average number of rounds for winner Rafael Cavalcante? ### Answer: SELECT AVG(round) FROM table_name_37 WHERE winner = "rafael cavalcante"
What win method has a time of 2:32?
CREATE TABLE table_name_71 (method VARCHAR, time VARCHAR)
SELECT method FROM table_name_71 WHERE time = "2:32"
### Context: CREATE TABLE table_name_71 (method VARCHAR, time VARCHAR) ### Question: What win method has a time of 2:32? ### Answer: SELECT method FROM table_name_71 WHERE time = "2:32"
What is the sum of points values that are associated with 0 losses and more than 8 games?
CREATE TABLE table_name_67 (points INTEGER, lost VARCHAR, games VARCHAR)
SELECT SUM(points) FROM table_name_67 WHERE lost = 0 AND games > 8
### Context: CREATE TABLE table_name_67 (points INTEGER, lost VARCHAR, games VARCHAR) ### Question: What is the sum of points values that are associated with 0 losses and more than 8 games? ### Answer: SELECT SUM(points) FROM table_name_67 WHERE lost = 0 AND games > 8
What is the fewest losses associated with more than 13 points and fewer than 8 games?
CREATE TABLE table_name_25 (lost INTEGER, points VARCHAR, games VARCHAR)
SELECT MIN(lost) FROM table_name_25 WHERE points > 13 AND games < 8
### Context: CREATE TABLE table_name_25 (lost INTEGER, points VARCHAR, games VARCHAR) ### Question: What is the fewest losses associated with more than 13 points and fewer than 8 games? ### Answer: SELECT MIN(lost) FROM table_name_25 WHERE points > 13 AND games < 8
What is the difference associated with more than 2 points, fewer than 3 losses, and fewer than 1 draw?
CREATE TABLE table_name_97 (points_difference VARCHAR, drawn VARCHAR, points VARCHAR, lost VARCHAR)
SELECT points_difference FROM table_name_97 WHERE points > 2 AND lost < 3 AND drawn < 1
### Context: CREATE TABLE table_name_97 (points_difference VARCHAR, drawn VARCHAR, points VARCHAR, lost VARCHAR) ### Question: What is the difference associated with more than 2 points, fewer than 3 losses, and fewer than 1 draw? ### Answer: SELECT points_difference FROM table_name_97 WHERE points > 2 AND lost < 3 AND drawn < 1
What is the fewest number of points associated with more than 8 games?
CREATE TABLE table_name_95 (points INTEGER, games INTEGER)
SELECT MIN(points) FROM table_name_95 WHERE games > 8
### Context: CREATE TABLE table_name_95 (points INTEGER, games INTEGER) ### Question: What is the fewest number of points associated with more than 8 games? ### Answer: SELECT MIN(points) FROM table_name_95 WHERE games > 8
Which title did richard kolner play?
CREATE TABLE table_name_33 (title VARCHAR, role VARCHAR)
SELECT title FROM table_name_33 WHERE role = "richard kolner"
### Context: CREATE TABLE table_name_33 (title VARCHAR, role VARCHAR) ### Question: Which title did richard kolner play? ### Answer: SELECT title FROM table_name_33 WHERE role = "richard kolner"
Which Title has a Dance Partner of adele astaire, and Lyrics of ira gershwin, and a Director of felix edwardes?
CREATE TABLE table_name_93 (title VARCHAR, director VARCHAR, dance_partner VARCHAR, lyrics VARCHAR)
SELECT title FROM table_name_93 WHERE dance_partner = "adele astaire" AND lyrics = "ira gershwin" AND director = "felix edwardes"
### Context: CREATE TABLE table_name_93 (title VARCHAR, director VARCHAR, dance_partner VARCHAR, lyrics VARCHAR) ### Question: Which Title has a Dance Partner of adele astaire, and Lyrics of ira gershwin, and a Director of felix edwardes? ### Answer: SELECT title FROM table_name_93 WHERE dance_partner = "adele astaire" AND lyrics = "ira gershwin" AND director = "felix edwardes"
Which Role has a Theatre of globe, and a Music of jerome kern?
CREATE TABLE table_name_61 (role VARCHAR, theatre VARCHAR, music VARCHAR)
SELECT role FROM table_name_61 WHERE theatre = "globe" AND music = "jerome kern"
### Context: CREATE TABLE table_name_61 (role VARCHAR, theatre VARCHAR, music VARCHAR) ### Question: Which Role has a Theatre of globe, and a Music of jerome kern? ### Answer: SELECT role FROM table_name_61 WHERE theatre = "globe" AND music = "jerome kern"
what name was on the year 2012
CREATE TABLE table_name_22 (name VARCHAR, year VARCHAR, __est_ VARCHAR)
SELECT name FROM table_name_22 WHERE year * __est_ = "2012"
### Context: CREATE TABLE table_name_22 (name VARCHAR, year VARCHAR, __est_ VARCHAR) ### Question: what name was on the year 2012 ### Answer: SELECT name FROM table_name_22 WHERE year * __est_ = "2012"
Which member of house of Habsburg-Lorraine had the spouse Charles II?
CREATE TABLE table_name_40 (name VARCHAR, spouse VARCHAR)
SELECT name FROM table_name_40 WHERE spouse = "charles ii"
### Context: CREATE TABLE table_name_40 (name VARCHAR, spouse VARCHAR) ### Question: Which member of house of Habsburg-Lorraine had the spouse Charles II? ### Answer: SELECT name FROM table_name_40 WHERE spouse = "charles ii"
What is the marriage date for the Habsburg-Lorraine house member who died 29 December 1829?
CREATE TABLE table_name_67 (marriage VARCHAR, death VARCHAR)
SELECT marriage FROM table_name_67 WHERE death = "29 december 1829"
### Context: CREATE TABLE table_name_67 (marriage VARCHAR, death VARCHAR) ### Question: What is the marriage date for the Habsburg-Lorraine house member who died 29 December 1829? ### Answer: SELECT marriage FROM table_name_67 WHERE death = "29 december 1829"
When did the duchess who became duchess on 7/8 April 1766 cease to be duchess?
CREATE TABLE table_name_5 (ceased_to_be_duchess VARCHAR, became_duchess VARCHAR)
SELECT ceased_to_be_duchess FROM table_name_5 WHERE became_duchess = "7/8 april 1766"
### Context: CREATE TABLE table_name_5 (ceased_to_be_duchess VARCHAR, became_duchess VARCHAR) ### Question: When did the duchess who became duchess on 7/8 April 1766 cease to be duchess? ### Answer: SELECT ceased_to_be_duchess FROM table_name_5 WHERE became_duchess = "7/8 april 1766"
What is the date of death of the duchess born on 30 October 1797?
CREATE TABLE table_name_2 (death VARCHAR, birth VARCHAR)
SELECT death FROM table_name_2 WHERE birth = "30 october 1797"
### Context: CREATE TABLE table_name_2 (death VARCHAR, birth VARCHAR) ### Question: What is the date of death of the duchess born on 30 October 1797? ### Answer: SELECT death FROM table_name_2 WHERE birth = "30 october 1797"
What is the birth date of the duchess who married on 1 May 1844?
CREATE TABLE table_name_16 (birth VARCHAR, marriage VARCHAR)
SELECT birth FROM table_name_16 WHERE marriage = "1 may 1844"
### Context: CREATE TABLE table_name_16 (birth VARCHAR, marriage VARCHAR) ### Question: What is the birth date of the duchess who married on 1 May 1844? ### Answer: SELECT birth FROM table_name_16 WHERE marriage = "1 may 1844"
What is the highest numbered pick from round 7?
CREATE TABLE table_name_67 (pick INTEGER, round VARCHAR)
SELECT MAX(pick) FROM table_name_67 WHERE round = 7
### Context: CREATE TABLE table_name_67 (pick INTEGER, round VARCHAR) ### Question: What is the highest numbered pick from round 7? ### Answer: SELECT MAX(pick) FROM table_name_67 WHERE round = 7
How much Played has an Against larger than 11, and a Team of botafogo, and a Position smaller than 2?
CREATE TABLE table_name_57 (played VARCHAR, position VARCHAR, against VARCHAR, team VARCHAR)
SELECT COUNT(played) FROM table_name_57 WHERE against > 11 AND team = "botafogo" AND position < 2
### Context: CREATE TABLE table_name_57 (played VARCHAR, position VARCHAR, against VARCHAR, team VARCHAR) ### Question: How much Played has an Against larger than 11, and a Team of botafogo, and a Position smaller than 2? ### Answer: SELECT COUNT(played) FROM table_name_57 WHERE against > 11 AND team = "botafogo" AND position < 2
Which average Drawn has Points smaller than 14, and a Lost smaller than 4, and a Played larger than 9?
CREATE TABLE table_name_56 (drawn INTEGER, played VARCHAR, points VARCHAR, lost VARCHAR)
SELECT AVG(drawn) FROM table_name_56 WHERE points < 14 AND lost < 4 AND played > 9
### Context: CREATE TABLE table_name_56 (drawn INTEGER, played VARCHAR, points VARCHAR, lost VARCHAR) ### Question: Which average Drawn has Points smaller than 14, and a Lost smaller than 4, and a Played larger than 9? ### Answer: SELECT AVG(drawn) FROM table_name_56 WHERE points < 14 AND lost < 4 AND played > 9
Which Played is the lowest one that has a Team of vasco da gama, and an Against smaller than 11?
CREATE TABLE table_name_54 (played INTEGER, team VARCHAR, against VARCHAR)
SELECT MIN(played) FROM table_name_54 WHERE team = "vasco da gama" AND against < 11
### Context: CREATE TABLE table_name_54 (played INTEGER, team VARCHAR, against VARCHAR) ### Question: Which Played is the lowest one that has a Team of vasco da gama, and an Against smaller than 11? ### Answer: SELECT MIN(played) FROM table_name_54 WHERE team = "vasco da gama" AND against < 11
Which Played has a Lost larger than 4, and a Team of américa, and Points smaller than 5?
CREATE TABLE table_name_4 (played INTEGER, points VARCHAR, lost VARCHAR, team VARCHAR)
SELECT SUM(played) FROM table_name_4 WHERE lost > 4 AND team = "américa" AND points < 5
### Context: CREATE TABLE table_name_4 (played INTEGER, points VARCHAR, lost VARCHAR, team VARCHAR) ### Question: Which Played has a Lost larger than 4, and a Team of américa, and Points smaller than 5? ### Answer: SELECT SUM(played) FROM table_name_4 WHERE lost > 4 AND team = "américa" AND points < 5
Which Lost has a Position of 3, and a Drawn larger than 3?
CREATE TABLE table_name_76 (lost INTEGER, position VARCHAR, drawn VARCHAR)
SELECT SUM(lost) FROM table_name_76 WHERE position = 3 AND drawn > 3
### Context: CREATE TABLE table_name_76 (lost INTEGER, position VARCHAR, drawn VARCHAR) ### Question: Which Lost has a Position of 3, and a Drawn larger than 3? ### Answer: SELECT SUM(lost) FROM table_name_76 WHERE position = 3 AND drawn > 3
How much Lost has a Drawn larger than 1, and Points smaller than 14, and an Against larger than 10?
CREATE TABLE table_name_61 (lost VARCHAR, against VARCHAR, drawn VARCHAR, points VARCHAR)
SELECT COUNT(lost) FROM table_name_61 WHERE drawn > 1 AND points < 14 AND against > 10
### Context: CREATE TABLE table_name_61 (lost VARCHAR, against VARCHAR, drawn VARCHAR, points VARCHAR) ### Question: How much Lost has a Drawn larger than 1, and Points smaller than 14, and an Against larger than 10? ### Answer: SELECT COUNT(lost) FROM table_name_61 WHERE drawn > 1 AND points < 14 AND against > 10
What tournament has yvonne vermaak as the opponent?
CREATE TABLE table_name_5 (tournament VARCHAR, opponent VARCHAR)
SELECT tournament FROM table_name_5 WHERE opponent = "yvonne vermaak"
### Context: CREATE TABLE table_name_5 (tournament VARCHAR, opponent VARCHAR) ### Question: What tournament has yvonne vermaak as the opponent? ### Answer: SELECT tournament FROM table_name_5 WHERE opponent = "yvonne vermaak"
What outcome has yvonne vermaak as the opponent?
CREATE TABLE table_name_79 (outcome VARCHAR, opponent VARCHAR)
SELECT outcome FROM table_name_79 WHERE opponent = "yvonne vermaak"
### Context: CREATE TABLE table_name_79 (outcome VARCHAR, opponent VARCHAR) ### Question: What outcome has yvonne vermaak as the opponent? ### Answer: SELECT outcome FROM table_name_79 WHERE opponent = "yvonne vermaak"
What is the outcome for the Hershey tournament?
CREATE TABLE table_name_1 (outcome VARCHAR, tournament VARCHAR)
SELECT outcome FROM table_name_1 WHERE tournament = "hershey"
### Context: CREATE TABLE table_name_1 (outcome VARCHAR, tournament VARCHAR) ### Question: What is the outcome for the Hershey tournament? ### Answer: SELECT outcome FROM table_name_1 WHERE tournament = "hershey"
Who played against Save Of Ni Fu-Deh?
CREATE TABLE table_name_4 (opponent VARCHAR, save VARCHAR)
SELECT opponent FROM table_name_4 WHERE save = "ni fu-deh"
### Context: CREATE TABLE table_name_4 (opponent VARCHAR, save VARCHAR) ### Question: Who played against Save Of Ni Fu-Deh? ### Answer: SELECT opponent FROM table_name_4 WHERE save = "ni fu-deh"
What's the loss of who has a Save of Miguel Saladin and played against Chinatrust Whales?
CREATE TABLE table_name_56 (loss VARCHAR, opponent VARCHAR, save VARCHAR)
SELECT loss FROM table_name_56 WHERE opponent = "chinatrust whales" AND save = "miguel saladin"
### Context: CREATE TABLE table_name_56 (loss VARCHAR, opponent VARCHAR, save VARCHAR) ### Question: What's the loss of who has a Save of Miguel Saladin and played against Chinatrust Whales? ### Answer: SELECT loss FROM table_name_56 WHERE opponent = "chinatrust whales" AND save = "miguel saladin"
Who's the opponent when Diegomar Markwell is the loss?
CREATE TABLE table_name_80 (opponent VARCHAR, loss VARCHAR)
SELECT opponent FROM table_name_80 WHERE loss = "diegomar markwell"
### Context: CREATE TABLE table_name_80 (opponent VARCHAR, loss VARCHAR) ### Question: Who's the opponent when Diegomar Markwell is the loss? ### Answer: SELECT opponent FROM table_name_80 WHERE loss = "diegomar markwell"
what game had a score of 86-71
CREATE TABLE table_name_8 (attendance VARCHAR, record VARCHAR)
SELECT attendance FROM table_name_8 WHERE record = "86-71"
### Context: CREATE TABLE table_name_8 (attendance VARCHAR, record VARCHAR) ### Question: what game had a score of 86-71 ### Answer: SELECT attendance FROM table_name_8 WHERE record = "86-71"
what game took place on september 14
CREATE TABLE table_name_34 (record VARCHAR, date VARCHAR)
SELECT record FROM table_name_34 WHERE date = "september 14"
### Context: CREATE TABLE table_name_34 (record VARCHAR, date VARCHAR) ### Question: what game took place on september 14 ### Answer: SELECT record FROM table_name_34 WHERE date = "september 14"
what game had an attendance of 21,629
CREATE TABLE table_name_70 (record VARCHAR, attendance VARCHAR)
SELECT record FROM table_name_70 WHERE attendance = "21,629"
### Context: CREATE TABLE table_name_70 (record VARCHAR, attendance VARCHAR) ### Question: what game had an attendance of 21,629 ### Answer: SELECT record FROM table_name_70 WHERE attendance = "21,629"
what is the number of people in sri lanka
CREATE TABLE table_name_10 (s_no INTEGER, opponent VARCHAR)
SELECT AVG(s_no) FROM table_name_10 WHERE opponent = "sri lanka"
### Context: CREATE TABLE table_name_10 (s_no INTEGER, opponent VARCHAR) ### Question: what is the number of people in sri lanka ### Answer: SELECT AVG(s_no) FROM table_name_10 WHERE opponent = "sri lanka"
What was the position of the Slavia team in 1998?
CREATE TABLE table_name_10 (position_in_1998 VARCHAR, team VARCHAR)
SELECT position_in_1998 FROM table_name_10 WHERE team = "slavia"
### Context: CREATE TABLE table_name_10 (position_in_1998 VARCHAR, team VARCHAR) ### Question: What was the position of the Slavia team in 1998? ### Answer: SELECT position_in_1998 FROM table_name_10 WHERE team = "slavia"
Which team is located in Lida?
CREATE TABLE table_name_91 (team VARCHAR, location VARCHAR)
SELECT team FROM table_name_91 WHERE location = "lida"
### Context: CREATE TABLE table_name_91 (team VARCHAR, location VARCHAR) ### Question: Which team is located in Lida? ### Answer: SELECT team FROM table_name_91 WHERE location = "lida"
Which episode number visited India?
CREATE TABLE table_name_56 (episode_no VARCHAR, countries_visited VARCHAR)
SELECT episode_no FROM table_name_56 WHERE countries_visited = "india"
### Context: CREATE TABLE table_name_56 (episode_no VARCHAR, countries_visited VARCHAR) ### Question: Which episode number visited India? ### Answer: SELECT episode_no FROM table_name_56 WHERE countries_visited = "india"
Which episode title featured a visit to the country of Cuba?
CREATE TABLE table_name_26 (episode_title VARCHAR, countries_visited VARCHAR)
SELECT episode_title FROM table_name_26 WHERE countries_visited = "cuba"
### Context: CREATE TABLE table_name_26 (episode_title VARCHAR, countries_visited VARCHAR) ### Question: Which episode title featured a visit to the country of Cuba? ### Answer: SELECT episode_title FROM table_name_26 WHERE countries_visited = "cuba"
Which position does Jesse Boulerice play?
CREATE TABLE table_name_83 (position VARCHAR, player VARCHAR)
SELECT position FROM table_name_83 WHERE player = "jesse boulerice"
### Context: CREATE TABLE table_name_83 (position VARCHAR, player VARCHAR) ### Question: Which position does Jesse Boulerice play? ### Answer: SELECT position FROM table_name_83 WHERE player = "jesse boulerice"
What is the fewest number of wins in the chart for Ayrton Senna?
CREATE TABLE table_name_1 (wins INTEGER, driver VARCHAR)
SELECT MIN(wins) FROM table_name_1 WHERE driver = "ayrton senna"
### Context: CREATE TABLE table_name_1 (wins INTEGER, driver VARCHAR) ### Question: What is the fewest number of wins in the chart for Ayrton Senna? ### Answer: SELECT MIN(wins) FROM table_name_1 WHERE driver = "ayrton senna"
What is the number of entries associated with more than 11 wins?
CREATE TABLE table_name_51 (entries VARCHAR, wins INTEGER)
SELECT entries FROM table_name_51 WHERE wins > 11
### Context: CREATE TABLE table_name_51 (entries VARCHAR, wins INTEGER) ### Question: What is the number of entries associated with more than 11 wins? ### Answer: SELECT entries FROM table_name_51 WHERE wins > 11
Name the most points with lost more than 1 and games less than 5
CREATE TABLE table_name_96 (points INTEGER, lost VARCHAR, games VARCHAR)
SELECT MAX(points) FROM table_name_96 WHERE lost > 1 AND games < 5
### Context: CREATE TABLE table_name_96 (points INTEGER, lost VARCHAR, games VARCHAR) ### Question: Name the most points with lost more than 1 and games less than 5 ### Answer: SELECT MAX(points) FROM table_name_96 WHERE lost > 1 AND games < 5
Name the sum of drawn with lost more than 1 and games less than 5
CREATE TABLE table_name_13 (drawn INTEGER, lost VARCHAR, games VARCHAR)
SELECT SUM(drawn) FROM table_name_13 WHERE lost > 1 AND games < 5
### Context: CREATE TABLE table_name_13 (drawn INTEGER, lost VARCHAR, games VARCHAR) ### Question: Name the sum of drawn with lost more than 1 and games less than 5 ### Answer: SELECT SUM(drawn) FROM table_name_13 WHERE lost > 1 AND games < 5
Name the least lost with points more than 6 and games less than 5
CREATE TABLE table_name_4 (lost INTEGER, points VARCHAR, games VARCHAR)
SELECT MIN(lost) FROM table_name_4 WHERE points > 6 AND games < 5
### Context: CREATE TABLE table_name_4 (lost INTEGER, points VARCHAR, games VARCHAR) ### Question: Name the least lost with points more than 6 and games less than 5 ### Answer: SELECT MIN(lost) FROM table_name_4 WHERE points > 6 AND games < 5
Name the sum of points with games less than 5
CREATE TABLE table_name_25 (points INTEGER, games INTEGER)
SELECT SUM(points) FROM table_name_25 WHERE games < 5
### Context: CREATE TABLE table_name_25 (points INTEGER, games INTEGER) ### Question: Name the sum of points with games less than 5 ### Answer: SELECT SUM(points) FROM table_name_25 WHERE games < 5
What was the location of the bout that lasted 5:00 and led to a 6-2-1 record?
CREATE TABLE table_name_17 (location VARCHAR, time VARCHAR, record VARCHAR)
SELECT location FROM table_name_17 WHERE time = "5:00" AND record = "6-2-1"
### Context: CREATE TABLE table_name_17 (location VARCHAR, time VARCHAR, record VARCHAR) ### Question: What was the location of the bout that lasted 5:00 and led to a 6-2-1 record? ### Answer: SELECT location FROM table_name_17 WHERE time = "5:00" AND record = "6-2-1"
What was the record after the bout with Alexis Vila?
CREATE TABLE table_name_79 (record VARCHAR, opponent VARCHAR)
SELECT record FROM table_name_79 WHERE opponent = "alexis vila"
### Context: CREATE TABLE table_name_79 (record VARCHAR, opponent VARCHAR) ### Question: What was the record after the bout with Alexis Vila? ### Answer: SELECT record FROM table_name_79 WHERE opponent = "alexis vila"
Who was a defensive end at California?
CREATE TABLE table_name_93 (player_name VARCHAR, position VARCHAR, college VARCHAR)
SELECT player_name FROM table_name_93 WHERE position = "defensive end" AND college = "california"
### Context: CREATE TABLE table_name_93 (player_name VARCHAR, position VARCHAR, college VARCHAR) ### Question: Who was a defensive end at California? ### Answer: SELECT player_name FROM table_name_93 WHERE position = "defensive end" AND college = "california"
Which players were selected after 2011?
CREATE TABLE table_name_53 (player_name VARCHAR, year_ VARCHAR, a_ VARCHAR)
SELECT player_name FROM table_name_53 WHERE year_[a_] > 2011
### Context: CREATE TABLE table_name_53 (player_name VARCHAR, year_ VARCHAR, a_ VARCHAR) ### Question: Which players were selected after 2011? ### Answer: SELECT player_name FROM table_name_53 WHERE year_[a_] > 2011
Who was a linebacker at Tennessee?
CREATE TABLE table_name_64 (player_name VARCHAR, position VARCHAR, college VARCHAR)
SELECT player_name FROM table_name_64 WHERE position = "linebacker" AND college = "tennessee"
### Context: CREATE TABLE table_name_64 (player_name VARCHAR, position VARCHAR, college VARCHAR) ### Question: Who was a linebacker at Tennessee? ### Answer: SELECT player_name FROM table_name_64 WHERE position = "linebacker" AND college = "tennessee"
Which Wins is the lowest one that has Events larger than 30?
CREATE TABLE table_name_70 (wins INTEGER, events INTEGER)
SELECT MIN(wins) FROM table_name_70 WHERE events > 30
### Context: CREATE TABLE table_name_70 (wins INTEGER, events INTEGER) ### Question: Which Wins is the lowest one that has Events larger than 30? ### Answer: SELECT MIN(wins) FROM table_name_70 WHERE events > 30
What day were the results 3:0?
CREATE TABLE table_name_67 (date VARCHAR, results¹ VARCHAR)
SELECT date FROM table_name_67 WHERE results¹ = "3:0"
### Context: CREATE TABLE table_name_67 (date VARCHAR, results¹ VARCHAR) ### Question: What day were the results 3:0? ### Answer: SELECT date FROM table_name_67 WHERE results¹ = "3:0"
What city played on april 29?
CREATE TABLE table_name_32 (city VARCHAR, date VARCHAR)
SELECT city FROM table_name_32 WHERE date = "april 29"
### Context: CREATE TABLE table_name_32 (city VARCHAR, date VARCHAR) ### Question: What city played on april 29? ### Answer: SELECT city FROM table_name_32 WHERE date = "april 29"
Which city has an opponent of England?
CREATE TABLE table_name_99 (city VARCHAR, opponent VARCHAR)
SELECT city FROM table_name_99 WHERE opponent = "england"
### Context: CREATE TABLE table_name_99 (city VARCHAR, opponent VARCHAR) ### Question: Which city has an opponent of England? ### Answer: SELECT city FROM table_name_99 WHERE opponent = "england"
What day was the opponent Austria?
CREATE TABLE table_name_8 (date VARCHAR, opponent VARCHAR)
SELECT date FROM table_name_8 WHERE opponent = "austria"
### Context: CREATE TABLE table_name_8 (date VARCHAR, opponent VARCHAR) ### Question: What day was the opponent Austria? ### Answer: SELECT date FROM table_name_8 WHERE opponent = "austria"
Name the most population for seychelles and rank less than 13
CREATE TABLE table_name_8 (population INTEGER, country_territory_entity VARCHAR, rank VARCHAR)
SELECT MAX(population) FROM table_name_8 WHERE country_territory_entity = "seychelles" AND rank < 13
### Context: CREATE TABLE table_name_8 (population INTEGER, country_territory_entity VARCHAR, rank VARCHAR) ### Question: Name the most population for seychelles and rank less than 13 ### Answer: SELECT MAX(population) FROM table_name_8 WHERE country_territory_entity = "seychelles" AND rank < 13
What is the frequency of the station owned by the Canadian Broadcasting Corporation and branded as CBC Radio One?
CREATE TABLE table_name_49 (frequency VARCHAR, owner VARCHAR, branding VARCHAR)
SELECT frequency FROM table_name_49 WHERE owner = "canadian broadcasting corporation" AND branding = "cbc radio one"
### Context: CREATE TABLE table_name_49 (frequency VARCHAR, owner VARCHAR, branding VARCHAR) ### Question: What is the frequency of the station owned by the Canadian Broadcasting Corporation and branded as CBC Radio One? ### Answer: SELECT frequency FROM table_name_49 WHERE owner = "canadian broadcasting corporation" AND branding = "cbc radio one"
What is the frequency of the soft adult contemporary stations?
CREATE TABLE table_name_14 (frequency VARCHAR, format VARCHAR)
SELECT frequency FROM table_name_14 WHERE format = "soft adult contemporary"
### Context: CREATE TABLE table_name_14 (frequency VARCHAR, format VARCHAR) ### Question: What is the frequency of the soft adult contemporary stations? ### Answer: SELECT frequency FROM table_name_14 WHERE format = "soft adult contemporary"
Who owns the station with the frequency FM 92.1?
CREATE TABLE table_name_65 (owner VARCHAR, frequency VARCHAR)
SELECT owner FROM table_name_65 WHERE frequency = "fm 92.1"
### Context: CREATE TABLE table_name_65 (owner VARCHAR, frequency VARCHAR) ### Question: Who owns the station with the frequency FM 92.1? ### Answer: SELECT owner FROM table_name_65 WHERE frequency = "fm 92.1"
What is the branding of the FM 97.7 station owned by the Canadian Broadcasting Corporation?
CREATE TABLE table_name_80 (branding VARCHAR, owner VARCHAR, frequency VARCHAR)
SELECT branding FROM table_name_80 WHERE owner = "canadian broadcasting corporation" AND frequency = "fm 97.7"
### Context: CREATE TABLE table_name_80 (branding VARCHAR, owner VARCHAR, frequency VARCHAR) ### Question: What is the branding of the FM 97.7 station owned by the Canadian Broadcasting Corporation? ### Answer: SELECT branding FROM table_name_80 WHERE owner = "canadian broadcasting corporation" AND frequency = "fm 97.7"
Which F/Laps has Podiums of 1, and a Season of 2000, and a Final Placing of nc?
CREATE TABLE table_name_98 (f_laps VARCHAR, final_placing VARCHAR, podiums VARCHAR, season VARCHAR)
SELECT f_laps FROM table_name_98 WHERE podiums = "1" AND season = 2000 AND final_placing = "nc"
### Context: CREATE TABLE table_name_98 (f_laps VARCHAR, final_placing VARCHAR, podiums VARCHAR, season VARCHAR) ### Question: Which F/Laps has Podiums of 1, and a Season of 2000, and a Final Placing of nc? ### Answer: SELECT f_laps FROM table_name_98 WHERE podiums = "1" AND season = 2000 AND final_placing = "nc"
Which Series has Poles of 0, and Races of 17?
CREATE TABLE table_name_72 (series VARCHAR, poles VARCHAR, races VARCHAR)
SELECT series FROM table_name_72 WHERE poles = "0" AND races = "17"
### Context: CREATE TABLE table_name_72 (series VARCHAR, poles VARCHAR, races VARCHAR) ### Question: Which Series has Poles of 0, and Races of 17? ### Answer: SELECT series FROM table_name_72 WHERE poles = "0" AND races = "17"