question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
What is the week with a school that is ball state?
CREATE TABLE table_name_19 (week VARCHAR, school VARCHAR)
SELECT week FROM table_name_19 WHERE school = "ball state"
### Context: CREATE TABLE table_name_19 (week VARCHAR, school VARCHAR) ### Question: What is the week with a school that is ball state? ### Answer: SELECT week FROM table_name_19 WHERE school = "ball state"
What number last Runners-up where there when the Last win was 1999 and the Runners-up was bigger than 1?
CREATE TABLE table_name_42 (Last VARCHAR, last_win VARCHAR, runners_up VARCHAR)
SELECT COUNT(Last) AS runners_up FROM table_name_42 WHERE last_win = "1999" AND runners_up > 1
### Context: CREATE TABLE table_name_42 (Last VARCHAR, last_win VARCHAR, runners_up VARCHAR) ### Question: What number last Runners-up where there when the Last win was 1999 and the Runners-up was bigger than 1? ### Answer: SELECT COUNT(Last) AS runners_up FROM table_name_42 WHERE last_win = "1999" AND runners_up > 1
What is the number of Last Runners-up that has the club name of dempo sc?
CREATE TABLE table_name_63 (Last INTEGER, club VARCHAR)
SELECT SUM(Last) AS runners_up FROM table_name_63 WHERE club = "dempo sc"
### Context: CREATE TABLE table_name_63 (Last INTEGER, club VARCHAR) ### Question: What is the number of Last Runners-up that has the club name of dempo sc? ### Answer: SELECT SUM(Last) AS runners_up FROM table_name_63 WHERE club = "dempo sc"
Which Position has a Round larger than 6, and a Player of neil pilon?
CREATE TABLE table_name_97 (position VARCHAR, round VARCHAR, player VARCHAR)
SELECT position FROM table_name_97 WHERE round > 6 AND player = "neil pilon"
### Context: CREATE TABLE table_name_97 (position VARCHAR, round VARCHAR, player VARCHAR) ### Question: Which Position has a Round larger than 6, and a Player of neil pilon? ### Answer: SELECT position FROM table_name_97 WHERE round > 6 AND player = "neil pilon"
Which Nationality has a Player of rudy poeschek?
CREATE TABLE table_name_51 (nationality VARCHAR, player VARCHAR)
SELECT nationality FROM table_name_51 WHERE player = "rudy poeschek"
### Context: CREATE TABLE table_name_51 (nationality VARCHAR, player VARCHAR) ### Question: Which Nationality has a Player of rudy poeschek? ### Answer: SELECT nationality FROM table_name_51 WHERE player = "rudy poeschek"
Which Position has a Player of steve nemeth?
CREATE TABLE table_name_94 (position VARCHAR, player VARCHAR)
SELECT position FROM table_name_94 WHERE player = "steve nemeth"
### Context: CREATE TABLE table_name_94 (position VARCHAR, player VARCHAR) ### Question: Which Position has a Player of steve nemeth? ### Answer: SELECT position FROM table_name_94 WHERE player = "steve nemeth"
Which Position has a Nationality of canada, and a Player of pat janostin?
CREATE TABLE table_name_81 (position VARCHAR, nationality VARCHAR, player VARCHAR)
SELECT position FROM table_name_81 WHERE nationality = "canada" AND player = "pat janostin"
### Context: CREATE TABLE table_name_81 (position VARCHAR, nationality VARCHAR, player VARCHAR) ### Question: Which Position has a Nationality of canada, and a Player of pat janostin? ### Answer: SELECT position FROM table_name_81 WHERE nationality = "canada" AND player = "pat janostin"
What was the score of the match on April 23, 2007?
CREATE TABLE table_name_65 (score VARCHAR, date VARCHAR)
SELECT score FROM table_name_65 WHERE date = "april 23, 2007"
### Context: CREATE TABLE table_name_65 (score VARCHAR, date VARCHAR) ### Question: What was the score of the match on April 23, 2007? ### Answer: SELECT score FROM table_name_65 WHERE date = "april 23, 2007"
Which Date has a Game site of shea stadium, and a Week of 5?
CREATE TABLE table_name_18 (date VARCHAR, game_site VARCHAR, week VARCHAR)
SELECT date FROM table_name_18 WHERE game_site = "shea stadium" AND week = 5
### Context: CREATE TABLE table_name_18 (date VARCHAR, game_site VARCHAR, week VARCHAR) ### Question: Which Date has a Game site of shea stadium, and a Week of 5? ### Answer: SELECT date FROM table_name_18 WHERE game_site = "shea stadium" AND week = 5
Which Attendance is the highest one that has a Week smaller than 9, and a Result of l 24–23?
CREATE TABLE table_name_27 (attendance INTEGER, week VARCHAR, result VARCHAR)
SELECT MAX(attendance) FROM table_name_27 WHERE week < 9 AND result = "l 24–23"
### Context: CREATE TABLE table_name_27 (attendance INTEGER, week VARCHAR, result VARCHAR) ### Question: Which Attendance is the highest one that has a Week smaller than 9, and a Result of l 24–23? ### Answer: SELECT MAX(attendance) FROM table_name_27 WHERE week < 9 AND result = "l 24–23"
Which Week has an Opponent of baltimore colts, and an Attendance smaller than 55,137?
CREATE TABLE table_name_65 (week INTEGER, opponent VARCHAR, attendance VARCHAR)
SELECT AVG(week) FROM table_name_65 WHERE opponent = "baltimore colts" AND attendance < 55 OFFSET 137
### Context: CREATE TABLE table_name_65 (week INTEGER, opponent VARCHAR, attendance VARCHAR) ### Question: Which Week has an Opponent of baltimore colts, and an Attendance smaller than 55,137? ### Answer: SELECT AVG(week) FROM table_name_65 WHERE opponent = "baltimore colts" AND attendance < 55 OFFSET 137
Which Game has Points of 53, and an Opponent of @ minnesota north stars, and a December larger than 30?
CREATE TABLE table_name_6 (game INTEGER, december VARCHAR, points VARCHAR, opponent VARCHAR)
SELECT AVG(game) FROM table_name_6 WHERE points = 53 AND opponent = "@ minnesota north stars" AND december > 30
### Context: CREATE TABLE table_name_6 (game INTEGER, december VARCHAR, points VARCHAR, opponent VARCHAR) ### Question: Which Game has Points of 53, and an Opponent of @ minnesota north stars, and a December larger than 30? ### Answer: SELECT AVG(game) FROM table_name_6 WHERE points = 53 AND opponent = "@ minnesota north stars" AND december > 30
Which December has a Record of 21–6–5?
CREATE TABLE table_name_59 (december INTEGER, record VARCHAR)
SELECT AVG(december) FROM table_name_59 WHERE record = "21–6–5"
### Context: CREATE TABLE table_name_59 (december INTEGER, record VARCHAR) ### Question: Which December has a Record of 21–6–5? ### Answer: SELECT AVG(december) FROM table_name_59 WHERE record = "21–6–5"
Which Points have an Opponent of @ pittsburgh penguins?
CREATE TABLE table_name_86 (points INTEGER, opponent VARCHAR)
SELECT MAX(points) FROM table_name_86 WHERE opponent = "@ pittsburgh penguins"
### Context: CREATE TABLE table_name_86 (points INTEGER, opponent VARCHAR) ### Question: Which Points have an Opponent of @ pittsburgh penguins? ### Answer: SELECT MAX(points) FROM table_name_86 WHERE opponent = "@ pittsburgh penguins"
What year was the startup for the Project Named of taq taq ph 2?
CREATE TABLE table_name_51 (year_startup VARCHAR, project_name VARCHAR)
SELECT year_startup FROM table_name_51 WHERE project_name = "taq taq ph 2"
### Context: CREATE TABLE table_name_51 (year_startup VARCHAR, project_name VARCHAR) ### Question: What year was the startup for the Project Named of taq taq ph 2? ### Answer: SELECT year_startup FROM table_name_51 WHERE project_name = "taq taq ph 2"
What is the operator for peak 90, in startup year 2010 for the project named Aosp expansion 1 (jackpine ph 1a)?
CREATE TABLE table_name_89 (operator VARCHAR, project_name VARCHAR, peak VARCHAR, year_startup VARCHAR)
SELECT operator FROM table_name_89 WHERE peak = "90" AND year_startup = "2010" AND project_name = "aosp expansion 1 (jackpine ph 1a)"
### Context: CREATE TABLE table_name_89 (operator VARCHAR, project_name VARCHAR, peak VARCHAR, year_startup VARCHAR) ### Question: What is the operator for peak 90, in startup year 2010 for the project named Aosp expansion 1 (jackpine ph 1a)? ### Answer: SELECT operator FROM table_name_89 WHERE peak = "90" AND year_startup = "2010" AND project_name = "aosp expansion 1 (jackpine ph 1a)"
What country has peak 20 and a project named jarn yabhour; ramhan?
CREATE TABLE table_name_56 (country VARCHAR, peak VARCHAR, project_name VARCHAR)
SELECT country FROM table_name_56 WHERE peak = "20" AND project_name = "jarn yabhour; ramhan"
### Context: CREATE TABLE table_name_56 (country VARCHAR, peak VARCHAR, project_name VARCHAR) ### Question: What country has peak 20 and a project named jarn yabhour; ramhan? ### Answer: SELECT country FROM table_name_56 WHERE peak = "20" AND project_name = "jarn yabhour; ramhan"
How much Attendance has an Opponent of swindon wildcats?
CREATE TABLE table_name_90 (attendance VARCHAR, opponent VARCHAR)
SELECT COUNT(attendance) FROM table_name_90 WHERE opponent = "swindon wildcats"
### Context: CREATE TABLE table_name_90 (attendance VARCHAR, opponent VARCHAR) ### Question: How much Attendance has an Opponent of swindon wildcats? ### Answer: SELECT COUNT(attendance) FROM table_name_90 WHERE opponent = "swindon wildcats"
Which Attendance is the lowest one that has a Venue of away, and a Date of 19?
CREATE TABLE table_name_64 (attendance INTEGER, venue VARCHAR, date VARCHAR)
SELECT MIN(attendance) FROM table_name_64 WHERE venue = "away" AND date = 19
### Context: CREATE TABLE table_name_64 (attendance INTEGER, venue VARCHAR, date VARCHAR) ### Question: Which Attendance is the lowest one that has a Venue of away, and a Date of 19? ### Answer: SELECT MIN(attendance) FROM table_name_64 WHERE venue = "away" AND date = 19
Which Venue has a Result of won 5-4?
CREATE TABLE table_name_65 (venue VARCHAR, result VARCHAR)
SELECT venue FROM table_name_65 WHERE result = "won 5-4"
### Context: CREATE TABLE table_name_65 (venue VARCHAR, result VARCHAR) ### Question: Which Venue has a Result of won 5-4? ### Answer: SELECT venue FROM table_name_65 WHERE result = "won 5-4"
what country has dubai
CREATE TABLE table_name_89 (country VARCHAR, town VARCHAR)
SELECT country FROM table_name_89 WHERE town = "dubai"
### Context: CREATE TABLE table_name_89 (country VARCHAR, town VARCHAR) ### Question: what country has dubai ### Answer: SELECT country FROM table_name_89 WHERE town = "dubai"
what country is dubai in
CREATE TABLE table_name_50 (country VARCHAR, town VARCHAR)
SELECT country FROM table_name_50 WHERE town = "dubai"
### Context: CREATE TABLE table_name_50 (country VARCHAR, town VARCHAR) ### Question: what country is dubai in ### Answer: SELECT country FROM table_name_50 WHERE town = "dubai"
What home team has june 22 as the date?
CREATE TABLE table_name_87 (home_team VARCHAR, date VARCHAR)
SELECT home_team FROM table_name_87 WHERE date = "june 22"
### Context: CREATE TABLE table_name_87 (home_team VARCHAR, date VARCHAR) ### Question: What home team has june 22 as the date? ### Answer: SELECT home_team FROM table_name_87 WHERE date = "june 22"
What road team has 86-84 as the result?
CREATE TABLE table_name_67 (road_team VARCHAR, result VARCHAR)
SELECT road_team FROM table_name_67 WHERE result = "86-84"
### Context: CREATE TABLE table_name_67 (road_team VARCHAR, result VARCHAR) ### Question: What road team has 86-84 as the result? ### Answer: SELECT road_team FROM table_name_67 WHERE result = "86-84"
What road team has 91-82 as the result?
CREATE TABLE table_name_86 (road_team VARCHAR, result VARCHAR)
SELECT road_team FROM table_name_86 WHERE result = "91-82"
### Context: CREATE TABLE table_name_86 (road_team VARCHAR, result VARCHAR) ### Question: What road team has 91-82 as the result? ### Answer: SELECT road_team FROM table_name_86 WHERE result = "91-82"
Which game has houston as the road team, and june 15 as the date?
CREATE TABLE table_name_26 (game VARCHAR, road_team VARCHAR, date VARCHAR)
SELECT game FROM table_name_26 WHERE road_team = "houston" AND date = "june 15"
### Context: CREATE TABLE table_name_26 (game VARCHAR, road_team VARCHAR, date VARCHAR) ### Question: Which game has houston as the road team, and june 15 as the date? ### Answer: SELECT game FROM table_name_26 WHERE road_team = "houston" AND date = "june 15"
What is listed under occupation for someone from Santa Monica, California?
CREATE TABLE table_name_71 (occupation VARCHAR, hometown VARCHAR)
SELECT occupation FROM table_name_71 WHERE hometown = "santa monica, california"
### Context: CREATE TABLE table_name_71 (occupation VARCHAR, hometown VARCHAR) ### Question: What is listed under occupation for someone from Santa Monica, California? ### Answer: SELECT occupation FROM table_name_71 WHERE hometown = "santa monica, california"
For natives of St. Louis, Missouri, what was listed under education?
CREATE TABLE table_name_47 (education VARCHAR, hometown VARCHAR)
SELECT education FROM table_name_47 WHERE hometown = "st. louis, missouri"
### Context: CREATE TABLE table_name_47 (education VARCHAR, hometown VARCHAR) ### Question: For natives of St. Louis, Missouri, what was listed under education? ### Answer: SELECT education FROM table_name_47 WHERE hometown = "st. louis, missouri"
When the occupation was utility worker on-air talent, what was the game status?
CREATE TABLE table_name_21 (game_status VARCHAR, occupation VARCHAR)
SELECT game_status FROM table_name_21 WHERE occupation = "utility worker on-air talent"
### Context: CREATE TABLE table_name_21 (game_status VARCHAR, occupation VARCHAR) ### Question: When the occupation was utility worker on-air talent, what was the game status? ### Answer: SELECT game_status FROM table_name_21 WHERE occupation = "utility worker on-air talent"
Which 2005 has a 2004 of 3–2?
CREATE TABLE table_name_3 (Id VARCHAR)
SELECT 2005 FROM table_name_3 WHERE 2004 = "3–2"
### Context: CREATE TABLE table_name_3 (Id VARCHAR) ### Question: Which 2005 has a 2004 of 3–2? ### Answer: SELECT 2005 FROM table_name_3 WHERE 2004 = "3–2"
Which 2011 has a 2009 of 15–2?
CREATE TABLE table_name_66 (Id VARCHAR)
SELECT 2011 FROM table_name_66 WHERE 2009 = "15–2"
### Context: CREATE TABLE table_name_66 (Id VARCHAR) ### Question: Which 2011 has a 2009 of 15–2? ### Answer: SELECT 2011 FROM table_name_66 WHERE 2009 = "15–2"
Which 2010 has a 2006 of w?
CREATE TABLE table_name_51 (Id VARCHAR)
SELECT 2010 FROM table_name_51 WHERE 2006 = "w"
### Context: CREATE TABLE table_name_51 (Id VARCHAR) ### Question: Which 2010 has a 2006 of w? ### Answer: SELECT 2010 FROM table_name_51 WHERE 2006 = "w"
Which 2008 has a 2005 of 13–3?
CREATE TABLE table_name_48 (Id VARCHAR)
SELECT 2008 FROM table_name_48 WHERE 2005 = "13–3"
### Context: CREATE TABLE table_name_48 (Id VARCHAR) ### Question: Which 2008 has a 2005 of 13–3? ### Answer: SELECT 2008 FROM table_name_48 WHERE 2005 = "13–3"
What is the time of the Ghantoot Racing and Polo Club?
CREATE TABLE table_name_4 (time VARCHAR, ground VARCHAR)
SELECT time FROM table_name_4 WHERE ground = "ghantoot racing and polo club"
### Context: CREATE TABLE table_name_4 (time VARCHAR, ground VARCHAR) ### Question: What is the time of the Ghantoot Racing and Polo Club? ### Answer: SELECT time FROM table_name_4 WHERE ground = "ghantoot racing and polo club"
What is the home team score of the game with Adelaide as the away team?
CREATE TABLE table_name_90 (home_team VARCHAR, away_team VARCHAR)
SELECT home_team AS score FROM table_name_90 WHERE away_team = "adelaide"
### Context: CREATE TABLE table_name_90 (home_team VARCHAR, away_team VARCHAR) ### Question: What is the home team score of the game with Adelaide as the away team? ### Answer: SELECT home_team AS score FROM table_name_90 WHERE away_team = "adelaide"
What is the time of the Essendon home team game?
CREATE TABLE table_name_81 (time VARCHAR, home_team VARCHAR)
SELECT time FROM table_name_81 WHERE home_team = "essendon"
### Context: CREATE TABLE table_name_81 (time VARCHAR, home_team VARCHAR) ### Question: What is the time of the Essendon home team game? ### Answer: SELECT time FROM table_name_81 WHERE home_team = "essendon"
What is the home team score of the Ghantoot Racing and Polo Club Ground?
CREATE TABLE table_name_25 (home_team VARCHAR, ground VARCHAR)
SELECT home_team AS score FROM table_name_25 WHERE ground = "ghantoot racing and polo club"
### Context: CREATE TABLE table_name_25 (home_team VARCHAR, ground VARCHAR) ### Question: What is the home team score of the Ghantoot Racing and Polo Club Ground? ### Answer: SELECT home_team AS score FROM table_name_25 WHERE ground = "ghantoot racing and polo club"
What shows for region when the date is february 2006?
CREATE TABLE table_name_29 (region VARCHAR, date VARCHAR)
SELECT region FROM table_name_29 WHERE date = "february 2006"
### Context: CREATE TABLE table_name_29 (region VARCHAR, date VARCHAR) ### Question: What shows for region when the date is february 2006? ### Answer: SELECT region FROM table_name_29 WHERE date = "february 2006"
What shows as the format for catalog 11 135?
CREATE TABLE table_name_61 (format VARCHAR, catalog VARCHAR)
SELECT format FROM table_name_61 WHERE catalog = "11 135"
### Context: CREATE TABLE table_name_61 (format VARCHAR, catalog VARCHAR) ### Question: What shows as the format for catalog 11 135? ### Answer: SELECT format FROM table_name_61 WHERE catalog = "11 135"
In what Region is Catalog number 885 380-1?
CREATE TABLE table_name_63 (region VARCHAR, catalog VARCHAR)
SELECT region FROM table_name_63 WHERE catalog = "885 380-1"
### Context: CREATE TABLE table_name_63 (region VARCHAR, catalog VARCHAR) ### Question: In what Region is Catalog number 885 380-1? ### Answer: SELECT region FROM table_name_63 WHERE catalog = "885 380-1"
Which Sampling Memory/Upgrade-able has a rate of 16-bit 44.1khz?
CREATE TABLE table_name_66 (sampling_memory_upgrade_able VARCHAR, sampling_rate VARCHAR)
SELECT sampling_memory_upgrade_able FROM table_name_66 WHERE sampling_rate = "16-bit 44.1khz"
### Context: CREATE TABLE table_name_66 (sampling_memory_upgrade_able VARCHAR, sampling_rate VARCHAR) ### Question: Which Sampling Memory/Upgrade-able has a rate of 16-bit 44.1khz? ### Answer: SELECT sampling_memory_upgrade_able FROM table_name_66 WHERE sampling_rate = "16-bit 44.1khz"
Around what time frame release a Sampling Rate of 12-bit 40khz?
CREATE TABLE table_name_63 (release_date INTEGER, sampling_rate VARCHAR)
SELECT SUM(release_date) FROM table_name_63 WHERE sampling_rate = "12-bit 40khz"
### Context: CREATE TABLE table_name_63 (release_date INTEGER, sampling_rate VARCHAR) ### Question: Around what time frame release a Sampling Rate of 12-bit 40khz? ### Answer: SELECT SUM(release_date) FROM table_name_63 WHERE sampling_rate = "12-bit 40khz"
How much is a product with a Sampling Rate of 12-bit 40khz?
CREATE TABLE table_name_65 (price VARCHAR, sampling_rate VARCHAR)
SELECT price FROM table_name_65 WHERE sampling_rate = "12-bit 40khz"
### Context: CREATE TABLE table_name_65 (price VARCHAR, sampling_rate VARCHAR) ### Question: How much is a product with a Sampling Rate of 12-bit 40khz? ### Answer: SELECT price FROM table_name_65 WHERE sampling_rate = "12-bit 40khz"
what team scored on december 19
CREATE TABLE table_name_65 (record VARCHAR, date VARCHAR)
SELECT record FROM table_name_65 WHERE date = "december 19"
### Context: CREATE TABLE table_name_65 (record VARCHAR, date VARCHAR) ### Question: what team scored on december 19 ### Answer: SELECT record FROM table_name_65 WHERE date = "december 19"
what team scored 5–5–1–1?
CREATE TABLE table_name_71 (home VARCHAR, record VARCHAR)
SELECT home FROM table_name_71 WHERE record = "5–5–1–1"
### Context: CREATE TABLE table_name_71 (home VARCHAR, record VARCHAR) ### Question: what team scored 5–5–1–1? ### Answer: SELECT home FROM table_name_71 WHERE record = "5–5–1–1"
what team scored on november 7
CREATE TABLE table_name_65 (record VARCHAR, date VARCHAR)
SELECT record FROM table_name_65 WHERE date = "november 7"
### Context: CREATE TABLE table_name_65 (record VARCHAR, date VARCHAR) ### Question: what team scored on november 7 ### Answer: SELECT record FROM table_name_65 WHERE date = "november 7"
Which player has rank 1?
CREATE TABLE table_name_24 (player VARCHAR, rank VARCHAR)
SELECT player FROM table_name_24 WHERE rank = 1
### Context: CREATE TABLE table_name_24 (player VARCHAR, rank VARCHAR) ### Question: Which player has rank 1? ### Answer: SELECT player FROM table_name_24 WHERE rank = 1
What's the mean number of wins with a rank that's more than 5?
CREATE TABLE table_name_91 (wins INTEGER, rank INTEGER)
SELECT AVG(wins) FROM table_name_91 WHERE rank > 5
### Context: CREATE TABLE table_name_91 (wins INTEGER, rank INTEGER) ### Question: What's the mean number of wins with a rank that's more than 5? ### Answer: SELECT AVG(wins) FROM table_name_91 WHERE rank > 5
What amount of earnings does Tiger Woods have?
CREATE TABLE table_name_40 (earnings___$__ VARCHAR, player VARCHAR)
SELECT earnings___$__ FROM table_name_40 WHERE player = "tiger woods"
### Context: CREATE TABLE table_name_40 (earnings___$__ VARCHAR, player VARCHAR) ### Question: What amount of earnings does Tiger Woods have? ### Answer: SELECT earnings___$__ FROM table_name_40 WHERE player = "tiger woods"
What is the position number of the club with more than 24 points and a w-l-d of 8-5-3?
CREATE TABLE table_name_99 (position VARCHAR, points VARCHAR, w_l_d VARCHAR)
SELECT COUNT(position) FROM table_name_99 WHERE points > 24 AND w_l_d = "8-5-3"
### Context: CREATE TABLE table_name_99 (position VARCHAR, points VARCHAR, w_l_d VARCHAR) ### Question: What is the position number of the club with more than 24 points and a w-l-d of 8-5-3? ### Answer: SELECT COUNT(position) FROM table_name_99 WHERE points > 24 AND w_l_d = "8-5-3"
What is the goals for/against of the club with 17 points?
CREATE TABLE table_name_94 (goals_for_against VARCHAR, points VARCHAR)
SELECT goals_for_against FROM table_name_94 WHERE points = 17
### Context: CREATE TABLE table_name_94 (goals_for_against VARCHAR, points VARCHAR) ### Question: What is the goals for/against of the club with 17 points? ### Answer: SELECT goals_for_against FROM table_name_94 WHERE points = 17
What is the highest number of games played of the club with a position number less than 4 and a 29-24 goals for/against?
CREATE TABLE table_name_85 (games_played INTEGER, position VARCHAR, goals_for_against VARCHAR)
SELECT MAX(games_played) FROM table_name_85 WHERE position < 4 AND goals_for_against = "29-24"
### Context: CREATE TABLE table_name_85 (games_played INTEGER, position VARCHAR, goals_for_against VARCHAR) ### Question: What is the highest number of games played of the club with a position number less than 4 and a 29-24 goals for/against? ### Answer: SELECT MAX(games_played) FROM table_name_85 WHERE position < 4 AND goals_for_against = "29-24"
Which date's attendance was more than 35,540?
CREATE TABLE table_name_3 (date VARCHAR, attendance INTEGER)
SELECT date FROM table_name_3 WHERE attendance > 35 OFFSET 540
### Context: CREATE TABLE table_name_3 (date VARCHAR, attendance INTEGER) ### Question: Which date's attendance was more than 35,540? ### Answer: SELECT date FROM table_name_3 WHERE attendance > 35 OFFSET 540
What is the smallest attendance number for December 3, 1944?
CREATE TABLE table_name_39 (attendance INTEGER, date VARCHAR)
SELECT MIN(attendance) FROM table_name_39 WHERE date = "december 3, 1944"
### Context: CREATE TABLE table_name_39 (attendance INTEGER, date VARCHAR) ### Question: What is the smallest attendance number for December 3, 1944? ### Answer: SELECT MIN(attendance) FROM table_name_39 WHERE date = "december 3, 1944"
When was the Treaty of Cession for Karikal Colony?
CREATE TABLE table_name_60 (treaty_of_cession VARCHAR, colony VARCHAR)
SELECT treaty_of_cession FROM table_name_60 WHERE colony = "karikal"
### Context: CREATE TABLE table_name_60 (treaty_of_cession VARCHAR, colony VARCHAR) ### Question: When was the Treaty of Cession for Karikal Colony? ### Answer: SELECT treaty_of_cession FROM table_name_60 WHERE colony = "karikal"
what day was the game in argentina
CREATE TABLE table_name_92 (date VARCHAR, opponent VARCHAR)
SELECT date FROM table_name_92 WHERE opponent = "argentina"
### Context: CREATE TABLE table_name_92 (date VARCHAR, opponent VARCHAR) ### Question: what day was the game in argentina ### Answer: SELECT date FROM table_name_92 WHERE opponent = "argentina"
what city scored 0:0
CREATE TABLE table_name_78 (city VARCHAR, resultsΒΉ VARCHAR)
SELECT city FROM table_name_78 WHERE resultsΒΉ = "0:0"
### Context: CREATE TABLE table_name_78 (city VARCHAR, resultsΒΉ VARCHAR) ### Question: what city scored 0:0 ### Answer: SELECT city FROM table_name_78 WHERE resultsΒΉ = "0:0"
what game was played on june 14
CREATE TABLE table_name_27 (type_of_game VARCHAR, date VARCHAR)
SELECT type_of_game FROM table_name_27 WHERE date = "june 14"
### Context: CREATE TABLE table_name_27 (type_of_game VARCHAR, date VARCHAR) ### Question: what game was played on june 14 ### Answer: SELECT type_of_game FROM table_name_27 WHERE date = "june 14"
What score has april 28 as the date?
CREATE TABLE table_name_5 (score VARCHAR, date VARCHAR)
SELECT score FROM table_name_5 WHERE date = "april 28"
### Context: CREATE TABLE table_name_5 (score VARCHAR, date VARCHAR) ### Question: What score has april 28 as the date? ### Answer: SELECT score FROM table_name_5 WHERE date = "april 28"
What score has tim duncan (27) as the leading scorer?
CREATE TABLE table_name_96 (score VARCHAR, leading_scorer VARCHAR)
SELECT score FROM table_name_96 WHERE leading_scorer = "tim duncan (27)"
### Context: CREATE TABLE table_name_96 (score VARCHAR, leading_scorer VARCHAR) ### Question: What score has tim duncan (27) as the leading scorer? ### Answer: SELECT score FROM table_name_96 WHERE leading_scorer = "tim duncan (27)"
What visitor has tim duncan (16) as the leading scorer?
CREATE TABLE table_name_18 (visitor VARCHAR, leading_scorer VARCHAR)
SELECT visitor FROM table_name_18 WHERE leading_scorer = "tim duncan (16)"
### Context: CREATE TABLE table_name_18 (visitor VARCHAR, leading_scorer VARCHAR) ### Question: What visitor has tim duncan (16) as the leading scorer? ### Answer: SELECT visitor FROM table_name_18 WHERE leading_scorer = "tim duncan (16)"
What were Will Rackley's total rounds?
CREATE TABLE table_name_89 (round VARCHAR, name VARCHAR)
SELECT COUNT(round) FROM table_name_89 WHERE name = "will rackley"
### Context: CREATE TABLE table_name_89 (round VARCHAR, name VARCHAR) ### Question: What were Will Rackley's total rounds? ### Answer: SELECT COUNT(round) FROM table_name_89 WHERE name = "will rackley"
Which cornerback has the lowest overall and a pick number smaller than 16?
CREATE TABLE table_name_30 (overall INTEGER, position VARCHAR, pick__number VARCHAR)
SELECT MIN(overall) FROM table_name_30 WHERE position = "cornerback" AND pick__number < 16
### Context: CREATE TABLE table_name_30 (overall INTEGER, position VARCHAR, pick__number VARCHAR) ### Question: Which cornerback has the lowest overall and a pick number smaller than 16? ### Answer: SELECT MIN(overall) FROM table_name_30 WHERE position = "cornerback" AND pick__number < 16
Which cornerback has the highest round?
CREATE TABLE table_name_97 (round INTEGER, position VARCHAR)
SELECT MAX(round) FROM table_name_97 WHERE position = "cornerback"
### Context: CREATE TABLE table_name_97 (round INTEGER, position VARCHAR) ### Question: Which cornerback has the highest round? ### Answer: SELECT MAX(round) FROM table_name_97 WHERE position = "cornerback"
What was the outcome on 25 october 2004?
CREATE TABLE table_name_99 (outcome VARCHAR, date VARCHAR)
SELECT outcome FROM table_name_99 WHERE date = "25 october 2004"
### Context: CREATE TABLE table_name_99 (outcome VARCHAR, date VARCHAR) ### Question: What was the outcome on 25 october 2004? ### Answer: SELECT outcome FROM table_name_99 WHERE date = "25 october 2004"
Which opponent was a runner-up on 2 march 1998?
CREATE TABLE table_name_6 (opponent_in_the_final VARCHAR, outcome VARCHAR, date VARCHAR)
SELECT opponent_in_the_final FROM table_name_6 WHERE outcome = "runner-up" AND date = "2 march 1998"
### Context: CREATE TABLE table_name_6 (opponent_in_the_final VARCHAR, outcome VARCHAR, date VARCHAR) ### Question: Which opponent was a runner-up on 2 march 1998? ### Answer: SELECT opponent_in_the_final FROM table_name_6 WHERE outcome = "runner-up" AND date = "2 march 1998"
Which championship had an oppenent of mario ančiΔ‡ in the final?
CREATE TABLE table_name_8 (championship VARCHAR, opponent_in_the_final VARCHAR)
SELECT championship FROM table_name_8 WHERE opponent_in_the_final = "mario ančiΔ‡"
### Context: CREATE TABLE table_name_8 (championship VARCHAR, opponent_in_the_final VARCHAR) ### Question: Which championship had an oppenent of mario ančiΔ‡ in the final? ### Answer: SELECT championship FROM table_name_8 WHERE opponent_in_the_final = "mario ančiΔ‡"
Name the change with share of 2.9%
CREATE TABLE table_name_71 (change VARCHAR, share VARCHAR)
SELECT change FROM table_name_71 WHERE share = "2.9%"
### Context: CREATE TABLE table_name_71 (change VARCHAR, share VARCHAR) ### Question: Name the change with share of 2.9% ### Answer: SELECT change FROM table_name_71 WHERE share = "2.9%"
Name the change for english democrats
CREATE TABLE table_name_78 (change VARCHAR, party VARCHAR)
SELECT change FROM table_name_78 WHERE party = "english democrats"
### Context: CREATE TABLE table_name_78 (change VARCHAR, party VARCHAR) ### Question: Name the change for english democrats ### Answer: SELECT change FROM table_name_78 WHERE party = "english democrats"
Name the average votes for one london
CREATE TABLE table_name_22 (votes INTEGER, party VARCHAR)
SELECT AVG(votes) FROM table_name_22 WHERE party = "one london"
### Context: CREATE TABLE table_name_22 (votes INTEGER, party VARCHAR) ### Question: Name the average votes for one london ### Answer: SELECT AVG(votes) FROM table_name_22 WHERE party = "one london"
Which Country has a Rank of 5?
CREATE TABLE table_name_77 (country VARCHAR, rank VARCHAR)
SELECT country FROM table_name_77 WHERE rank = 5
### Context: CREATE TABLE table_name_77 (country VARCHAR, rank VARCHAR) ### Question: Which Country has a Rank of 5? ### Answer: SELECT country FROM table_name_77 WHERE rank = 5
Which Earnings ($) is the lowest one that has a Rank of 1, and Events smaller than 22?
CREATE TABLE table_name_60 (earnings___ INTEGER, rank VARCHAR, events VARCHAR)
SELECT MIN(earnings___) AS $__ FROM table_name_60 WHERE rank = 1 AND events < 22
### Context: CREATE TABLE table_name_60 (earnings___ INTEGER, rank VARCHAR, events VARCHAR) ### Question: Which Earnings ($) is the lowest one that has a Rank of 1, and Events smaller than 22? ### Answer: SELECT MIN(earnings___) AS $__ FROM table_name_60 WHERE rank = 1 AND events < 22
How many earnings have Wins larger than 3?
CREATE TABLE table_name_70 (earnings___ INTEGER, wins INTEGER)
SELECT SUM(earnings___) AS $__ FROM table_name_70 WHERE wins > 3
### Context: CREATE TABLE table_name_70 (earnings___ INTEGER, wins INTEGER) ### Question: How many earnings have Wins larger than 3? ### Answer: SELECT SUM(earnings___) AS $__ FROM table_name_70 WHERE wins > 3
Which Player has 4 Wins?
CREATE TABLE table_name_49 (player VARCHAR, wins VARCHAR)
SELECT player FROM table_name_49 WHERE wins = 4
### Context: CREATE TABLE table_name_49 (player VARCHAR, wins VARCHAR) ### Question: Which Player has 4 Wins? ### Answer: SELECT player FROM table_name_49 WHERE wins = 4
How many Poles have a Bike of honda rc212v, and Podiums smaller than 0?
CREATE TABLE table_name_92 (poles VARCHAR, bike VARCHAR, podiums VARCHAR)
SELECT COUNT(poles) FROM table_name_92 WHERE bike = "honda rc212v" AND podiums < 0
### Context: CREATE TABLE table_name_92 (poles VARCHAR, bike VARCHAR, podiums VARCHAR) ### Question: How many Poles have a Bike of honda rc212v, and Podiums smaller than 0? ### Answer: SELECT COUNT(poles) FROM table_name_92 WHERE bike = "honda rc212v" AND podiums < 0
Which Wins is the highest one that has a Pos of 2nd, and Poles larger than 2?
CREATE TABLE table_name_3 (wins INTEGER, pos VARCHAR, poles VARCHAR)
SELECT MAX(wins) FROM table_name_3 WHERE pos = "2nd" AND poles > 2
### Context: CREATE TABLE table_name_3 (wins INTEGER, pos VARCHAR, poles VARCHAR) ### Question: Which Wins is the highest one that has a Pos of 2nd, and Poles larger than 2? ### Answer: SELECT MAX(wins) FROM table_name_3 WHERE pos = "2nd" AND poles > 2
What is the average of points for 8th place with draw more than 8?
CREATE TABLE table_name_55 (points INTEGER, place VARCHAR, draw VARCHAR)
SELECT AVG(points) FROM table_name_55 WHERE place = "8th" AND draw > 8
### Context: CREATE TABLE table_name_55 (points INTEGER, place VARCHAR, draw VARCHAR) ### Question: What is the average of points for 8th place with draw more than 8? ### Answer: SELECT AVG(points) FROM table_name_55 WHERE place = "8th" AND draw > 8
Which Points have a Game smaller than 8, and a Record of 1–0–0?
CREATE TABLE table_name_73 (points INTEGER, game VARCHAR, record VARCHAR)
SELECT SUM(points) FROM table_name_73 WHERE game < 8 AND record = "1–0–0"
### Context: CREATE TABLE table_name_73 (points INTEGER, game VARCHAR, record VARCHAR) ### Question: Which Points have a Game smaller than 8, and a Record of 1–0–0? ### Answer: SELECT SUM(points) FROM table_name_73 WHERE game < 8 AND record = "1–0–0"
Which Game has a Record of 5–3–1, and an October smaller than 29?
CREATE TABLE table_name_80 (game INTEGER, record VARCHAR, october VARCHAR)
SELECT SUM(game) FROM table_name_80 WHERE record = "5–3–1" AND october < 29
### Context: CREATE TABLE table_name_80 (game INTEGER, record VARCHAR, october VARCHAR) ### Question: Which Game has a Record of 5–3–1, and an October smaller than 29? ### Answer: SELECT SUM(game) FROM table_name_80 WHERE record = "5–3–1" AND october < 29
Which Game has a Score of 3–4?
CREATE TABLE table_name_76 (game INTEGER, score VARCHAR)
SELECT MIN(game) FROM table_name_76 WHERE score = "3–4"
### Context: CREATE TABLE table_name_76 (game INTEGER, score VARCHAR) ### Question: Which Game has a Score of 3–4? ### Answer: SELECT MIN(game) FROM table_name_76 WHERE score = "3–4"
Which Game has a Record of 4–2–1, and Points larger than 9?
CREATE TABLE table_name_19 (game INTEGER, record VARCHAR, points VARCHAR)
SELECT SUM(game) FROM table_name_19 WHERE record = "4–2–1" AND points > 9
### Context: CREATE TABLE table_name_19 (game INTEGER, record VARCHAR, points VARCHAR) ### Question: Which Game has a Record of 4–2–1, and Points larger than 9? ### Answer: SELECT SUM(game) FROM table_name_19 WHERE record = "4–2–1" AND points > 9
Which Nationality has a Position of defense, and a Player of nikita korovkin?
CREATE TABLE table_name_51 (nationality VARCHAR, position VARCHAR, player VARCHAR)
SELECT nationality FROM table_name_51 WHERE position = "defense" AND player = "nikita korovkin"
### Context: CREATE TABLE table_name_51 (nationality VARCHAR, position VARCHAR, player VARCHAR) ### Question: Which Nationality has a Position of defense, and a Player of nikita korovkin? ### Answer: SELECT nationality FROM table_name_51 WHERE position = "defense" AND player = "nikita korovkin"
Which Nationality has a Position of left wing?
CREATE TABLE table_name_99 (nationality VARCHAR, position VARCHAR)
SELECT nationality FROM table_name_99 WHERE position = "left wing"
### Context: CREATE TABLE table_name_99 (nationality VARCHAR, position VARCHAR) ### Question: Which Nationality has a Position of left wing? ### Answer: SELECT nationality FROM table_name_99 WHERE position = "left wing"
Which Player has a Position of forward?
CREATE TABLE table_name_18 (player VARCHAR, position VARCHAR)
SELECT player FROM table_name_18 WHERE position = "forward"
### Context: CREATE TABLE table_name_18 (player VARCHAR, position VARCHAR) ### Question: Which Player has a Position of forward? ### Answer: SELECT player FROM table_name_18 WHERE position = "forward"
Which Week 3 Sept 14 has a Week 6 Oct 5 of kansas (4-1)?
CREATE TABLE table_name_87 (week_3_sept_14 VARCHAR, week_6_oct_5 VARCHAR)
SELECT week_3_sept_14 FROM table_name_87 WHERE week_6_oct_5 = "kansas (4-1)"
### Context: CREATE TABLE table_name_87 (week_3_sept_14 VARCHAR, week_6_oct_5 VARCHAR) ### Question: Which Week 3 Sept 14 has a Week 6 Oct 5 of kansas (4-1)? ### Answer: SELECT week_3_sept_14 FROM table_name_87 WHERE week_6_oct_5 = "kansas (4-1)"
Which Week 2 Sept 7 has a Week 6 Oct 5 of wake forest (3-1)?
CREATE TABLE table_name_84 (week_2_sept_7 VARCHAR, week_6_oct_5 VARCHAR)
SELECT week_2_sept_7 FROM table_name_84 WHERE week_6_oct_5 = "wake forest (3-1)"
### Context: CREATE TABLE table_name_84 (week_2_sept_7 VARCHAR, week_6_oct_5 VARCHAR) ### Question: Which Week 2 Sept 7 has a Week 6 Oct 5 of wake forest (3-1)? ### Answer: SELECT week_2_sept_7 FROM table_name_84 WHERE week_6_oct_5 = "wake forest (3-1)"
Which Week 1 Sept 2 has a Week 3 Sept 14 of south florida (3-0)?
CREATE TABLE table_name_72 (week_1_sept_2 VARCHAR, week_3_sept_14 VARCHAR)
SELECT week_1_sept_2 FROM table_name_72 WHERE week_3_sept_14 = "south florida (3-0)"
### Context: CREATE TABLE table_name_72 (week_1_sept_2 VARCHAR, week_3_sept_14 VARCHAR) ### Question: Which Week 1 Sept 2 has a Week 3 Sept 14 of south florida (3-0)? ### Answer: SELECT week_1_sept_2 FROM table_name_72 WHERE week_3_sept_14 = "south florida (3-0)"
Which Week 7 Oct 12 has a Week 6 Oct 5 of boise state (4-0)?
CREATE TABLE table_name_23 (week_7_oct_12 VARCHAR, week_6_oct_5 VARCHAR)
SELECT week_7_oct_12 FROM table_name_23 WHERE week_6_oct_5 = "boise state (4-0)"
### Context: CREATE TABLE table_name_23 (week_7_oct_12 VARCHAR, week_6_oct_5 VARCHAR) ### Question: Which Week 7 Oct 12 has a Week 6 Oct 5 of boise state (4-0)? ### Answer: SELECT week_7_oct_12 FROM table_name_23 WHERE week_6_oct_5 = "boise state (4-0)"
Which Week 2 Sept 7 has a Week 7 Oct 12 of ball state (7-0)?
CREATE TABLE table_name_8 (week_2_sept_7 VARCHAR, week_7_oct_12 VARCHAR)
SELECT week_2_sept_7 FROM table_name_8 WHERE week_7_oct_12 = "ball state (7-0)"
### Context: CREATE TABLE table_name_8 (week_2_sept_7 VARCHAR, week_7_oct_12 VARCHAR) ### Question: Which Week 2 Sept 7 has a Week 7 Oct 12 of ball state (7-0)? ### Answer: SELECT week_2_sept_7 FROM table_name_8 WHERE week_7_oct_12 = "ball state (7-0)"
Which Week 6 Oct 5 has a Week 14 Nov 30 of texas (11-1)?
CREATE TABLE table_name_37 (week_6_oct_5 VARCHAR, week_14_nov_30 VARCHAR)
SELECT week_6_oct_5 FROM table_name_37 WHERE week_14_nov_30 = "texas (11-1)"
### Context: CREATE TABLE table_name_37 (week_6_oct_5 VARCHAR, week_14_nov_30 VARCHAR) ### Question: Which Week 6 Oct 5 has a Week 14 Nov 30 of texas (11-1)? ### Answer: SELECT week_6_oct_5 FROM table_name_37 WHERE week_14_nov_30 = "texas (11-1)"
What is the highest round of Tommy Allman, who had a pick less than 40?
CREATE TABLE table_name_27 (round INTEGER, player VARCHAR, pick VARCHAR)
SELECT MAX(round) FROM table_name_27 WHERE player = "tommy allman" AND pick < 40
### Context: CREATE TABLE table_name_27 (round INTEGER, player VARCHAR, pick VARCHAR) ### Question: What is the highest round of Tommy Allman, who had a pick less than 40? ### Answer: SELECT MAX(round) FROM table_name_27 WHERE player = "tommy allman" AND pick < 40
Who was the back player with a pick less than 183 from the round greater than 12?
CREATE TABLE table_name_41 (player VARCHAR, round VARCHAR, pick VARCHAR, position VARCHAR)
SELECT player FROM table_name_41 WHERE pick < 183 AND position = "back" AND round > 12
### Context: CREATE TABLE table_name_41 (player VARCHAR, round VARCHAR, pick VARCHAR, position VARCHAR) ### Question: Who was the back player with a pick less than 183 from the round greater than 12? ### Answer: SELECT player FROM table_name_41 WHERE pick < 183 AND position = "back" AND round > 12
What is the total number of rounds of the end player with a pick number greater than 303?
CREATE TABLE table_name_21 (round VARCHAR, pick VARCHAR, position VARCHAR)
SELECT COUNT(round) FROM table_name_21 WHERE pick > 303 AND position = "end"
### Context: CREATE TABLE table_name_21 (round VARCHAR, pick VARCHAR, position VARCHAR) ### Question: What is the total number of rounds of the end player with a pick number greater than 303? ### Answer: SELECT COUNT(round) FROM table_name_21 WHERE pick > 303 AND position = "end"
What is the highest pick of the back player from round 28?
CREATE TABLE table_name_42 (pick INTEGER, position VARCHAR, round VARCHAR)
SELECT MAX(pick) FROM table_name_42 WHERE position = "back" AND round = 28
### Context: CREATE TABLE table_name_42 (pick INTEGER, position VARCHAR, round VARCHAR) ### Question: What is the highest pick of the back player from round 28? ### Answer: SELECT MAX(pick) FROM table_name_42 WHERE position = "back" AND round = 28
What is position of the player with a pick number greater than 315 and a round of 30?
CREATE TABLE table_name_51 (position VARCHAR, pick VARCHAR, round VARCHAR)
SELECT position FROM table_name_51 WHERE pick > 315 AND round = 30
### Context: CREATE TABLE table_name_51 (position VARCHAR, pick VARCHAR, round VARCHAR) ### Question: What is position of the player with a pick number greater than 315 and a round of 30? ### Answer: SELECT position FROM table_name_51 WHERE pick > 315 AND round = 30
On what Week was the Result W 17-14?
CREATE TABLE table_name_4 (week INTEGER, result VARCHAR)
SELECT AVG(week) FROM table_name_4 WHERE result = "w 17-14"
### Context: CREATE TABLE table_name_4 (week INTEGER, result VARCHAR) ### Question: On what Week was the Result W 17-14? ### Answer: SELECT AVG(week) FROM table_name_4 WHERE result = "w 17-14"
What was the Result after the Week 4 on November 3, 1968?
CREATE TABLE table_name_27 (result VARCHAR, week VARCHAR, date VARCHAR)
SELECT result FROM table_name_27 WHERE week > 4 AND date = "november 3, 1968"
### Context: CREATE TABLE table_name_27 (result VARCHAR, week VARCHAR, date VARCHAR) ### Question: What was the Result after the Week 4 on November 3, 1968? ### Answer: SELECT result FROM table_name_27 WHERE week > 4 AND date = "november 3, 1968"
What is the attendance in week 4?
CREATE TABLE table_name_57 (attendance INTEGER, week VARCHAR)
SELECT AVG(attendance) FROM table_name_57 WHERE week = 4
### Context: CREATE TABLE table_name_57 (attendance INTEGER, week VARCHAR) ### Question: What is the attendance in week 4? ### Answer: SELECT AVG(attendance) FROM table_name_57 WHERE week = 4
What was the date of the game with a record of 17–25?
CREATE TABLE table_name_16 (date VARCHAR, record VARCHAR)
SELECT date FROM table_name_16 WHERE record = "17–25"
### Context: CREATE TABLE table_name_16 (date VARCHAR, record VARCHAR) ### Question: What was the date of the game with a record of 17–25? ### Answer: SELECT date FROM table_name_16 WHERE record = "17–25"
Who was the opponent at the game with a score of 6–5 (10)?
CREATE TABLE table_name_47 (opponent VARCHAR, score VARCHAR)
SELECT opponent FROM table_name_47 WHERE score = "6–5 (10)"
### Context: CREATE TABLE table_name_47 (opponent VARCHAR, score VARCHAR) ### Question: Who was the opponent at the game with a score of 6–5 (10)? ### Answer: SELECT opponent FROM table_name_47 WHERE score = "6–5 (10)"