question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
What is the highest track for the song Rip it Up?
CREATE TABLE table_name_87 (track INTEGER, song_title VARCHAR)
SELECT MAX(track) FROM table_name_87 WHERE song_title = "rip it up"
### Context: CREATE TABLE table_name_87 (track INTEGER, song_title VARCHAR) ### Question: What is the highest track for the song Rip it Up? ### Answer: SELECT MAX(track) FROM table_name_87 WHERE song_title = "rip it up"
What is the sum of every track with a catalogue of EPA 4054 with a 2:05 length?
CREATE TABLE table_name_12 (track INTEGER, catalogue VARCHAR, time VARCHAR)
SELECT SUM(track) FROM table_name_12 WHERE catalogue = "epa 4054" AND time = "2:05"
### Context: CREATE TABLE table_name_12 (track INTEGER, catalogue VARCHAR, time VARCHAR) ### Question: What is the sum of every track with a catalogue of EPA 4054 with a 2:05 length? ### Answer: SELECT SUM(track) FROM table_name_12 WHERE catalogue = "epa 4054" AND time = "2:05"
What catalogue has a length of 2:10?
CREATE TABLE table_name_82 (catalogue VARCHAR, time VARCHAR)
SELECT catalogue FROM table_name_82 WHERE time = "2:10"
### Context: CREATE TABLE table_name_82 (catalogue VARCHAR, time VARCHAR) ### Question: What catalogue has a length of 2:10? ### Answer: SELECT catalogue FROM table_name_82 WHERE time = "2:10"
When was the release date of a track greater than 4, 1/12/57 recorded, and a length of 2:31?
CREATE TABLE table_name_59 (release_date VARCHAR, time VARCHAR, track VARCHAR, recorded VARCHAR)
SELECT release_date FROM table_name_59 WHERE track > 4 AND recorded = "1/12/57" AND time = "2:31"
### Context: CREATE TABLE table_name_59 (release_date VARCHAR, time VARCHAR, track VARCHAR, recorded VARCHAR) ### Question: When was the release date of a track greater than 4, 1/12/57 recorded, and a length of 2:31? ### Answer: SELECT release_date FROM table_name_59 WHERE track > 4 AND recorded = "1/12/57" AND time = "2:31"
When was the cataglogue EPA 4054 released with a 1/12/57 recorded?
CREATE TABLE table_name_31 (release_date VARCHAR, catalogue VARCHAR, recorded VARCHAR)
SELECT release_date FROM table_name_31 WHERE catalogue = "epa 4054" AND recorded = "1/12/57"
### Context: CREATE TABLE table_name_31 (release_date VARCHAR, catalogue VARCHAR, recorded VARCHAR) ### Question: When was the cataglogue EPA 4054 released with a 1/12/57 recorded? ### Answer: SELECT release_date FROM table_name_31 WHERE catalogue = "epa 4054" AND recorded = "1/12/57"
Tell me the school with a height of 6-9
CREATE TABLE table_name_82 (school VARCHAR, height VARCHAR)
SELECT school FROM table_name_82 WHERE height = "6-9"
### Context: CREATE TABLE table_name_82 (school VARCHAR, height VARCHAR) ### Question: Tell me the school with a height of 6-9 ### Answer: SELECT school FROM table_name_82 WHERE height = "6-9"
Which school did the player have a height of 6-4?
CREATE TABLE table_name_65 (school VARCHAR, height VARCHAR)
SELECT school FROM table_name_65 WHERE height = "6-4"
### Context: CREATE TABLE table_name_65 (school VARCHAR, height VARCHAR) ### Question: Which school did the player have a height of 6-4? ### Answer: SELECT school FROM table_name_65 WHERE height = "6-4"
Tell me the college that paul davis went to
CREATE TABLE table_name_32 (college VARCHAR, player VARCHAR)
SELECT college FROM table_name_32 WHERE player = "paul davis"
### Context: CREATE TABLE table_name_32 (college VARCHAR, player VARCHAR) ### Question: Tell me the college that paul davis went to ### Answer: SELECT college FROM table_name_32 WHERE player = "paul davis"
Tell me the school that jason fraser went to
CREATE TABLE table_name_14 (school VARCHAR, player VARCHAR)
SELECT school FROM table_name_14 WHERE player = "jason fraser"
### Context: CREATE TABLE table_name_14 (school VARCHAR, player VARCHAR) ### Question: Tell me the school that jason fraser went to ### Answer: SELECT school FROM table_name_14 WHERE player = "jason fraser"
What is the result of the game with 68,436 attending?
CREATE TABLE table_name_98 (result VARCHAR, attendance VARCHAR)
SELECT result FROM table_name_98 WHERE attendance = "68,436"
### Context: CREATE TABLE table_name_98 (result VARCHAR, attendance VARCHAR) ### Question: What is the result of the game with 68,436 attending? ### Answer: SELECT result FROM table_name_98 WHERE attendance = "68,436"
What is the NBA Draft status of the person who went to college at LSU?
CREATE TABLE table_name_38 (nba_draft VARCHAR, college VARCHAR)
SELECT nba_draft FROM table_name_38 WHERE college = "lsu"
### Context: CREATE TABLE table_name_38 (nba_draft VARCHAR, college VARCHAR) ### Question: What is the NBA Draft status of the person who went to college at LSU? ### Answer: SELECT nba_draft FROM table_name_38 WHERE college = "lsu"
What is Player Kenny Williams' Height?
CREATE TABLE table_name_53 (height VARCHAR, player VARCHAR)
SELECT height FROM table_name_53 WHERE player = "kenny williams"
### Context: CREATE TABLE table_name_53 (height VARCHAR, player VARCHAR) ### Question: What is Player Kenny Williams' Height? ### Answer: SELECT height FROM table_name_53 WHERE player = "kenny williams"
What School did Player Billy Owens attend?
CREATE TABLE table_name_37 (school VARCHAR, player VARCHAR)
SELECT school FROM table_name_37 WHERE player = "billy owens"
### Context: CREATE TABLE table_name_37 (school VARCHAR, player VARCHAR) ### Question: What School did Player Billy Owens attend? ### Answer: SELECT school FROM table_name_37 WHERE player = "billy owens"
What School did Player Alonzo Mourning attend?
CREATE TABLE table_name_74 (school VARCHAR, player VARCHAR)
SELECT school FROM table_name_74 WHERE player = "alonzo mourning"
### Context: CREATE TABLE table_name_74 (school VARCHAR, player VARCHAR) ### Question: What School did Player Alonzo Mourning attend? ### Answer: SELECT school FROM table_name_74 WHERE player = "alonzo mourning"
How many bronze's on average for nations with over 1 total, less than 2 golds, ranked 2nd?
CREATE TABLE table_name_16 (bronze INTEGER, rank VARCHAR, total VARCHAR, gold VARCHAR)
SELECT AVG(bronze) FROM table_name_16 WHERE total > 1 AND gold < 2 AND rank = 2
### Context: CREATE TABLE table_name_16 (bronze INTEGER, rank VARCHAR, total VARCHAR, gold VARCHAR) ### Question: How many bronze's on average for nations with over 1 total, less than 2 golds, ranked 2nd? ### Answer: SELECT AVG(bronze) FROM table_name_16 WHERE total > 1 AND gold < 2 AND rank = 2
How many silvers on average for nations with less than 3 total, ranked 6, and over 1 bronze?
CREATE TABLE table_name_89 (silver INTEGER, bronze VARCHAR, total VARCHAR, rank VARCHAR)
SELECT AVG(silver) FROM table_name_89 WHERE total < 3 AND rank = 6 AND bronze > 1
### Context: CREATE TABLE table_name_89 (silver INTEGER, bronze VARCHAR, total VARCHAR, rank VARCHAR) ### Question: How many silvers on average for nations with less than 3 total, ranked 6, and over 1 bronze? ### Answer: SELECT AVG(silver) FROM table_name_89 WHERE total < 3 AND rank = 6 AND bronze > 1
What is the date of the Cubs game when the Cubs had a record of 1-0?
CREATE TABLE table_name_2 (date VARCHAR, record VARCHAR)
SELECT date FROM table_name_2 WHERE record = "1-0"
### Context: CREATE TABLE table_name_2 (date VARCHAR, record VARCHAR) ### Question: What is the date of the Cubs game when the Cubs had a record of 1-0? ### Answer: SELECT date FROM table_name_2 WHERE record = "1-0"
Who did the Cubs play when they had a record of 4-4?
CREATE TABLE table_name_56 (opponent VARCHAR, record VARCHAR)
SELECT opponent FROM table_name_56 WHERE record = "4-4"
### Context: CREATE TABLE table_name_56 (opponent VARCHAR, record VARCHAR) ### Question: Who did the Cubs play when they had a record of 4-4? ### Answer: SELECT opponent FROM table_name_56 WHERE record = "4-4"
What is the frequency of WMAD?
CREATE TABLE table_name_21 (frequency VARCHAR, call_letters VARCHAR)
SELECT frequency FROM table_name_21 WHERE call_letters = "wmad"
### Context: CREATE TABLE table_name_21 (frequency VARCHAR, call_letters VARCHAR) ### Question: What is the frequency of WMAD? ### Answer: SELECT frequency FROM table_name_21 WHERE call_letters = "wmad"
Name the lfop 5/11/09 with opinion way of 5/11/09 of 2% and lpsos 3/14/09 of 2%
CREATE TABLE table_name_23 (ifop_5_11_09 VARCHAR, opinionway_5_11_09 VARCHAR, ipsos_3_14_09 VARCHAR)
SELECT ifop_5_11_09 FROM table_name_23 WHERE opinionway_5_11_09 = "2%" AND ipsos_3_14_09 = "2%"
### Context: CREATE TABLE table_name_23 (ifop_5_11_09 VARCHAR, opinionway_5_11_09 VARCHAR, ipsos_3_14_09 VARCHAR) ### Question: Name the lfop 5/11/09 with opinion way of 5/11/09 of 2% and lpsos 3/14/09 of 2% ### Answer: SELECT ifop_5_11_09 FROM table_name_23 WHERE opinionway_5_11_09 = "2%" AND ipsos_3_14_09 = "2%"
Name the lfop 4/24/09 for opinionway of 4/17/09 of 5% for party of left front
CREATE TABLE table_name_43 (ifop_4_24_09 VARCHAR, opinionway_4_17_09 VARCHAR, party VARCHAR)
SELECT ifop_4_24_09 FROM table_name_43 WHERE opinionway_4_17_09 = "5%" AND party = "left front"
### Context: CREATE TABLE table_name_43 (ifop_4_24_09 VARCHAR, opinionway_4_17_09 VARCHAR, party VARCHAR) ### Question: Name the lfop 4/24/09 for opinionway of 4/17/09 of 5% for party of left front ### Answer: SELECT ifop_4_24_09 FROM table_name_43 WHERE opinionway_4_17_09 = "5%" AND party = "left front"
Name the lfop for 5/11/09 with lfop 1/9/09 of 5%
CREATE TABLE table_name_18 (ifop_5_11_09 VARCHAR, ifop_1_9_09 VARCHAR)
SELECT ifop_5_11_09 FROM table_name_18 WHERE ifop_1_9_09 = "5%"
### Context: CREATE TABLE table_name_18 (ifop_5_11_09 VARCHAR, ifop_1_9_09 VARCHAR) ### Question: Name the lfop for 5/11/09 with lfop 1/9/09 of 5% ### Answer: SELECT ifop_5_11_09 FROM table_name_18 WHERE ifop_1_9_09 = "5%"
Name the csa 4/16/09 for opinionway being 4/17/09 of 12%
CREATE TABLE table_name_17 (csa_4_16_09 VARCHAR, opinionway_4_17_09 VARCHAR)
SELECT csa_4_16_09 FROM table_name_17 WHERE opinionway_4_17_09 = "12%"
### Context: CREATE TABLE table_name_17 (csa_4_16_09 VARCHAR, opinionway_4_17_09 VARCHAR) ### Question: Name the csa 4/16/09 for opinionway being 4/17/09 of 12% ### Answer: SELECT csa_4_16_09 FROM table_name_17 WHERE opinionway_4_17_09 = "12%"
Name the lpsos 3/14/09 for opinionway of 4/17/09 of 5% and lfof 11/12/08 of 7%
CREATE TABLE table_name_33 (ipsos_3_14_09 VARCHAR, ifop_11_12_08 VARCHAR, opinionway_4_17_09 VARCHAR)
SELECT ipsos_3_14_09 FROM table_name_33 WHERE ifop_11_12_08 = "7%" AND opinionway_4_17_09 = "5%"
### Context: CREATE TABLE table_name_33 (ipsos_3_14_09 VARCHAR, ifop_11_12_08 VARCHAR, opinionway_4_17_09 VARCHAR) ### Question: Name the lpsos 3/14/09 for opinionway of 4/17/09 of 5% and lfof 11/12/08 of 7% ### Answer: SELECT ipsos_3_14_09 FROM table_name_33 WHERE ifop_11_12_08 = "7%" AND opinionway_4_17_09 = "5%"
Name the 2004 results for npa
CREATE TABLE table_name_18 (results_2004 VARCHAR, party VARCHAR)
SELECT results_2004 FROM table_name_18 WHERE party = "npa"
### Context: CREATE TABLE table_name_18 (results_2004 VARCHAR, party VARCHAR) ### Question: Name the 2004 results for npa ### Answer: SELECT results_2004 FROM table_name_18 WHERE party = "npa"
What was the decision when Tampa Bay was the visitor?
CREATE TABLE table_name_14 (decision VARCHAR, visitor VARCHAR)
SELECT decision FROM table_name_14 WHERE visitor = "tampa bay"
### Context: CREATE TABLE table_name_14 (decision VARCHAR, visitor VARCHAR) ### Question: What was the decision when Tampa Bay was the visitor? ### Answer: SELECT decision FROM table_name_14 WHERE visitor = "tampa bay"
Which visitor visited on February 21?
CREATE TABLE table_name_14 (visitor VARCHAR, date VARCHAR)
SELECT visitor FROM table_name_14 WHERE date = "february 21"
### Context: CREATE TABLE table_name_14 (visitor VARCHAR, date VARCHAR) ### Question: Which visitor visited on February 21? ### Answer: SELECT visitor FROM table_name_14 WHERE date = "february 21"
What date is the Victoria Park venue?
CREATE TABLE table_name_3 (date VARCHAR, venue VARCHAR)
SELECT date FROM table_name_3 WHERE venue = "victoria park"
### Context: CREATE TABLE table_name_3 (date VARCHAR, venue VARCHAR) ### Question: What date is the Victoria Park venue? ### Answer: SELECT date FROM table_name_3 WHERE venue = "victoria park"
What Away team is from Fitzroy?
CREATE TABLE table_name_16 (away_team VARCHAR, home_team VARCHAR)
SELECT away_team FROM table_name_16 WHERE home_team = "fitzroy"
### Context: CREATE TABLE table_name_16 (away_team VARCHAR, home_team VARCHAR) ### Question: What Away team is from Fitzroy? ### Answer: SELECT away_team FROM table_name_16 WHERE home_team = "fitzroy"
Who was the home team that played the Lakers?
CREATE TABLE table_name_85 (home VARCHAR, visitor VARCHAR)
SELECT home FROM table_name_85 WHERE visitor = "lakers"
### Context: CREATE TABLE table_name_85 (home VARCHAR, visitor VARCHAR) ### Question: Who was the home team that played the Lakers? ### Answer: SELECT home FROM table_name_85 WHERE visitor = "lakers"
Which tournament had a 2008 result of 1R?
CREATE TABLE table_name_85 (tournament VARCHAR)
SELECT tournament FROM table_name_85 WHERE 2006 = "a" AND 2008 = "1r"
### Context: CREATE TABLE table_name_85 (tournament VARCHAR) ### Question: Which tournament had a 2008 result of 1R? ### Answer: SELECT tournament FROM table_name_85 WHERE 2006 = "a" AND 2008 = "1r"
Which tournament in 2012 had a 2007 and 2011 finishes of "A"?
CREATE TABLE table_name_91 (Id VARCHAR)
SELECT 2012 FROM table_name_91 WHERE 2007 = "a" AND 2011 = "a"
### Context: CREATE TABLE table_name_91 (Id VARCHAR) ### Question: Which tournament in 2012 had a 2007 and 2011 finishes of "A"? ### Answer: SELECT 2012 FROM table_name_91 WHERE 2007 = "a" AND 2011 = "a"
Which tournament in 2013 had a 2010 finish of 1R?
CREATE TABLE table_name_44 (Id VARCHAR)
SELECT 2013 FROM table_name_44 WHERE 2006 = "a" AND 2010 = "1r"
### Context: CREATE TABLE table_name_44 (Id VARCHAR) ### Question: Which tournament in 2013 had a 2010 finish of 1R? ### Answer: SELECT 2013 FROM table_name_44 WHERE 2006 = "a" AND 2010 = "1r"
Which home team score has an Away team of melbourne?
CREATE TABLE table_name_71 (home_team VARCHAR, away_team VARCHAR)
SELECT home_team AS score FROM table_name_71 WHERE away_team = "melbourne"
### Context: CREATE TABLE table_name_71 (home_team VARCHAR, away_team VARCHAR) ### Question: Which home team score has an Away team of melbourne? ### Answer: SELECT home_team AS score FROM table_name_71 WHERE away_team = "melbourne"
What is the highest crowd for Home team of geelong?
CREATE TABLE table_name_47 (crowd INTEGER, home_team VARCHAR)
SELECT MAX(crowd) FROM table_name_47 WHERE home_team = "geelong"
### Context: CREATE TABLE table_name_47 (crowd INTEGER, home_team VARCHAR) ### Question: What is the highest crowd for Home team of geelong? ### Answer: SELECT MAX(crowd) FROM table_name_47 WHERE home_team = "geelong"
What is the year when the performance is 60.73m and the age (years) is more than 45?
CREATE TABLE table_name_85 (year VARCHAR, performance VARCHAR, age__years_ VARCHAR)
SELECT COUNT(year) FROM table_name_85 WHERE performance = "60.73m" AND age__years_ > 45
### Context: CREATE TABLE table_name_85 (year VARCHAR, performance VARCHAR, age__years_ VARCHAR) ### Question: What is the year when the performance is 60.73m and the age (years) is more than 45? ### Answer: SELECT COUNT(year) FROM table_name_85 WHERE performance = "60.73m" AND age__years_ > 45
What is the highest age (years) that the 1st place had a performance of 62.20m?
CREATE TABLE table_name_45 (age__years_ INTEGER, place VARCHAR, performance VARCHAR)
SELECT MAX(age__years_) FROM table_name_45 WHERE place = "1st" AND performance = "62.20m"
### Context: CREATE TABLE table_name_45 (age__years_ INTEGER, place VARCHAR, performance VARCHAR) ### Question: What is the highest age (years) that the 1st place had a performance of 62.20m? ### Answer: SELECT MAX(age__years_) FROM table_name_45 WHERE place = "1st" AND performance = "62.20m"
What is the place when the performance is 60.73m?
CREATE TABLE table_name_65 (place VARCHAR, performance VARCHAR)
SELECT place FROM table_name_65 WHERE performance = "60.73m"
### Context: CREATE TABLE table_name_65 (place VARCHAR, performance VARCHAR) ### Question: What is the place when the performance is 60.73m? ### Answer: SELECT place FROM table_name_65 WHERE performance = "60.73m"
Name the kaz hayashi with block A of Shuji Kondo
CREATE TABLE table_name_47 (kaz_hayashi VARCHAR, block_a VARCHAR)
SELECT kaz_hayashi FROM table_name_47 WHERE block_a = "shuji kondo"
### Context: CREATE TABLE table_name_47 (kaz_hayashi VARCHAR, block_a VARCHAR) ### Question: Name the kaz hayashi with block A of Shuji Kondo ### Answer: SELECT kaz_hayashi FROM table_name_47 WHERE block_a = "shuji kondo"
Name the block A for shuji kondo
CREATE TABLE table_name_93 (block_a VARCHAR, toshizo VARCHAR)
SELECT block_a FROM table_name_93 WHERE toshizo = "shuji kondo"
### Context: CREATE TABLE table_name_93 (block_a VARCHAR, toshizo VARCHAR) ### Question: Name the block A for shuji kondo ### Answer: SELECT block_a FROM table_name_93 WHERE toshizo = "shuji kondo"
Name the NOSAWA Rongai for petey williams
CREATE TABLE table_name_97 (nosawa_rongai VARCHAR, block_a VARCHAR)
SELECT nosawa_rongai FROM table_name_97 WHERE block_a = "petey williams"
### Context: CREATE TABLE table_name_97 (nosawa_rongai VARCHAR, block_a VARCHAR) ### Question: Name the NOSAWA Rongai for petey williams ### Answer: SELECT nosawa_rongai FROM table_name_97 WHERE block_a = "petey williams"
What was the score when Nannette Hill was the champion?
CREATE TABLE table_name_61 (score VARCHAR, champion VARCHAR)
SELECT score FROM table_name_61 WHERE champion = "nannette hill"
### Context: CREATE TABLE table_name_61 (score VARCHAR, champion VARCHAR) ### Question: What was the score when Nannette Hill was the champion? ### Answer: SELECT score FROM table_name_61 WHERE champion = "nannette hill"
What score did the opposing home team have against Melbourne
CREATE TABLE table_name_74 (home_team VARCHAR, away_team VARCHAR)
SELECT home_team AS score FROM table_name_74 WHERE away_team = "melbourne"
### Context: CREATE TABLE table_name_74 (home_team VARCHAR, away_team VARCHAR) ### Question: What score did the opposing home team have against Melbourne ### Answer: SELECT home_team AS score FROM table_name_74 WHERE away_team = "melbourne"
Name the venue where St Kilda was the opposing away team
CREATE TABLE table_name_76 (venue VARCHAR, away_team VARCHAR)
SELECT venue FROM table_name_76 WHERE away_team = "st kilda"
### Context: CREATE TABLE table_name_76 (venue VARCHAR, away_team VARCHAR) ### Question: Name the venue where St Kilda was the opposing away team ### Answer: SELECT venue FROM table_name_76 WHERE away_team = "st kilda"
Which Date has a Venue of lake oval?
CREATE TABLE table_name_36 (date VARCHAR, venue VARCHAR)
SELECT date FROM table_name_36 WHERE venue = "lake oval"
### Context: CREATE TABLE table_name_36 (date VARCHAR, venue VARCHAR) ### Question: Which Date has a Venue of lake oval? ### Answer: SELECT date FROM table_name_36 WHERE venue = "lake oval"
Which Crowd has an Away team of collingwood?
CREATE TABLE table_name_79 (crowd INTEGER, away_team VARCHAR)
SELECT SUM(crowd) FROM table_name_79 WHERE away_team = "collingwood"
### Context: CREATE TABLE table_name_79 (crowd INTEGER, away_team VARCHAR) ### Question: Which Crowd has an Away team of collingwood? ### Answer: SELECT SUM(crowd) FROM table_name_79 WHERE away_team = "collingwood"
When Steve Hazlett is the Player, and the PI GP is under 0, what is the average Rd #?
CREATE TABLE table_name_82 (rd__number INTEGER, player VARCHAR, pl_gp VARCHAR)
SELECT AVG(rd__number) FROM table_name_82 WHERE player = "steve hazlett" AND pl_gp < 0
### Context: CREATE TABLE table_name_82 (rd__number INTEGER, player VARCHAR, pl_gp VARCHAR) ### Question: When Steve Hazlett is the Player, and the PI GP is under 0, what is the average Rd #? ### Answer: SELECT AVG(rd__number) FROM table_name_82 WHERE player = "steve hazlett" AND pl_gp < 0
Which Player has a PI GP over 0 and a Rd # of 1?
CREATE TABLE table_name_71 (player VARCHAR, pl_gp VARCHAR, rd__number VARCHAR)
SELECT player FROM table_name_71 WHERE pl_gp > 0 AND rd__number = 1
### Context: CREATE TABLE table_name_71 (player VARCHAR, pl_gp VARCHAR, rd__number VARCHAR) ### Question: Which Player has a PI GP over 0 and a Rd # of 1? ### Answer: SELECT player FROM table_name_71 WHERE pl_gp > 0 AND rd__number = 1
Which Pick # is the highest and has the Rd # is under 1?
CREATE TABLE table_name_9 (pick__number INTEGER, rd__number INTEGER)
SELECT MAX(pick__number) FROM table_name_9 WHERE rd__number < 1
### Context: CREATE TABLE table_name_9 (pick__number INTEGER, rd__number INTEGER) ### Question: Which Pick # is the highest and has the Rd # is under 1? ### Answer: SELECT MAX(pick__number) FROM table_name_9 WHERE rd__number < 1
What is the lowest PI GP when the Reg GP is 1, Murray Bannerman is the Player, and the Pick # is under 58?
CREATE TABLE table_name_53 (pl_gp INTEGER, pick__number VARCHAR, reg_gp VARCHAR, player VARCHAR)
SELECT MIN(pl_gp) FROM table_name_53 WHERE reg_gp = 1 AND player = "murray bannerman" AND pick__number < 58
### Context: CREATE TABLE table_name_53 (pl_gp INTEGER, pick__number VARCHAR, reg_gp VARCHAR, player VARCHAR) ### Question: What is the lowest PI GP when the Reg GP is 1, Murray Bannerman is the Player, and the Pick # is under 58? ### Answer: SELECT MIN(pl_gp) FROM table_name_53 WHERE reg_gp = 1 AND player = "murray bannerman" AND pick__number < 58
Tell me the average top 25 with events of 5 and cuts madde less than 3
CREATE TABLE table_name_33 (top_25 INTEGER, events VARCHAR, cuts_made VARCHAR)
SELECT AVG(top_25) FROM table_name_33 WHERE events = 5 AND cuts_made < 3
### Context: CREATE TABLE table_name_33 (top_25 INTEGER, events VARCHAR, cuts_made VARCHAR) ### Question: Tell me the average top 25 with events of 5 and cuts madde less than 3 ### Answer: SELECT AVG(top_25) FROM table_name_33 WHERE events = 5 AND cuts_made < 3
Tell me the highest cuts made with wins more than 1
CREATE TABLE table_name_5 (cuts_made INTEGER, wins INTEGER)
SELECT MAX(cuts_made) FROM table_name_5 WHERE wins > 1
### Context: CREATE TABLE table_name_5 (cuts_made INTEGER, wins INTEGER) ### Question: Tell me the highest cuts made with wins more than 1 ### Answer: SELECT MAX(cuts_made) FROM table_name_5 WHERE wins > 1
I want to know the highest wins for cuts made more than 5
CREATE TABLE table_name_71 (wins INTEGER, cuts_made INTEGER)
SELECT MAX(wins) FROM table_name_71 WHERE cuts_made > 5
### Context: CREATE TABLE table_name_71 (wins INTEGER, cuts_made INTEGER) ### Question: I want to know the highest wins for cuts made more than 5 ### Answer: SELECT MAX(wins) FROM table_name_71 WHERE cuts_made > 5
Tell me the sum of top 5 with events less than 12 and top 25 less than 0
CREATE TABLE table_name_98 (top_5 INTEGER, events VARCHAR, top_25 VARCHAR)
SELECT SUM(top_5) FROM table_name_98 WHERE events < 12 AND top_25 < 0
### Context: CREATE TABLE table_name_98 (top_5 INTEGER, events VARCHAR, top_25 VARCHAR) ### Question: Tell me the sum of top 5 with events less than 12 and top 25 less than 0 ### Answer: SELECT SUM(top_5) FROM table_name_98 WHERE events < 12 AND top_25 < 0
What was the biggest crowd when South Melbourne was an away team?
CREATE TABLE table_name_94 (crowd INTEGER, away_team VARCHAR)
SELECT MAX(crowd) FROM table_name_94 WHERE away_team = "south melbourne"
### Context: CREATE TABLE table_name_94 (crowd INTEGER, away_team VARCHAR) ### Question: What was the biggest crowd when South Melbourne was an away team? ### Answer: SELECT MAX(crowd) FROM table_name_94 WHERE away_team = "south melbourne"
How many people attended the game on 8 March 2008?
CREATE TABLE table_name_9 (attendance INTEGER, date VARCHAR)
SELECT SUM(attendance) FROM table_name_9 WHERE date = "8 march 2008"
### Context: CREATE TABLE table_name_9 (attendance INTEGER, date VARCHAR) ### Question: How many people attended the game on 8 March 2008? ### Answer: SELECT SUM(attendance) FROM table_name_9 WHERE date = "8 march 2008"
What is the Away team score when they played Geelong as the Home team?
CREATE TABLE table_name_15 (away_team VARCHAR, home_team VARCHAR)
SELECT away_team AS score FROM table_name_15 WHERE home_team = "geelong"
### Context: CREATE TABLE table_name_15 (away_team VARCHAR, home_team VARCHAR) ### Question: What is the Away team score when they played Geelong as the Home team? ### Answer: SELECT away_team AS score FROM table_name_15 WHERE home_team = "geelong"
What did Carlton score when they were the Home team?
CREATE TABLE table_name_73 (home_team VARCHAR)
SELECT home_team AS score FROM table_name_73 WHERE home_team = "carlton"
### Context: CREATE TABLE table_name_73 (home_team VARCHAR) ### Question: What did Carlton score when they were the Home team? ### Answer: SELECT home_team AS score FROM table_name_73 WHERE home_team = "carlton"
What is the name of the Home team that played Fitzroy as the Away team?
CREATE TABLE table_name_53 (home_team VARCHAR, away_team VARCHAR)
SELECT home_team FROM table_name_53 WHERE away_team = "fitzroy"
### Context: CREATE TABLE table_name_53 (home_team VARCHAR, away_team VARCHAR) ### Question: What is the name of the Home team that played Fitzroy as the Away team? ### Answer: SELECT home_team FROM table_name_53 WHERE away_team = "fitzroy"
What is the total number of points when the grade was A?
CREATE TABLE table_name_31 (points INTEGER, grade VARCHAR)
SELECT SUM(points) FROM table_name_31 WHERE grade = "a"
### Context: CREATE TABLE table_name_31 (points INTEGER, grade VARCHAR) ### Question: What is the total number of points when the grade was A? ### Answer: SELECT SUM(points) FROM table_name_31 WHERE grade = "a"
Which standing broad jump (cm) had the b grade?
CREATE TABLE table_name_67 (standing_broad_jump__cm_ VARCHAR, grade VARCHAR)
SELECT standing_broad_jump__cm_ FROM table_name_67 WHERE grade = "b"
### Context: CREATE TABLE table_name_67 (standing_broad_jump__cm_ VARCHAR, grade VARCHAR) ### Question: Which standing broad jump (cm) had the b grade? ### Answer: SELECT standing_broad_jump__cm_ FROM table_name_67 WHERE grade = "b"
Which grade did the chin-up (reps) 9-10 receive?
CREATE TABLE table_name_54 (grade VARCHAR, chin_up__reps_ VARCHAR)
SELECT grade FROM table_name_54 WHERE chin_up__reps_ = "9-10"
### Context: CREATE TABLE table_name_54 (grade VARCHAR, chin_up__reps_ VARCHAR) ### Question: Which grade did the chin-up (reps) 9-10 receive? ### Answer: SELECT grade FROM table_name_54 WHERE chin_up__reps_ = "9-10"
What year was the comp 33?
CREATE TABLE table_name_99 (year VARCHAR, comp VARCHAR)
SELECT year FROM table_name_99 WHERE comp = "33"
### Context: CREATE TABLE table_name_99 (year VARCHAR, comp VARCHAR) ### Question: What year was the comp 33? ### Answer: SELECT year FROM table_name_99 WHERE comp = "33"
In 1984, what was the RAvg?
CREATE TABLE table_name_51 (ravg VARCHAR, year VARCHAR)
SELECT ravg FROM table_name_51 WHERE year = "1984"
### Context: CREATE TABLE table_name_51 (ravg VARCHAR, year VARCHAR) ### Question: In 1984, what was the RAvg? ### Answer: SELECT ravg FROM table_name_51 WHERE year = "1984"
In 1983, what was the RAtt?
CREATE TABLE table_name_85 (ratt VARCHAR, year VARCHAR)
SELECT ratt FROM table_name_85 WHERE year = "1983"
### Context: CREATE TABLE table_name_85 (ratt VARCHAR, year VARCHAR) ### Question: In 1983, what was the RAtt? ### Answer: SELECT ratt FROM table_name_85 WHERE year = "1983"
What team has a 94.1 rating?
CREATE TABLE table_name_67 (team VARCHAR, rate VARCHAR)
SELECT team FROM table_name_67 WHERE rate = "94.1"
### Context: CREATE TABLE table_name_67 (team VARCHAR, rate VARCHAR) ### Question: What team has a 94.1 rating? ### Answer: SELECT team FROM table_name_67 WHERE rate = "94.1"
What year has a RAtt of 1 and a comp of 49?
CREATE TABLE table_name_60 (year VARCHAR, ratt VARCHAR, comp VARCHAR)
SELECT year FROM table_name_60 WHERE ratt = "1" AND comp = "49"
### Context: CREATE TABLE table_name_60 (year VARCHAR, ratt VARCHAR, comp VARCHAR) ### Question: What year has a RAtt of 1 and a comp of 49? ### Answer: SELECT year FROM table_name_60 WHERE ratt = "1" AND comp = "49"
Who recorded the loss on august 7?
CREATE TABLE table_name_98 (loss VARCHAR, date VARCHAR)
SELECT loss FROM table_name_98 WHERE date = "august 7"
### Context: CREATE TABLE table_name_98 (loss VARCHAR, date VARCHAR) ### Question: Who recorded the loss on august 7? ### Answer: SELECT loss FROM table_name_98 WHERE date = "august 7"
When the away team was st kilda, what did the home team score?
CREATE TABLE table_name_7 (home_team VARCHAR, away_team VARCHAR)
SELECT home_team AS score FROM table_name_7 WHERE away_team = "st kilda"
### Context: CREATE TABLE table_name_7 (home_team VARCHAR, away_team VARCHAR) ### Question: When the away team was st kilda, what did the home team score? ### Answer: SELECT home_team AS score FROM table_name_7 WHERE away_team = "st kilda"
When the home team was geelong, what did the away team score?
CREATE TABLE table_name_98 (away_team VARCHAR, home_team VARCHAR)
SELECT away_team AS score FROM table_name_98 WHERE home_team = "geelong"
### Context: CREATE TABLE table_name_98 (away_team VARCHAR, home_team VARCHAR) ### Question: When the home team was geelong, what did the away team score? ### Answer: SELECT away_team AS score FROM table_name_98 WHERE home_team = "geelong"
Which Artist has an Issue Price of $8,159.95?
CREATE TABLE table_name_11 (artist VARCHAR, issue_price VARCHAR)
SELECT artist FROM table_name_11 WHERE issue_price = "$8,159.95"
### Context: CREATE TABLE table_name_11 (artist VARCHAR, issue_price VARCHAR) ### Question: Which Artist has an Issue Price of $8,159.95? ### Answer: SELECT artist FROM table_name_11 WHERE issue_price = "$8,159.95"
What is the lowest Mintage for the Artist Royal Canadian Mint Engravers, in the Year 2009, with an Issue Price of $10,199.95?
CREATE TABLE table_name_9 (mintage INTEGER, year VARCHAR, artist VARCHAR, issue_price VARCHAR)
SELECT MIN(mintage) FROM table_name_9 WHERE artist = "royal canadian mint engravers" AND issue_price = "$10,199.95" AND year > 2009
### Context: CREATE TABLE table_name_9 (mintage INTEGER, year VARCHAR, artist VARCHAR, issue_price VARCHAR) ### Question: What is the lowest Mintage for the Artist Royal Canadian Mint Engravers, in the Year 2009, with an Issue Price of $10,199.95? ### Answer: SELECT MIN(mintage) FROM table_name_9 WHERE artist = "royal canadian mint engravers" AND issue_price = "$10,199.95" AND year > 2009
What is the sum of Artist Steve Hepburn's Mintage?
CREATE TABLE table_name_75 (mintage INTEGER, artist VARCHAR)
SELECT SUM(mintage) FROM table_name_75 WHERE artist = "steve hepburn"
### Context: CREATE TABLE table_name_75 (mintage INTEGER, artist VARCHAR) ### Question: What is the sum of Artist Steve Hepburn's Mintage? ### Answer: SELECT SUM(mintage) FROM table_name_75 WHERE artist = "steve hepburn"
What is the average Year for the Royal Canadian Mint Engravers Artist when the Mintage is under 200?
CREATE TABLE table_name_35 (year INTEGER, artist VARCHAR, mintage VARCHAR)
SELECT AVG(year) FROM table_name_35 WHERE artist = "royal canadian mint engravers" AND mintage < 200
### Context: CREATE TABLE table_name_35 (year INTEGER, artist VARCHAR, mintage VARCHAR) ### Question: What is the average Year for the Royal Canadian Mint Engravers Artist when the Mintage is under 200? ### Answer: SELECT AVG(year) FROM table_name_35 WHERE artist = "royal canadian mint engravers" AND mintage < 200
When the Year is over 2008, what is the highest Mintage for the Royal Canadian Mint Engravers Artist?
CREATE TABLE table_name_46 (mintage INTEGER, artist VARCHAR, year VARCHAR)
SELECT MAX(mintage) FROM table_name_46 WHERE artist = "royal canadian mint engravers" AND year > 2008
### Context: CREATE TABLE table_name_46 (mintage INTEGER, artist VARCHAR, year VARCHAR) ### Question: When the Year is over 2008, what is the highest Mintage for the Royal Canadian Mint Engravers Artist? ### Answer: SELECT MAX(mintage) FROM table_name_46 WHERE artist = "royal canadian mint engravers" AND year > 2008
When did José Luis Sánchez Solá end his term of coaching?
CREATE TABLE table_name_76 (until VARCHAR, name VARCHAR)
SELECT until FROM table_name_76 WHERE name = "josé luis sánchez solá"
### Context: CREATE TABLE table_name_76 (until VARCHAR, name VARCHAR) ### Question: When did José Luis Sánchez Solá end his term of coaching? ### Answer: SELECT until FROM table_name_76 WHERE name = "josé luis sánchez solá"
What is the class of the locomotive with an Eastleigh Works manufacturer, made in 1914, and withdrawn in 1959?
CREATE TABLE table_name_72 (class VARCHAR, year_s__withdrawn VARCHAR, manufacturer VARCHAR, year_made VARCHAR)
SELECT class FROM table_name_72 WHERE manufacturer = "eastleigh works" AND year_made = "1914" AND year_s__withdrawn = "1959"
### Context: CREATE TABLE table_name_72 (class VARCHAR, year_s__withdrawn VARCHAR, manufacturer VARCHAR, year_made VARCHAR) ### Question: What is the class of the locomotive with an Eastleigh Works manufacturer, made in 1914, and withdrawn in 1959? ### Answer: SELECT class FROM table_name_72 WHERE manufacturer = "eastleigh works" AND year_made = "1914" AND year_s__withdrawn = "1959"
What is the class of the locomotive with a wheel arrangement of 4-6-0 and a quantity made of 14?
CREATE TABLE table_name_47 (class VARCHAR, wheel_arrangement VARCHAR, quantity_made VARCHAR)
SELECT class FROM table_name_47 WHERE wheel_arrangement = "4-6-0" AND quantity_made = "14"
### Context: CREATE TABLE table_name_47 (class VARCHAR, wheel_arrangement VARCHAR, quantity_made VARCHAR) ### Question: What is the class of the locomotive with a wheel arrangement of 4-6-0 and a quantity made of 14? ### Answer: SELECT class FROM table_name_47 WHERE wheel_arrangement = "4-6-0" AND quantity_made = "14"
What is the fleet number of the locomotive with 1 quantity made?
CREATE TABLE table_name_59 (fleet_number_s_ VARCHAR, quantity_made VARCHAR)
SELECT fleet_number_s_ FROM table_name_59 WHERE quantity_made = "1"
### Context: CREATE TABLE table_name_59 (fleet_number_s_ VARCHAR, quantity_made VARCHAR) ### Question: What is the fleet number of the locomotive with 1 quantity made? ### Answer: SELECT fleet_number_s_ FROM table_name_59 WHERE quantity_made = "1"
In games where st kilda was the away team, what was the smallest crowd?
CREATE TABLE table_name_68 (crowd INTEGER, away_team VARCHAR)
SELECT MIN(crowd) FROM table_name_68 WHERE away_team = "st kilda"
### Context: CREATE TABLE table_name_68 (crowd INTEGER, away_team VARCHAR) ### Question: In games where st kilda was the away team, what was the smallest crowd? ### Answer: SELECT MIN(crowd) FROM table_name_68 WHERE away_team = "st kilda"
In fitzroy's match where they were the home team, how much did they score?
CREATE TABLE table_name_7 (home_team VARCHAR)
SELECT home_team AS score FROM table_name_7 WHERE home_team = "fitzroy"
### Context: CREATE TABLE table_name_7 (home_team VARCHAR) ### Question: In fitzroy's match where they were the home team, how much did they score? ### Answer: SELECT home_team AS score FROM table_name_7 WHERE home_team = "fitzroy"
What was the score for the home team who plays their matches at the mcg venue?
CREATE TABLE table_name_4 (home_team VARCHAR, venue VARCHAR)
SELECT home_team AS score FROM table_name_4 WHERE venue = "mcg"
### Context: CREATE TABLE table_name_4 (home_team VARCHAR, venue VARCHAR) ### Question: What was the score for the home team who plays their matches at the mcg venue? ### Answer: SELECT home_team AS score FROM table_name_4 WHERE venue = "mcg"
Which player has the lowest earnings and has at least 4 wins and is ranked higher than 4?
CREATE TABLE table_name_50 (earnings__ INTEGER, wins VARCHAR, rank VARCHAR)
SELECT MIN(earnings__) AS $__ FROM table_name_50 WHERE wins = 4 AND rank > 4
### Context: CREATE TABLE table_name_50 (earnings__ INTEGER, wins VARCHAR, rank VARCHAR) ### Question: Which player has the lowest earnings and has at least 4 wins and is ranked higher than 4? ### Answer: SELECT MIN(earnings__) AS $__ FROM table_name_50 WHERE wins = 4 AND rank > 4
How many wins do the players that earned more than 720,134 have?
CREATE TABLE table_name_8 (wins INTEGER, earnings__$__ INTEGER)
SELECT SUM(wins) FROM table_name_8 WHERE earnings__$__ > 720 OFFSET 134
### Context: CREATE TABLE table_name_8 (wins INTEGER, earnings__$__ INTEGER) ### Question: How many wins do the players that earned more than 720,134 have? ### Answer: SELECT SUM(wins) FROM table_name_8 WHERE earnings__$__ > 720 OFFSET 134
Who is the highest ranked player that has earnings below 395,386?
CREATE TABLE table_name_70 (rank INTEGER, earnings__$__ INTEGER)
SELECT MAX(rank) FROM table_name_70 WHERE earnings__$__ < 395 OFFSET 386
### Context: CREATE TABLE table_name_70 (rank INTEGER, earnings__$__ INTEGER) ### Question: Who is the highest ranked player that has earnings below 395,386? ### Answer: SELECT MAX(rank) FROM table_name_70 WHERE earnings__$__ < 395 OFFSET 386
In what Game did Rams Points equal 0?
CREATE TABLE table_name_82 (game VARCHAR, rams_points VARCHAR)
SELECT game FROM table_name_82 WHERE rams_points = 0
### Context: CREATE TABLE table_name_82 (game VARCHAR, rams_points VARCHAR) ### Question: In what Game did Rams Points equal 0? ### Answer: SELECT game FROM table_name_82 WHERE rams_points = 0
What Opponent has a 6-0 Record?
CREATE TABLE table_name_54 (opponent VARCHAR, record VARCHAR)
SELECT opponent FROM table_name_54 WHERE record = "6-0"
### Context: CREATE TABLE table_name_54 (opponent VARCHAR, record VARCHAR) ### Question: What Opponent has a 6-0 Record? ### Answer: SELECT opponent FROM table_name_54 WHERE record = "6-0"
What is the sum of the interview scores from North Dakota that have averages less than 8.697, evening gown scores less than 8.73, and swimsuit scores greater than 8.41?
CREATE TABLE table_name_4 (interview INTEGER, swimsuit VARCHAR, state VARCHAR, average VARCHAR, evening_gown VARCHAR)
SELECT SUM(interview) FROM table_name_4 WHERE average < 8.697 AND evening_gown < 8.73 AND state = "north dakota" AND swimsuit > 8.41
### Context: CREATE TABLE table_name_4 (interview INTEGER, swimsuit VARCHAR, state VARCHAR, average VARCHAR, evening_gown VARCHAR) ### Question: What is the sum of the interview scores from North Dakota that have averages less than 8.697, evening gown scores less than 8.73, and swimsuit scores greater than 8.41? ### Answer: SELECT SUM(interview) FROM table_name_4 WHERE average < 8.697 AND evening_gown < 8.73 AND state = "north dakota" AND swimsuit > 8.41
What is the sum of the swimsuit scores from Missouri that have evening gown scores less than 8.77 and average scores less than 8.823?
CREATE TABLE table_name_77 (swimsuit INTEGER, average VARCHAR, evening_gown VARCHAR, state VARCHAR)
SELECT SUM(swimsuit) FROM table_name_77 WHERE evening_gown < 8.77 AND state = "missouri" AND average < 8.823
### Context: CREATE TABLE table_name_77 (swimsuit INTEGER, average VARCHAR, evening_gown VARCHAR, state VARCHAR) ### Question: What is the sum of the swimsuit scores from Missouri that have evening gown scores less than 8.77 and average scores less than 8.823? ### Answer: SELECT SUM(swimsuit) FROM table_name_77 WHERE evening_gown < 8.77 AND state = "missouri" AND average < 8.823
What is the total number of swimsuit scores that have average scores less than 8.823, evening gown scores less than 8.69, and interview scores equal to 8.27?
CREATE TABLE table_name_19 (swimsuit VARCHAR, interview VARCHAR, average VARCHAR, evening_gown VARCHAR)
SELECT COUNT(swimsuit) FROM table_name_19 WHERE average < 8.823 AND evening_gown < 8.69 AND interview = 8.27
### Context: CREATE TABLE table_name_19 (swimsuit VARCHAR, interview VARCHAR, average VARCHAR, evening_gown VARCHAR) ### Question: What is the total number of swimsuit scores that have average scores less than 8.823, evening gown scores less than 8.69, and interview scores equal to 8.27? ### Answer: SELECT COUNT(swimsuit) FROM table_name_19 WHERE average < 8.823 AND evening_gown < 8.69 AND interview = 8.27
What is the lowest swimsuit score where the contestant scored less than 8.56 in the interview and greater than 8.54 in the evening gown?
CREATE TABLE table_name_85 (swimsuit INTEGER, interview VARCHAR, evening_gown VARCHAR)
SELECT MIN(swimsuit) FROM table_name_85 WHERE interview < 8.56 AND evening_gown > 8.54
### Context: CREATE TABLE table_name_85 (swimsuit INTEGER, interview VARCHAR, evening_gown VARCHAR) ### Question: What is the lowest swimsuit score where the contestant scored less than 8.56 in the interview and greater than 8.54 in the evening gown? ### Answer: SELECT MIN(swimsuit) FROM table_name_85 WHERE interview < 8.56 AND evening_gown > 8.54
What is the sum of the evening gown scores where the interview score is less than 8.77, the swimsuit score is equal to 7.8, and the average score is less than 8.2?
CREATE TABLE table_name_4 (evening_gown INTEGER, average VARCHAR, interview VARCHAR, swimsuit VARCHAR)
SELECT SUM(evening_gown) FROM table_name_4 WHERE interview < 8.77 AND swimsuit = 7.8 AND average < 8.2
### Context: CREATE TABLE table_name_4 (evening_gown INTEGER, average VARCHAR, interview VARCHAR, swimsuit VARCHAR) ### Question: What is the sum of the evening gown scores where the interview score is less than 8.77, the swimsuit score is equal to 7.8, and the average score is less than 8.2? ### Answer: SELECT SUM(evening_gown) FROM table_name_4 WHERE interview < 8.77 AND swimsuit = 7.8 AND average < 8.2
What was the attendance for the game that has a tie number of 13?
CREATE TABLE table_name_96 (attendance INTEGER, tie_no VARCHAR)
SELECT SUM(attendance) FROM table_name_96 WHERE tie_no = "13"
### Context: CREATE TABLE table_name_96 (attendance INTEGER, tie_no VARCHAR) ### Question: What was the attendance for the game that has a tie number of 13? ### Answer: SELECT SUM(attendance) FROM table_name_96 WHERE tie_no = "13"
What is the average attendance when the Forest Green Rovers is the away team?
CREATE TABLE table_name_82 (attendance INTEGER, away_team VARCHAR)
SELECT AVG(attendance) FROM table_name_82 WHERE away_team = "forest green rovers"
### Context: CREATE TABLE table_name_82 (attendance INTEGER, away_team VARCHAR) ### Question: What is the average attendance when the Forest Green Rovers is the away team? ### Answer: SELECT AVG(attendance) FROM table_name_82 WHERE away_team = "forest green rovers"
What is the grid number for troy corser with under 22 laps?
CREATE TABLE table_name_48 (grid INTEGER, rider VARCHAR, laps VARCHAR)
SELECT SUM(grid) FROM table_name_48 WHERE rider = "troy corser" AND laps < 22
### Context: CREATE TABLE table_name_48 (grid INTEGER, rider VARCHAR, laps VARCHAR) ### Question: What is the grid number for troy corser with under 22 laps? ### Answer: SELECT SUM(grid) FROM table_name_48 WHERE rider = "troy corser" AND laps < 22
What rider went under 22 laps with grid number 2?
CREATE TABLE table_name_11 (rider VARCHAR, laps VARCHAR, grid VARCHAR)
SELECT rider FROM table_name_11 WHERE laps < 22 AND grid = 2
### Context: CREATE TABLE table_name_11 (rider VARCHAR, laps VARCHAR, grid VARCHAR) ### Question: What rider went under 22 laps with grid number 2? ### Answer: SELECT rider FROM table_name_11 WHERE laps < 22 AND grid = 2
What country speaks Vietnamese?
CREATE TABLE table_name_76 (country_region VARCHAR, languages VARCHAR)
SELECT country_region FROM table_name_76 WHERE languages = "vietnamese"
### Context: CREATE TABLE table_name_76 (country_region VARCHAR, languages VARCHAR) ### Question: What country speaks Vietnamese? ### Answer: SELECT country_region FROM table_name_76 WHERE languages = "vietnamese"
What ranking did Team 250cc Honda end up in when it finished a race with a time of 1:27.57.28?
CREATE TABLE table_name_44 (rank VARCHAR, team VARCHAR, time VARCHAR)
SELECT COUNT(rank) FROM table_name_44 WHERE team = "250cc honda" AND time = "1:27.57.28"
### Context: CREATE TABLE table_name_44 (rank VARCHAR, team VARCHAR, time VARCHAR) ### Question: What ranking did Team 250cc Honda end up in when it finished a race with a time of 1:27.57.28? ### Answer: SELECT COUNT(rank) FROM table_name_44 WHERE team = "250cc honda" AND time = "1:27.57.28"
Tell me the constructor for grid of 8
CREATE TABLE table_name_57 (constructor VARCHAR, grid VARCHAR)
SELECT constructor FROM table_name_57 WHERE grid = 8
### Context: CREATE TABLE table_name_57 (constructor VARCHAR, grid VARCHAR) ### Question: Tell me the constructor for grid of 8 ### Answer: SELECT constructor FROM table_name_57 WHERE grid = 8
I want the total number of Grids for heinz-harald frentzen
CREATE TABLE table_name_10 (grid VARCHAR, driver VARCHAR)
SELECT COUNT(grid) FROM table_name_10 WHERE driver = "heinz-harald frentzen"
### Context: CREATE TABLE table_name_10 (grid VARCHAR, driver VARCHAR) ### Question: I want the total number of Grids for heinz-harald frentzen ### Answer: SELECT COUNT(grid) FROM table_name_10 WHERE driver = "heinz-harald frentzen"