question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
What is the name of the player with the High points when there was a Record of 31–48?
CREATE TABLE table_name_66 (high_points VARCHAR, record VARCHAR)
SELECT high_points FROM table_name_66 WHERE record = "31–48"
### Context: CREATE TABLE table_name_66 (high_points VARCHAR, record VARCHAR) ### Question: What is the name of the player with the High points when there was a Record of 31–48? ### Answer: SELECT high_points FROM table_name_66 WHERE record = "31–48"
What is the name of the player with the High rebounds when there was a Score of l 108–114 (ot)?
CREATE TABLE table_name_25 (high_rebounds VARCHAR, score VARCHAR)
SELECT high_rebounds FROM table_name_25 WHERE score = "l 108–114 (ot)"
### Context: CREATE TABLE table_name_25 (high_rebounds VARCHAR, score VARCHAR) ### Question: What is the name of the player with the High rebounds when there was a Score of l 108–114 (ot)? ### Answer: SELECT high_rebounds FROM table_name_25 WHERE score = "l 108–114 (ot)"
What is the Lead for the 1999–00 season?
CREATE TABLE table_name_87 (lead VARCHAR, season VARCHAR)
SELECT lead FROM table_name_87 WHERE season = "1999–00"
### Context: CREATE TABLE table_name_87 (lead VARCHAR, season VARCHAR) ### Question: What is the Lead for the 1999–00 season? ### Answer: SELECT lead FROM table_name_87 WHERE season = "1999–00"
What is the Second when the third is don walchuk?
CREATE TABLE table_name_91 (second VARCHAR, third VARCHAR)
SELECT second FROM table_name_91 WHERE third = "don walchuk"
### Context: CREATE TABLE table_name_91 (second VARCHAR, third VARCHAR) ### Question: What is the Second when the third is don walchuk? ### Answer: SELECT second FROM table_name_91 WHERE third = "don walchuk"
What is the Season when the Lead was don bartlett, and the third was don walchuk, and a Second of carter rycroft?
CREATE TABLE table_name_63 (season VARCHAR, second VARCHAR, lead VARCHAR, third VARCHAR)
SELECT season FROM table_name_63 WHERE lead = "don bartlett" AND third = "don walchuk" AND second = "carter rycroft"
### Context: CREATE TABLE table_name_63 (season VARCHAR, second VARCHAR, lead VARCHAR, third VARCHAR) ### Question: What is the Season when the Lead was don bartlett, and the third was don walchuk, and a Second of carter rycroft? ### Answer: SELECT season FROM table_name_63 WHERE lead = "don bartlett" AND third = "don walchuk" AND second = "carter rycroft"
What is the Skip when the Third was john morris?
CREATE TABLE table_name_61 (skip VARCHAR, third VARCHAR)
SELECT skip FROM table_name_61 WHERE third = "john morris"
### Context: CREATE TABLE table_name_61 (skip VARCHAR, third VARCHAR) ### Question: What is the Skip when the Third was john morris? ### Answer: SELECT skip FROM table_name_61 WHERE third = "john morris"
What is the Third when the Lead was don bartlett, the Second was carter rycroft, and a Season of 2003–04?
CREATE TABLE table_name_23 (third VARCHAR, season VARCHAR, lead VARCHAR, second VARCHAR)
SELECT third FROM table_name_23 WHERE lead = "don bartlett" AND second = "carter rycroft" AND season = "2003–04"
### Context: CREATE TABLE table_name_23 (third VARCHAR, season VARCHAR, lead VARCHAR, second VARCHAR) ### Question: What is the Third when the Lead was don bartlett, the Second was carter rycroft, and a Season of 2003–04? ### Answer: SELECT third FROM table_name_23 WHERE lead = "don bartlett" AND second = "carter rycroft" AND season = "2003–04"
What is the Lead when the Second was marc kennedy, in the 2012–13 season?
CREATE TABLE table_name_66 (lead VARCHAR, second VARCHAR, season VARCHAR)
SELECT lead FROM table_name_66 WHERE second = "marc kennedy" AND season = "2012–13"
### Context: CREATE TABLE table_name_66 (lead VARCHAR, second VARCHAR, season VARCHAR) ### Question: What is the Lead when the Second was marc kennedy, in the 2012–13 season? ### Answer: SELECT lead FROM table_name_66 WHERE second = "marc kennedy" AND season = "2012–13"
What is the name of the city with a capacity of 41,311?
CREATE TABLE table_name_97 (city VARCHAR, capacity VARCHAR)
SELECT city FROM table_name_97 WHERE capacity = "41,311"
### Context: CREATE TABLE table_name_97 (city VARCHAR, capacity VARCHAR) ### Question: What is the name of the city with a capacity of 41,311? ### Answer: SELECT city FROM table_name_97 WHERE capacity = "41,311"
What is the State with Suwon as the city
CREATE TABLE table_name_37 (state VARCHAR, city VARCHAR)
SELECT state FROM table_name_37 WHERE city = "suwon"
### Context: CREATE TABLE table_name_37 (state VARCHAR, city VARCHAR) ### Question: What is the State with Suwon as the city ### Answer: SELECT state FROM table_name_37 WHERE city = "suwon"
What is the State with a home venue of suwon sports complex?
CREATE TABLE table_name_43 (state VARCHAR, home_venue VARCHAR)
SELECT state FROM table_name_43 WHERE home_venue = "suwon sports complex"
### Context: CREATE TABLE table_name_43 (state VARCHAR, home_venue VARCHAR) ### Question: What is the State with a home venue of suwon sports complex? ### Answer: SELECT state FROM table_name_43 WHERE home_venue = "suwon sports complex"
What is the team name for Chungju?
CREATE TABLE table_name_11 (team VARCHAR, city VARCHAR)
SELECT team FROM table_name_11 WHERE city = "chungju"
### Context: CREATE TABLE table_name_11 (team VARCHAR, city VARCHAR) ### Question: What is the team name for Chungju? ### Answer: SELECT team FROM table_name_11 WHERE city = "chungju"
What is the Team with a venue of Anyang Stadium?
CREATE TABLE table_name_96 (team VARCHAR, home_venue VARCHAR)
SELECT team FROM table_name_96 WHERE home_venue = "anyang stadium"
### Context: CREATE TABLE table_name_96 (team VARCHAR, home_venue VARCHAR) ### Question: What is the Team with a venue of Anyang Stadium? ### Answer: SELECT team FROM table_name_96 WHERE home_venue = "anyang stadium"
What is the State with Gwangju Fc as the team?
CREATE TABLE table_name_10 (state VARCHAR, team VARCHAR)
SELECT state FROM table_name_10 WHERE team = "gwangju fc"
### Context: CREATE TABLE table_name_10 (state VARCHAR, team VARCHAR) ### Question: What is the State with Gwangju Fc as the team? ### Answer: SELECT state FROM table_name_10 WHERE team = "gwangju fc"
What is the To par, when the Player is Loren Roberts?
CREATE TABLE table_name_72 (to_par VARCHAR, player VARCHAR)
SELECT to_par FROM table_name_72 WHERE player = "loren roberts"
### Context: CREATE TABLE table_name_72 (to_par VARCHAR, player VARCHAR) ### Question: What is the To par, when the Player is Loren Roberts? ### Answer: SELECT to_par FROM table_name_72 WHERE player = "loren roberts"
What is the To par, when the Score is 68-71-69=208?
CREATE TABLE table_name_1 (to_par VARCHAR, score VARCHAR)
SELECT to_par FROM table_name_1 WHERE score = 68 - 71 - 69 = 208
### Context: CREATE TABLE table_name_1 (to_par VARCHAR, score VARCHAR) ### Question: What is the To par, when the Score is 68-71-69=208? ### Answer: SELECT to_par FROM table_name_1 WHERE score = 68 - 71 - 69 = 208
What is the Place, when the Score is 68-70-71=209?
CREATE TABLE table_name_19 (place VARCHAR, score VARCHAR)
SELECT place FROM table_name_19 WHERE score = 68 - 70 - 71 = 209
### Context: CREATE TABLE table_name_19 (place VARCHAR, score VARCHAR) ### Question: What is the Place, when the Score is 68-70-71=209? ### Answer: SELECT place FROM table_name_19 WHERE score = 68 - 70 - 71 = 209
What is the Place, when the Player is Chris Dimarco?
CREATE TABLE table_name_8 (place VARCHAR, player VARCHAR)
SELECT place FROM table_name_8 WHERE player = "chris dimarco"
### Context: CREATE TABLE table_name_8 (place VARCHAR, player VARCHAR) ### Question: What is the Place, when the Player is Chris Dimarco? ### Answer: SELECT place FROM table_name_8 WHERE player = "chris dimarco"
What is the Score, when the Country is United States, when the Place is T3, and when the Player is Chris Riley?
CREATE TABLE table_name_38 (score VARCHAR, player VARCHAR, country VARCHAR, place VARCHAR)
SELECT score FROM table_name_38 WHERE country = "united states" AND place = "t3" AND player = "chris riley"
### Context: CREATE TABLE table_name_38 (score VARCHAR, player VARCHAR, country VARCHAR, place VARCHAR) ### Question: What is the Score, when the Country is United States, when the Place is T3, and when the Player is Chris Riley? ### Answer: SELECT score FROM table_name_38 WHERE country = "united states" AND place = "t3" AND player = "chris riley"
What is the score where the opponent was Mardy Fish?
CREATE TABLE table_name_68 (score VARCHAR, opponent VARCHAR)
SELECT score FROM table_name_68 WHERE opponent = "mardy fish"
### Context: CREATE TABLE table_name_68 (score VARCHAR, opponent VARCHAR) ### Question: What is the score where the opponent was Mardy Fish? ### Answer: SELECT score FROM table_name_68 WHERE opponent = "mardy fish"
What surface was played on with a score of 6–4, 6–3 and on 4 May 1992?
CREATE TABLE table_name_36 (surface VARCHAR, score VARCHAR, date VARCHAR)
SELECT surface FROM table_name_36 WHERE score = "6–4, 6–3" AND date = "4 may 1992"
### Context: CREATE TABLE table_name_36 (surface VARCHAR, score VARCHAR, date VARCHAR) ### Question: What surface was played on with a score of 6–4, 6–3 and on 4 May 1992? ### Answer: SELECT surface FROM table_name_36 WHERE score = "6–4, 6–3" AND date = "4 may 1992"
What is the name of the tournament played 13 November 2000?
CREATE TABLE table_name_35 (tournament VARCHAR, date VARCHAR)
SELECT tournament FROM table_name_35 WHERE date = "13 november 2000"
### Context: CREATE TABLE table_name_35 (tournament VARCHAR, date VARCHAR) ### Question: What is the name of the tournament played 13 November 2000? ### Answer: SELECT tournament FROM table_name_35 WHERE date = "13 november 2000"
Which tournament was played on 12 February 2001?
CREATE TABLE table_name_21 (tournament VARCHAR, date VARCHAR)
SELECT tournament FROM table_name_21 WHERE date = "12 february 2001"
### Context: CREATE TABLE table_name_21 (tournament VARCHAR, date VARCHAR) ### Question: Which tournament was played on 12 February 2001? ### Answer: SELECT tournament FROM table_name_21 WHERE date = "12 february 2001"
What is the average round number with wide receiver as position and Clark University as the college and the pick number is bigger than 166?
CREATE TABLE table_name_18 (round__number INTEGER, pick__number VARCHAR, position VARCHAR, college VARCHAR)
SELECT AVG(round__number) FROM table_name_18 WHERE position = "wide receiver" AND college = "clark university" AND pick__number > 166
### Context: CREATE TABLE table_name_18 (round__number INTEGER, pick__number VARCHAR, position VARCHAR, college VARCHAR) ### Question: What is the average round number with wide receiver as position and Clark University as the college and the pick number is bigger than 166? ### Answer: SELECT AVG(round__number) FROM table_name_18 WHERE position = "wide receiver" AND college = "clark university" AND pick__number > 166
Which team had a year entering the league under 2009, located in Bath?
CREATE TABLE table_name_21 (team VARCHAR, year_entered_league VARCHAR, location VARCHAR)
SELECT team FROM table_name_21 WHERE year_entered_league < 2009 AND location = "bath"
### Context: CREATE TABLE table_name_21 (team VARCHAR, year_entered_league VARCHAR, location VARCHAR) ### Question: Which team had a year entering the league under 2009, located in Bath? ### Answer: SELECT team FROM table_name_21 WHERE year_entered_league < 2009 AND location = "bath"
What is the year of entry for the University of Essex?
CREATE TABLE table_name_70 (year_entered_league VARCHAR, university VARCHAR)
SELECT year_entered_league FROM table_name_70 WHERE university = "university of essex"
### Context: CREATE TABLE table_name_70 (year_entered_league VARCHAR, university VARCHAR) ### Question: What is the year of entry for the University of Essex? ### Answer: SELECT year_entered_league FROM table_name_70 WHERE university = "university of essex"
What is the 2013-2014 division for the Wolverhampton Wildcats?
CREATE TABLE table_name_60 (team VARCHAR)
SELECT 2013 AS _14_division FROM table_name_60 WHERE team = "wolverhampton wildcats"
### Context: CREATE TABLE table_name_60 (team VARCHAR) ### Question: What is the 2013-2014 division for the Wolverhampton Wildcats? ### Answer: SELECT 2013 AS _14_division FROM table_name_60 WHERE team = "wolverhampton wildcats"
What is the least amount of draws with an against of 1261?
CREATE TABLE table_name_16 (draws INTEGER, against VARCHAR)
SELECT MIN(draws) FROM table_name_16 WHERE against = 1261
### Context: CREATE TABLE table_name_16 (draws INTEGER, against VARCHAR) ### Question: What is the least amount of draws with an against of 1261? ### Answer: SELECT MIN(draws) FROM table_name_16 WHERE against = 1261
What label shows an Album of cover version v?
CREATE TABLE table_name_24 (label VARCHAR, album VARCHAR)
SELECT label FROM table_name_24 WHERE album = "cover version v"
### Context: CREATE TABLE table_name_24 (label VARCHAR, album VARCHAR) ### Question: What label shows an Album of cover version v? ### Answer: SELECT label FROM table_name_24 WHERE album = "cover version v"
What is the Label when the album shows cover version vi?
CREATE TABLE table_name_26 (label VARCHAR, album VARCHAR)
SELECT label FROM table_name_26 WHERE album = "cover version vi"
### Context: CREATE TABLE table_name_26 (label VARCHAR, album VARCHAR) ### Question: What is the Label when the album shows cover version vi? ### Answer: SELECT label FROM table_name_26 WHERE album = "cover version vi"
What is the name of the Covered Song when the Album shows cover version iii?
CREATE TABLE table_name_7 (covered_song VARCHAR, album VARCHAR)
SELECT covered_song FROM table_name_7 WHERE album = "cover version iii"
### Context: CREATE TABLE table_name_7 (covered_song VARCHAR, album VARCHAR) ### Question: What is the name of the Covered Song when the Album shows cover version iii? ### Answer: SELECT covered_song FROM table_name_7 WHERE album = "cover version iii"
What is the sum of Week when there were 67,968 people in attendance?
CREATE TABLE table_name_66 (week INTEGER, attendance VARCHAR)
SELECT SUM(week) FROM table_name_66 WHERE attendance = "67,968"
### Context: CREATE TABLE table_name_66 (week INTEGER, attendance VARCHAR) ### Question: What is the sum of Week when there were 67,968 people in attendance? ### Answer: SELECT SUM(week) FROM table_name_66 WHERE attendance = "67,968"
What is the Week number with a result of l 31–28?
CREATE TABLE table_name_77 (week VARCHAR, result VARCHAR)
SELECT COUNT(week) FROM table_name_77 WHERE result = "l 31–28"
### Context: CREATE TABLE table_name_77 (week VARCHAR, result VARCHAR) ### Question: What is the Week number with a result of l 31–28? ### Answer: SELECT COUNT(week) FROM table_name_77 WHERE result = "l 31–28"
What was the score at the Tie no. 1 game?
CREATE TABLE table_name_37 (score VARCHAR, tie_no VARCHAR)
SELECT score FROM table_name_37 WHERE tie_no = "1"
### Context: CREATE TABLE table_name_37 (score VARCHAR, tie_no VARCHAR) ### Question: What was the score at the Tie no. 1 game? ### Answer: SELECT score FROM table_name_37 WHERE tie_no = "1"
What was the attendance at the West Ham United home game?
CREATE TABLE table_name_69 (attendance VARCHAR, home_team VARCHAR)
SELECT attendance FROM table_name_69 WHERE home_team = "west ham united"
### Context: CREATE TABLE table_name_69 (attendance VARCHAR, home_team VARCHAR) ### Question: What was the attendance at the West Ham United home game? ### Answer: SELECT attendance FROM table_name_69 WHERE home_team = "west ham united"
What is the Sport with a Name that is gustav larsson?
CREATE TABLE table_name_9 (sport VARCHAR, name VARCHAR)
SELECT sport FROM table_name_9 WHERE name = "gustav larsson"
### Context: CREATE TABLE table_name_9 (sport VARCHAR, name VARCHAR) ### Question: What is the Sport with a Name that is gustav larsson? ### Answer: SELECT sport FROM table_name_9 WHERE name = "gustav larsson"
What is the Name with an Event that is men's time trial?
CREATE TABLE table_name_15 (name VARCHAR, event VARCHAR)
SELECT name FROM table_name_15 WHERE event = "men's time trial"
### Context: CREATE TABLE table_name_15 (name VARCHAR, event VARCHAR) ### Question: What is the Name with an Event that is men's time trial? ### Answer: SELECT name FROM table_name_15 WHERE event = "men's time trial"
At which venue did the event held on 15 November 2010 occur?
CREATE TABLE table_name_78 (venue VARCHAR, date VARCHAR)
SELECT venue FROM table_name_78 WHERE date = "15 november 2010"
### Context: CREATE TABLE table_name_78 (venue VARCHAR, date VARCHAR) ### Question: At which venue did the event held on 15 November 2010 occur? ### Answer: SELECT venue FROM table_name_78 WHERE date = "15 november 2010"
Which Points has a Performer of rob burke band and a Draw larger than 1?
CREATE TABLE table_name_32 (points INTEGER, performer VARCHAR, draw VARCHAR)
SELECT AVG(points) FROM table_name_32 WHERE performer = "rob burke band" AND draw > 1
### Context: CREATE TABLE table_name_32 (points INTEGER, performer VARCHAR, draw VARCHAR) ### Question: Which Points has a Performer of rob burke band and a Draw larger than 1? ### Answer: SELECT AVG(points) FROM table_name_32 WHERE performer = "rob burke band" AND draw > 1
Which Points have a Performer of seΓ‘n monaghan and a Draw smaller than 7?
CREATE TABLE table_name_87 (points INTEGER, performer VARCHAR, draw VARCHAR)
SELECT MIN(points) FROM table_name_87 WHERE performer = "seΓ‘n monaghan" AND draw < 7
### Context: CREATE TABLE table_name_87 (points INTEGER, performer VARCHAR, draw VARCHAR) ### Question: Which Points have a Performer of seΓ‘n monaghan and a Draw smaller than 7? ### Answer: SELECT MIN(points) FROM table_name_87 WHERE performer = "seΓ‘n monaghan" AND draw < 7
Which Points has a Performer of rob burke band?
CREATE TABLE table_name_7 (points VARCHAR, performer VARCHAR)
SELECT COUNT(points) FROM table_name_7 WHERE performer = "rob burke band"
### Context: CREATE TABLE table_name_7 (points VARCHAR, performer VARCHAR) ### Question: Which Points has a Performer of rob burke band? ### Answer: SELECT COUNT(points) FROM table_name_7 WHERE performer = "rob burke band"
What is the Finish of 28 Wins?
CREATE TABLE table_name_8 (finish VARCHAR, wins VARCHAR)
SELECT finish FROM table_name_8 WHERE wins = "28"
### Context: CREATE TABLE table_name_8 (finish VARCHAR, wins VARCHAR) ### Question: What is the Finish of 28 Wins? ### Answer: SELECT finish FROM table_name_8 WHERE wins = "28"
What is the Finish of the Reno Bighorns Wins?
CREATE TABLE table_name_41 (finish VARCHAR, wins VARCHAR)
SELECT finish FROM table_name_41 WHERE wins = "reno bighorns"
### Context: CREATE TABLE table_name_41 (finish VARCHAR, wins VARCHAR) ### Question: What is the Finish of the Reno Bighorns Wins? ### Answer: SELECT finish FROM table_name_41 WHERE wins = "reno bighorns"
What is the Finish of 28 Wins?
CREATE TABLE table_name_49 (finish VARCHAR, wins VARCHAR)
SELECT finish FROM table_name_49 WHERE wins = "28"
### Context: CREATE TABLE table_name_49 (finish VARCHAR, wins VARCHAR) ### Question: What is the Finish of 28 Wins? ### Answer: SELECT finish FROM table_name_49 WHERE wins = "28"
What is the Western Division of Wins with a 4th Finish?
CREATE TABLE table_name_95 (wins VARCHAR, division VARCHAR, finish VARCHAR)
SELECT wins FROM table_name_95 WHERE division = "western" AND finish = "4th"
### Context: CREATE TABLE table_name_95 (wins VARCHAR, division VARCHAR, finish VARCHAR) ### Question: What is the Western Division of Wins with a 4th Finish? ### Answer: SELECT wins FROM table_name_95 WHERE division = "western" AND finish = "4th"
What are the losses of the playoffs season?
CREATE TABLE table_name_56 (losses VARCHAR, season VARCHAR)
SELECT losses FROM table_name_56 WHERE season = "playoffs"
### Context: CREATE TABLE table_name_56 (losses VARCHAR, season VARCHAR) ### Question: What are the losses of the playoffs season? ### Answer: SELECT losses FROM table_name_56 WHERE season = "playoffs"
What is Team 1, when Team 2 is Saint Louis?
CREATE TABLE table_name_84 (team_1 VARCHAR, team_2 VARCHAR)
SELECT team_1 FROM table_name_84 WHERE team_2 = "saint louis"
### Context: CREATE TABLE table_name_84 (team_1 VARCHAR, team_2 VARCHAR) ### Question: What is Team 1, when Team 2 is Saint Louis? ### Answer: SELECT team_1 FROM table_name_84 WHERE team_2 = "saint louis"
What is Agg., when Team 2 is Mukungwa?
CREATE TABLE table_name_42 (agg VARCHAR, team_2 VARCHAR)
SELECT agg FROM table_name_42 WHERE team_2 = "mukungwa"
### Context: CREATE TABLE table_name_42 (agg VARCHAR, team_2 VARCHAR) ### Question: What is Agg., when Team 2 is Mukungwa? ### Answer: SELECT agg FROM table_name_42 WHERE team_2 = "mukungwa"
What is the Round with an Opponent that is torpedo moscow?
CREATE TABLE table_name_35 (round VARCHAR, opponent VARCHAR)
SELECT round FROM table_name_35 WHERE opponent = "torpedo moscow"
### Context: CREATE TABLE table_name_35 (round VARCHAR, opponent VARCHAR) ### Question: What is the Round with an Opponent that is torpedo moscow? ### Answer: SELECT round FROM table_name_35 WHERE opponent = "torpedo moscow"
Can you tell me the sum of Matches that has the Goals of 103, and the Rank larger than 9?
CREATE TABLE table_name_7 (matches INTEGER, goals VARCHAR, rank VARCHAR)
SELECT SUM(matches) FROM table_name_7 WHERE goals = 103 AND rank > 9
### Context: CREATE TABLE table_name_7 (matches INTEGER, goals VARCHAR, rank VARCHAR) ### Question: Can you tell me the sum of Matches that has the Goals of 103, and the Rank larger than 9? ### Answer: SELECT SUM(matches) FROM table_name_7 WHERE goals = 103 AND rank > 9
Can you tell me the Name that has the Goals larger than 98, and the Rank of 7?
CREATE TABLE table_name_24 (name VARCHAR, goals VARCHAR, rank VARCHAR)
SELECT name FROM table_name_24 WHERE goals > 98 AND rank = 7
### Context: CREATE TABLE table_name_24 (name VARCHAR, goals VARCHAR, rank VARCHAR) ### Question: Can you tell me the Name that has the Goals larger than 98, and the Rank of 7? ### Answer: SELECT name FROM table_name_24 WHERE goals > 98 AND rank = 7
How many laps had a time stat of accident for the rider carmelo morales when the grid was more than 25?
CREATE TABLE table_name_84 (laps INTEGER, grid VARCHAR, time VARCHAR, rider VARCHAR)
SELECT SUM(laps) FROM table_name_84 WHERE time = "accident" AND rider = "carmelo morales" AND grid > 25
### Context: CREATE TABLE table_name_84 (laps INTEGER, grid VARCHAR, time VARCHAR, rider VARCHAR) ### Question: How many laps had a time stat of accident for the rider carmelo morales when the grid was more than 25? ### Answer: SELECT SUM(laps) FROM table_name_84 WHERE time = "accident" AND rider = "carmelo morales" AND grid > 25
How many laps had a time of +2.987?
CREATE TABLE table_name_37 (laps VARCHAR, time VARCHAR)
SELECT COUNT(laps) FROM table_name_37 WHERE time = "+2.987"
### Context: CREATE TABLE table_name_37 (laps VARCHAR, time VARCHAR) ### Question: How many laps had a time of +2.987? ### Answer: SELECT COUNT(laps) FROM table_name_37 WHERE time = "+2.987"
Which bike had fewer than 23 laps and a grid number of 4?
CREATE TABLE table_name_15 (bike VARCHAR, laps VARCHAR, grid VARCHAR)
SELECT bike FROM table_name_15 WHERE laps < 23 AND grid = 4
### Context: CREATE TABLE table_name_15 (bike VARCHAR, laps VARCHAR, grid VARCHAR) ### Question: Which bike had fewer than 23 laps and a grid number of 4? ### Answer: SELECT bike FROM table_name_15 WHERE laps < 23 AND grid = 4
What is the Record for week 14?
CREATE TABLE table_name_88 (record VARCHAR, week VARCHAR)
SELECT record FROM table_name_88 WHERE week = 14
### Context: CREATE TABLE table_name_88 (record VARCHAR, week VARCHAR) ### Question: What is the Record for week 14? ### Answer: SELECT record FROM table_name_88 WHERE week = 14
What is the Result with an NFL Recap, played at bank of america stadium?
CREATE TABLE table_name_41 (result VARCHAR, nfl_recap VARCHAR, game_site VARCHAR)
SELECT result FROM table_name_41 WHERE nfl_recap = "recap" AND game_site = "bank of america stadium"
### Context: CREATE TABLE table_name_41 (result VARCHAR, nfl_recap VARCHAR, game_site VARCHAR) ### Question: What is the Result with an NFL Recap, played at bank of america stadium? ### Answer: SELECT result FROM table_name_41 WHERE nfl_recap = "recap" AND game_site = "bank of america stadium"
What is the Record for week 12?
CREATE TABLE table_name_95 (record VARCHAR, week VARCHAR)
SELECT record FROM table_name_95 WHERE week = 12
### Context: CREATE TABLE table_name_95 (record VARCHAR, week VARCHAR) ### Question: What is the Record for week 12? ### Answer: SELECT record FROM table_name_95 WHERE week = 12
What is the Opponent with a time of 2:05 p.m., and the results were w 26–20?
CREATE TABLE table_name_62 (opponent VARCHAR, time VARCHAR, result VARCHAR)
SELECT opponent FROM table_name_62 WHERE time = "2:05 p.m." AND result = "w 26–20"
### Context: CREATE TABLE table_name_62 (opponent VARCHAR, time VARCHAR, result VARCHAR) ### Question: What is the Opponent with a time of 2:05 p.m., and the results were w 26–20? ### Answer: SELECT opponent FROM table_name_62 WHERE time = "2:05 p.m." AND result = "w 26–20"
What is the highest Week for october 12, 2008?
CREATE TABLE table_name_67 (week INTEGER, date VARCHAR)
SELECT MAX(week) FROM table_name_67 WHERE date = "october 12, 2008"
### Context: CREATE TABLE table_name_67 (week INTEGER, date VARCHAR) ### Question: What is the highest Week for october 12, 2008? ### Answer: SELECT MAX(week) FROM table_name_67 WHERE date = "october 12, 2008"
Which team has 1 as the drawn, with 2 as the lost?
CREATE TABLE table_name_37 (team VARCHAR, drawn VARCHAR, lost VARCHAR)
SELECT team FROM table_name_37 WHERE drawn = 1 AND lost = 2
### Context: CREATE TABLE table_name_37 (team VARCHAR, drawn VARCHAR, lost VARCHAR) ### Question: Which team has 1 as the drawn, with 2 as the lost? ### Answer: SELECT team FROM table_name_37 WHERE drawn = 1 AND lost = 2
How many drawns have 7 for the lost?
CREATE TABLE table_name_83 (drawn INTEGER, lost VARCHAR)
SELECT SUM(drawn) FROM table_name_83 WHERE lost = 7
### Context: CREATE TABLE table_name_83 (drawn INTEGER, lost VARCHAR) ### Question: How many drawns have 7 for the lost? ### Answer: SELECT SUM(drawn) FROM table_name_83 WHERE lost = 7
What is the average played that has a drawn greater than 1, with an against greater than 16?
CREATE TABLE table_name_17 (played INTEGER, drawn VARCHAR, against VARCHAR)
SELECT AVG(played) FROM table_name_17 WHERE drawn > 1 AND against > 16
### Context: CREATE TABLE table_name_17 (played INTEGER, drawn VARCHAR, against VARCHAR) ### Question: What is the average played that has a drawn greater than 1, with an against greater than 16? ### Answer: SELECT AVG(played) FROM table_name_17 WHERE drawn > 1 AND against > 16
What is the sum of Maidens with a number of Matches that is 2?
CREATE TABLE table_name_36 (maidens INTEGER, matches VARCHAR)
SELECT SUM(maidens) FROM table_name_36 WHERE matches = 2
### Context: CREATE TABLE table_name_36 (maidens INTEGER, matches VARCHAR) ### Question: What is the sum of Maidens with a number of Matches that is 2? ### Answer: SELECT SUM(maidens) FROM table_name_36 WHERE matches = 2
Ranking higher than 2, what Team has Player Paolo Maldini?
CREATE TABLE table_name_52 (team VARCHAR, rank VARCHAR, name VARCHAR)
SELECT team FROM table_name_52 WHERE rank > 2 AND name = "paolo maldini"
### Context: CREATE TABLE table_name_52 (team VARCHAR, rank VARCHAR, name VARCHAR) ### Question: Ranking higher than 2, what Team has Player Paolo Maldini? ### Answer: SELECT team FROM table_name_52 WHERE rank > 2 AND name = "paolo maldini"
What Country is in Rank 2?
CREATE TABLE table_name_97 (country VARCHAR, rank VARCHAR)
SELECT country FROM table_name_97 WHERE rank = 2
### Context: CREATE TABLE table_name_97 (country VARCHAR, rank VARCHAR) ### Question: What Country is in Rank 2? ### Answer: SELECT country FROM table_name_97 WHERE rank = 2
What date was Leo Mainoldi (24) the leading scorer?
CREATE TABLE table_name_72 (date VARCHAR, leading_scorer VARCHAR)
SELECT date FROM table_name_72 WHERE leading_scorer = "leo mainoldi (24)"
### Context: CREATE TABLE table_name_72 (date VARCHAR, leading_scorer VARCHAR) ### Question: What date was Leo Mainoldi (24) the leading scorer? ### Answer: SELECT date FROM table_name_72 WHERE leading_scorer = "leo mainoldi (24)"
Who is the visitor with the 14-10 record?
CREATE TABLE table_name_61 (visitor VARCHAR, record VARCHAR)
SELECT visitor FROM table_name_61 WHERE record = "14-10"
### Context: CREATE TABLE table_name_61 (visitor VARCHAR, record VARCHAR) ### Question: Who is the visitor with the 14-10 record? ### Answer: SELECT visitor FROM table_name_61 WHERE record = "14-10"
What is the record of the 73-82 score?
CREATE TABLE table_name_32 (record VARCHAR, score VARCHAR)
SELECT record FROM table_name_32 WHERE score = "73-82"
### Context: CREATE TABLE table_name_32 (record VARCHAR, score VARCHAR) ### Question: What is the record of the 73-82 score? ### Answer: SELECT record FROM table_name_32 WHERE score = "73-82"
Who is the leading scorer of the Villa De Los Barrios visitor?
CREATE TABLE table_name_56 (leading_scorer VARCHAR, visitor VARCHAR)
SELECT leading_scorer FROM table_name_56 WHERE visitor = "villa de los barrios"
### Context: CREATE TABLE table_name_56 (leading_scorer VARCHAR, visitor VARCHAR) ### Question: Who is the leading scorer of the Villa De Los Barrios visitor? ### Answer: SELECT leading_scorer FROM table_name_56 WHERE visitor = "villa de los barrios"
Who is the visitor with a 14-10 record?
CREATE TABLE table_name_71 (visitor VARCHAR, record VARCHAR)
SELECT visitor FROM table_name_71 WHERE record = "14-10"
### Context: CREATE TABLE table_name_71 (visitor VARCHAR, record VARCHAR) ### Question: Who is the visitor with a 14-10 record? ### Answer: SELECT visitor FROM table_name_71 WHERE record = "14-10"
What is the score of the team with the 14-9 record?
CREATE TABLE table_name_43 (score VARCHAR, record VARCHAR)
SELECT score FROM table_name_43 WHERE record = "14-9"
### Context: CREATE TABLE table_name_43 (score VARCHAR, record VARCHAR) ### Question: What is the score of the team with the 14-9 record? ### Answer: SELECT score FROM table_name_43 WHERE record = "14-9"
What was the date of the game with 6 goals?
CREATE TABLE table_name_61 (date VARCHAR, goal VARCHAR)
SELECT date FROM table_name_61 WHERE goal = 6
### Context: CREATE TABLE table_name_61 (date VARCHAR, goal VARCHAR) ### Question: What was the date of the game with 6 goals? ### Answer: SELECT date FROM table_name_61 WHERE goal = 6
What was the highest number of goals for a game held at Hannover?
CREATE TABLE table_name_27 (goal INTEGER, venue VARCHAR)
SELECT MAX(goal) FROM table_name_27 WHERE venue = "hannover"
### Context: CREATE TABLE table_name_27 (goal INTEGER, venue VARCHAR) ### Question: What was the highest number of goals for a game held at Hannover? ### Answer: SELECT MAX(goal) FROM table_name_27 WHERE venue = "hannover"
What was the result of the game with more than 12 goals at Pasadena?
CREATE TABLE table_name_80 (result VARCHAR, goal VARCHAR, venue VARCHAR)
SELECT result FROM table_name_80 WHERE goal > 12 AND venue = "pasadena"
### Context: CREATE TABLE table_name_80 (result VARCHAR, goal VARCHAR, venue VARCHAR) ### Question: What was the result of the game with more than 12 goals at Pasadena? ### Answer: SELECT result FROM table_name_80 WHERE goal > 12 AND venue = "pasadena"
What round was Andre Fluellen drafted as a Defensive Tackle?
CREATE TABLE table_name_54 (round VARCHAR, position VARCHAR, player VARCHAR)
SELECT COUNT(round) FROM table_name_54 WHERE position = "defensive tackle" AND player = "andre fluellen"
### Context: CREATE TABLE table_name_54 (round VARCHAR, position VARCHAR, player VARCHAR) ### Question: What round was Andre Fluellen drafted as a Defensive Tackle? ### Answer: SELECT COUNT(round) FROM table_name_54 WHERE position = "defensive tackle" AND player = "andre fluellen"
After Round 5, which player was drafted for Defensive Tackle?
CREATE TABLE table_name_68 (player VARCHAR, round VARCHAR, position VARCHAR)
SELECT player FROM table_name_68 WHERE round > 5 AND position = "defensive tackle"
### Context: CREATE TABLE table_name_68 (player VARCHAR, round VARCHAR, position VARCHAR) ### Question: After Round 5, which player was drafted for Defensive Tackle? ### Answer: SELECT player FROM table_name_68 WHERE round > 5 AND position = "defensive tackle"
What was the earliest Round for Central Florida?
CREATE TABLE table_name_32 (round INTEGER, team VARCHAR)
SELECT MIN(round) FROM table_name_32 WHERE team = "central florida"
### Context: CREATE TABLE table_name_32 (round INTEGER, team VARCHAR) ### Question: What was the earliest Round for Central Florida? ### Answer: SELECT MIN(round) FROM table_name_32 WHERE team = "central florida"
What is the date of the label Dos or Die Recordings?
CREATE TABLE table_name_9 (date VARCHAR, label VARCHAR)
SELECT date FROM table_name_9 WHERE label = "dos or die recordings"
### Context: CREATE TABLE table_name_9 (date VARCHAR, label VARCHAR) ### Question: What is the date of the label Dos or Die Recordings? ### Answer: SELECT date FROM table_name_9 WHERE label = "dos or die recordings"
What is the label for 2002, in Germany, Catalog Dos 195?
CREATE TABLE table_name_23 (label VARCHAR, catalog VARCHAR, date VARCHAR, region VARCHAR)
SELECT label FROM table_name_23 WHERE date = "2002" AND region = "germany" AND catalog = "dos 195"
### Context: CREATE TABLE table_name_23 (label VARCHAR, catalog VARCHAR, date VARCHAR, region VARCHAR) ### Question: What is the label for 2002, in Germany, Catalog Dos 195? ### Answer: SELECT label FROM table_name_23 WHERE date = "2002" AND region = "germany" AND catalog = "dos 195"
What region has a 2002 date, and a Catalog dos 195?
CREATE TABLE table_name_70 (region VARCHAR, date VARCHAR, catalog VARCHAR)
SELECT region FROM table_name_70 WHERE date = "2002" AND catalog = "dos 195"
### Context: CREATE TABLE table_name_70 (region VARCHAR, date VARCHAR, catalog VARCHAR) ### Question: What region has a 2002 date, and a Catalog dos 195? ### Answer: SELECT region FROM table_name_70 WHERE date = "2002" AND catalog = "dos 195"
What is the Winners when the United States is the runner-up at st. germain golf club?
CREATE TABLE table_name_90 (winners VARCHAR, runners_up VARCHAR, venue VARCHAR)
SELECT winners FROM table_name_90 WHERE runners_up = "united states" AND venue = "st. germain golf club"
### Context: CREATE TABLE table_name_90 (winners VARCHAR, runners_up VARCHAR, venue VARCHAR) ### Question: What is the Winners when the United States is the runner-up at st. germain golf club? ### Answer: SELECT winners FROM table_name_90 WHERE runners_up = "united states" AND venue = "st. germain golf club"
What is the average Year when Australia was the runner-up at victoria golf club?
CREATE TABLE table_name_8 (year INTEGER, runners_up VARCHAR, venue VARCHAR)
SELECT AVG(year) FROM table_name_8 WHERE runners_up = "australia" AND venue = "victoria golf club"
### Context: CREATE TABLE table_name_8 (year INTEGER, runners_up VARCHAR, venue VARCHAR) ### Question: What is the average Year when Australia was the runner-up at victoria golf club? ### Answer: SELECT AVG(year) FROM table_name_8 WHERE runners_up = "australia" AND venue = "victoria golf club"
What is the Location when France was the runner-up at club de campo?
CREATE TABLE table_name_41 (location VARCHAR, runners_up VARCHAR, venue VARCHAR)
SELECT location FROM table_name_41 WHERE runners_up = "france" AND venue = "club de campo"
### Context: CREATE TABLE table_name_41 (location VARCHAR, runners_up VARCHAR, venue VARCHAR) ### Question: What is the Location when France was the runner-up at club de campo? ### Answer: SELECT location FROM table_name_41 WHERE runners_up = "france" AND venue = "club de campo"
What is the Location when Canada was the runner-up and Australia was the winner?
CREATE TABLE table_name_77 (location VARCHAR, runners_up VARCHAR, winners VARCHAR)
SELECT location FROM table_name_77 WHERE runners_up = "canada" AND winners = "australia"
### Context: CREATE TABLE table_name_77 (location VARCHAR, runners_up VARCHAR, winners VARCHAR) ### Question: What is the Location when Canada was the runner-up and Australia was the winner? ### Answer: SELECT location FROM table_name_77 WHERE runners_up = "canada" AND winners = "australia"
What is the Name of the Space Telescope Terminated on March 1993?
CREATE TABLE table_name_31 (name VARCHAR, terminated VARCHAR)
SELECT name FROM table_name_31 WHERE terminated = "march 1993"
### Context: CREATE TABLE table_name_31 (name VARCHAR, terminated VARCHAR) ### Question: What is the Name of the Space Telescope Terminated on March 1993? ### Answer: SELECT name FROM table_name_31 WHERE terminated = "march 1993"
What is Party, when Opinion Research Centre (OPC) is 1.5%?
CREATE TABLE table_name_33 (party VARCHAR, opinion_research_centre__opc_ VARCHAR)
SELECT party FROM table_name_33 WHERE opinion_research_centre__opc_ = "1.5%"
### Context: CREATE TABLE table_name_33 (party VARCHAR, opinion_research_centre__opc_ VARCHAR) ### Question: What is Party, when Opinion Research Centre (OPC) is 1.5%? ### Answer: SELECT party FROM table_name_33 WHERE opinion_research_centre__opc_ = "1.5%"
What is Marplan, when Gallup is 1.5%
CREATE TABLE table_name_55 (marplan VARCHAR, gallup VARCHAR)
SELECT marplan FROM table_name_55 WHERE gallup = "1.5%"
### Context: CREATE TABLE table_name_55 (marplan VARCHAR, gallup VARCHAR) ### Question: What is Marplan, when Gallup is 1.5% ### Answer: SELECT marplan FROM table_name_55 WHERE gallup = "1.5%"
What is Opinion Research Centre (OPC), when Party is Conservative?
CREATE TABLE table_name_40 (opinion_research_centre__opc_ VARCHAR, party VARCHAR)
SELECT opinion_research_centre__opc_ FROM table_name_40 WHERE party = "conservative"
### Context: CREATE TABLE table_name_40 (opinion_research_centre__opc_ VARCHAR, party VARCHAR) ### Question: What is Opinion Research Centre (OPC), when Party is Conservative? ### Answer: SELECT opinion_research_centre__opc_ FROM table_name_40 WHERE party = "conservative"
What is Harris, when Marplan is 1.3%
CREATE TABLE table_name_84 (harris VARCHAR, marplan VARCHAR)
SELECT harris FROM table_name_84 WHERE marplan = "1.3%"
### Context: CREATE TABLE table_name_84 (harris VARCHAR, marplan VARCHAR) ### Question: What is Harris, when Marplan is 1.3% ### Answer: SELECT harris FROM table_name_84 WHERE marplan = "1.3%"
What are the fewest points that Roger Dutton/Tony Wright have received?
CREATE TABLE table_name_15 (points INTEGER, rider VARCHAR)
SELECT MIN(points) FROM table_name_15 WHERE rider = "roger dutton/tony wright"
### Context: CREATE TABLE table_name_15 (points INTEGER, rider VARCHAR) ### Question: What are the fewest points that Roger Dutton/Tony Wright have received? ### Answer: SELECT MIN(points) FROM table_name_15 WHERE rider = "roger dutton/tony wright"
How fast does the BMW with 6 points go?
CREATE TABLE table_name_43 (speed VARCHAR, machine VARCHAR, points VARCHAR)
SELECT speed FROM table_name_43 WHERE machine = "bmw" AND points = 6
### Context: CREATE TABLE table_name_43 (speed VARCHAR, machine VARCHAR, points VARCHAR) ### Question: How fast does the BMW with 6 points go? ### Answer: SELECT speed FROM table_name_43 WHERE machine = "bmw" AND points = 6
What is the average draw for Desi Dobreva, was it less than 6?
CREATE TABLE table_name_64 (draw INTEGER, artist VARCHAR, place VARCHAR)
SELECT AVG(draw) FROM table_name_64 WHERE artist = "desi dobreva" AND place < 6
### Context: CREATE TABLE table_name_64 (draw INTEGER, artist VARCHAR, place VARCHAR) ### Question: What is the average draw for Desi Dobreva, was it less than 6? ### Answer: SELECT AVG(draw) FROM table_name_64 WHERE artist = "desi dobreva" AND place < 6
What was the first leg score for the match that had AS Police as team 2?
CREATE TABLE table_name_34 (team_2 VARCHAR)
SELECT 1 AS st_leg FROM table_name_34 WHERE team_2 = "as police"
### Context: CREATE TABLE table_name_34 (team_2 VARCHAR) ### Question: What was the first leg score for the match that had AS Police as team 2? ### Answer: SELECT 1 AS st_leg FROM table_name_34 WHERE team_2 = "as police"
What was the result for the Outstanding director of a musical category?
CREATE TABLE table_name_67 (result VARCHAR, category VARCHAR)
SELECT result FROM table_name_67 WHERE category = "outstanding director of a musical"
### Context: CREATE TABLE table_name_67 (result VARCHAR, category VARCHAR) ### Question: What was the result for the Outstanding director of a musical category? ### Answer: SELECT result FROM table_name_67 WHERE category = "outstanding director of a musical"
What was the result of the Award of Drama desk award nominee Tom Hewitt.
CREATE TABLE table_name_37 (result VARCHAR, award VARCHAR, nominee VARCHAR)
SELECT result FROM table_name_37 WHERE award = "drama desk award" AND nominee = "tom hewitt"
### Context: CREATE TABLE table_name_37 (result VARCHAR, award VARCHAR, nominee VARCHAR) ### Question: What was the result of the Award of Drama desk award nominee Tom Hewitt. ### Answer: SELECT result FROM table_name_37 WHERE award = "drama desk award" AND nominee = "tom hewitt"
What year was best costume design the award category?
CREATE TABLE table_name_97 (year VARCHAR, category VARCHAR)
SELECT year FROM table_name_97 WHERE category = "best costume design"
### Context: CREATE TABLE table_name_97 (year VARCHAR, category VARCHAR) ### Question: What year was best costume design the award category? ### Answer: SELECT year FROM table_name_97 WHERE category = "best costume design"
Which accolade has USA as the country, with a year less than 2009?
CREATE TABLE table_name_61 (accolade VARCHAR, country VARCHAR, year VARCHAR)
SELECT accolade FROM table_name_61 WHERE country = "usa" AND year < 2009
### Context: CREATE TABLE table_name_61 (accolade VARCHAR, country VARCHAR, year VARCHAR) ### Question: Which accolade has USA as the country, with a year less than 2009? ### Answer: SELECT accolade FROM table_name_61 WHERE country = "usa" AND year < 2009
How many years have an accolade of 50 best albums of the year, with #3 as the rank?
CREATE TABLE table_name_6 (year INTEGER, accolade VARCHAR, rank VARCHAR)
SELECT SUM(year) FROM table_name_6 WHERE accolade = "50 best albums of the year" AND rank = "#3"
### Context: CREATE TABLE table_name_6 (year INTEGER, accolade VARCHAR, rank VARCHAR) ### Question: How many years have an accolade of 50 best albums of the year, with #3 as the rank? ### Answer: SELECT SUM(year) FROM table_name_6 WHERE accolade = "50 best albums of the year" AND rank = "#3"
Which rank has canada as the country?
CREATE TABLE table_name_84 (rank VARCHAR, country VARCHAR)
SELECT rank FROM table_name_84 WHERE country = "canada"
### Context: CREATE TABLE table_name_84 (rank VARCHAR, country VARCHAR) ### Question: Which rank has canada as the country? ### Answer: SELECT rank FROM table_name_84 WHERE country = "canada"
What is the name of the Guest Host for Episode Number of 5?
CREATE TABLE table_name_73 (guest_host VARCHAR, episode_number VARCHAR)
SELECT guest_host FROM table_name_73 WHERE episode_number = 5
### Context: CREATE TABLE table_name_73 (guest_host VARCHAR, episode_number VARCHAR) ### Question: What is the name of the Guest Host for Episode Number of 5? ### Answer: SELECT guest_host FROM table_name_73 WHERE episode_number = 5