question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
What was the score for the game that had an end result of 5-2?
CREATE TABLE table_name_68 (score VARCHAR, result VARCHAR)
SELECT score FROM table_name_68 WHERE result = "5-2"
### Context: CREATE TABLE table_name_68 (score VARCHAR, result VARCHAR) ### Question: What was the score for the game that had an end result of 5-2? ### Answer: SELECT score FROM table_name_68 WHERE result = "5-2"
What is the total number of losses that have 1 draw and games over 7?
CREATE TABLE table_name_31 (lost VARCHAR, drawn VARCHAR, games VARCHAR)
SELECT COUNT(lost) FROM table_name_31 WHERE drawn = 1 AND games > 7
### Context: CREATE TABLE table_name_31 (lost VARCHAR, drawn VARCHAR, games VARCHAR) ### Question: What is the total number of losses that have 1 draw and games over 7? ### Answer: SELECT COUNT(lost) FROM table_name_31 WHERE drawn = 1 AND games > 7
How many rounds had a pick number of more than 10 and Appalachian State as a college?
CREATE TABLE table_name_73 (round VARCHAR, pick__number VARCHAR, college VARCHAR)
SELECT COUNT(round) FROM table_name_73 WHERE pick__number > 10 AND college = "appalachian state"
### Context: CREATE TABLE table_name_73 (round VARCHAR, pick__number VARCHAR, college VARCHAR) ### Question: How many rounds had a pick number of more than 10 and Appalachian State as a college? ### Answer: SELECT COUNT(round) FROM table_name_73 WHERE pick__number > 10 AND college = "appalachian state"
What is the largest overall where the position was linebacker and the pick number was more than 9?
CREATE TABLE table_name_32 (overall INTEGER, position VARCHAR, pick__number VARCHAR)
SELECT MAX(overall) FROM table_name_32 WHERE position = "linebacker" AND pick__number > 9
### Context: CREATE TABLE table_name_32 (overall INTEGER, position VARCHAR, pick__number VARCHAR) ### Question: What is the largest overall where the position was linebacker and the pick number was more than 9? ### Answer: SELECT MAX(overall) FROM table_name_32 WHERE position = "linebacker" AND pick__number > 9
What is the Score of the game earlier than 69 with a record of 4–56?
CREATE TABLE table_name_41 (score VARCHAR, game VARCHAR, record VARCHAR)
SELECT score FROM table_name_41 WHERE game < 69 AND record = "4–56"
### Context: CREATE TABLE table_name_41 (score VARCHAR, game VARCHAR, record VARCHAR) ### Question: What is the Score of the game earlier than 69 with a record of 4–56? ### Answer: SELECT score FROM table_name_41 WHERE game < 69 AND record = "4–56"
What is the game number with a score of 116–138?
CREATE TABLE table_name_31 (game VARCHAR, score VARCHAR)
SELECT COUNT(game) FROM table_name_31 WHERE score = "116–138"
### Context: CREATE TABLE table_name_31 (game VARCHAR, score VARCHAR) ### Question: What is the game number with a score of 116–138? ### Answer: SELECT COUNT(game) FROM table_name_31 WHERE score = "116–138"
What is the Score of the game against the boston celtics?
CREATE TABLE table_name_58 (score VARCHAR, opponent VARCHAR)
SELECT score FROM table_name_58 WHERE opponent = "boston celtics"
### Context: CREATE TABLE table_name_58 (score VARCHAR, opponent VARCHAR) ### Question: What is the Score of the game against the boston celtics? ### Answer: SELECT score FROM table_name_58 WHERE opponent = "boston celtics"
What is the Game held on february 9?
CREATE TABLE table_name_17 (game VARCHAR, date VARCHAR)
SELECT game FROM table_name_17 WHERE date = "february 9"
### Context: CREATE TABLE table_name_17 (game VARCHAR, date VARCHAR) ### Question: What is the Game held on february 9? ### Answer: SELECT game FROM table_name_17 WHERE date = "february 9"
What is the Score of the game larger than 57 with a Record of 4–55?
CREATE TABLE table_name_15 (score VARCHAR, game VARCHAR, record VARCHAR)
SELECT score FROM table_name_15 WHERE game > 57 AND record = "4–55"
### Context: CREATE TABLE table_name_15 (score VARCHAR, game VARCHAR, record VARCHAR) ### Question: What is the Score of the game larger than 57 with a Record of 4–55? ### Answer: SELECT score FROM table_name_15 WHERE game > 57 AND record = "4–55"
Which Reigon has a Village of Chassagne-Montrachet?
CREATE TABLE table_name_82 (region VARCHAR, village VARCHAR)
SELECT region FROM table_name_82 WHERE village = "chassagne-montrachet"
### Context: CREATE TABLE table_name_82 (region VARCHAR, village VARCHAR) ### Question: Which Reigon has a Village of Chassagne-Montrachet? ### Answer: SELECT region FROM table_name_82 WHERE village = "chassagne-montrachet"
Which Village has a Region of Côte De Nuits, Wine Styles of Red Wine, and a Grand Cru of Latricières-Chambertin?
CREATE TABLE table_name_57 (village VARCHAR, grand_cru VARCHAR, region VARCHAR, wine_style VARCHAR)
SELECT village FROM table_name_57 WHERE region = "côte de nuits" AND wine_style = "red wine" AND grand_cru = "latricières-chambertin"
### Context: CREATE TABLE table_name_57 (village VARCHAR, grand_cru VARCHAR, region VARCHAR, wine_style VARCHAR) ### Question: Which Village has a Region of Côte De Nuits, Wine Styles of Red Wine, and a Grand Cru of Latricières-Chambertin? ### Answer: SELECT village FROM table_name_57 WHERE region = "côte de nuits" AND wine_style = "red wine" AND grand_cru = "latricières-chambertin"
What is the Vineyeard surface (2010) with a Village of Gevrey-Chambertin, and Grand Cru of Latricières-Chambertin?
CREATE TABLE table_name_94 (vineyard_surface__2010_ VARCHAR, village VARCHAR, grand_cru VARCHAR)
SELECT vineyard_surface__2010_ FROM table_name_94 WHERE village = "gevrey-chambertin" AND grand_cru = "latricières-chambertin"
### Context: CREATE TABLE table_name_94 (vineyard_surface__2010_ VARCHAR, village VARCHAR, grand_cru VARCHAR) ### Question: What is the Vineyeard surface (2010) with a Village of Gevrey-Chambertin, and Grand Cru of Latricières-Chambertin? ### Answer: SELECT vineyard_surface__2010_ FROM table_name_94 WHERE village = "gevrey-chambertin" AND grand_cru = "latricières-chambertin"
What is the Grand Cru with a Wine Style of Red Wine and Village of Gevrey-Chambertin?
CREATE TABLE table_name_33 (grand_cru VARCHAR, wine_style VARCHAR, village VARCHAR)
SELECT grand_cru FROM table_name_33 WHERE wine_style = "red wine" AND village = "gevrey-chambertin"
### Context: CREATE TABLE table_name_33 (grand_cru VARCHAR, wine_style VARCHAR, village VARCHAR) ### Question: What is the Grand Cru with a Wine Style of Red Wine and Village of Gevrey-Chambertin? ### Answer: SELECT grand_cru FROM table_name_33 WHERE wine_style = "red wine" AND village = "gevrey-chambertin"
What is the average pick number of Pennsylvania?
CREATE TABLE table_name_97 (pick INTEGER, school_club_team VARCHAR)
SELECT AVG(pick) FROM table_name_97 WHERE school_club_team = "pennsylvania"
### Context: CREATE TABLE table_name_97 (pick INTEGER, school_club_team VARCHAR) ### Question: What is the average pick number of Pennsylvania? ### Answer: SELECT AVG(pick) FROM table_name_97 WHERE school_club_team = "pennsylvania"
What is the school/club team of the player with a pick larger than 83?
CREATE TABLE table_name_26 (school_club_team VARCHAR, pick INTEGER)
SELECT school_club_team FROM table_name_26 WHERE pick > 83
### Context: CREATE TABLE table_name_26 (school_club_team VARCHAR, pick INTEGER) ### Question: What is the school/club team of the player with a pick larger than 83? ### Answer: SELECT school_club_team FROM table_name_26 WHERE pick > 83
What is the schoo/club team of the player in round 3?
CREATE TABLE table_name_92 (school_club_team VARCHAR, round VARCHAR)
SELECT school_club_team FROM table_name_92 WHERE round = 3
### Context: CREATE TABLE table_name_92 (school_club_team VARCHAR, round VARCHAR) ### Question: What is the schoo/club team of the player in round 3? ### Answer: SELECT school_club_team FROM table_name_92 WHERE round = 3
What is the lowest round of the player from UCLA?
CREATE TABLE table_name_87 (round INTEGER, school_club_team VARCHAR)
SELECT MIN(round) FROM table_name_87 WHERE school_club_team = "ucla"
### Context: CREATE TABLE table_name_87 (round INTEGER, school_club_team VARCHAR) ### Question: What is the lowest round of the player from UCLA? ### Answer: SELECT MIN(round) FROM table_name_87 WHERE school_club_team = "ucla"
When was –16 (62-71-71-68=272) the winning score?
CREATE TABLE table_name_20 (date VARCHAR, winning_score VARCHAR)
SELECT date FROM table_name_20 WHERE winning_score = –16(62 - 71 - 71 - 68 = 272)
### Context: CREATE TABLE table_name_20 (date VARCHAR, winning_score VARCHAR) ### Question: When was –16 (62-71-71-68=272) the winning score? ### Answer: SELECT date FROM table_name_20 WHERE winning_score = –16(62 - 71 - 71 - 68 = 272)
What was the name of the tournament played on Jun 17, 1973?
CREATE TABLE table_name_3 (tournament VARCHAR, date VARCHAR)
SELECT tournament FROM table_name_3 WHERE date = "jun 17, 1973"
### Context: CREATE TABLE table_name_3 (tournament VARCHAR, date VARCHAR) ### Question: What was the name of the tournament played on Jun 17, 1973? ### Answer: SELECT tournament FROM table_name_3 WHERE date = "jun 17, 1973"
Howard Twitty was the runner-up of what tournament?
CREATE TABLE table_name_14 (tournament VARCHAR, runner_s__up VARCHAR)
SELECT tournament FROM table_name_14 WHERE runner_s__up = "howard twitty"
### Context: CREATE TABLE table_name_14 (tournament VARCHAR, runner_s__up VARCHAR) ### Question: Howard Twitty was the runner-up of what tournament? ### Answer: SELECT tournament FROM table_name_14 WHERE runner_s__up = "howard twitty"
Can you tell me the College/Junior/Club Team that has the Position of defence, and the Nationality of czechoslovakia?
CREATE TABLE table_name_58 (college_junior_club_team VARCHAR, position VARCHAR, nationality VARCHAR)
SELECT college_junior_club_team FROM table_name_58 WHERE position = "defence" AND nationality = "czechoslovakia"
### Context: CREATE TABLE table_name_58 (college_junior_club_team VARCHAR, position VARCHAR, nationality VARCHAR) ### Question: Can you tell me the College/Junior/Club Team that has the Position of defence, and the Nationality of czechoslovakia? ### Answer: SELECT college_junior_club_team FROM table_name_58 WHERE position = "defence" AND nationality = "czechoslovakia"
Can you tell me the Position that has the College/Junior/Club Team of hull olympiques (qmjhl)?
CREATE TABLE table_name_81 (position VARCHAR, college_junior_club_team VARCHAR)
SELECT position FROM table_name_81 WHERE college_junior_club_team = "hull olympiques (qmjhl)"
### Context: CREATE TABLE table_name_81 (position VARCHAR, college_junior_club_team VARCHAR) ### Question: Can you tell me the Position that has the College/Junior/Club Team of hull olympiques (qmjhl)? ### Answer: SELECT position FROM table_name_81 WHERE college_junior_club_team = "hull olympiques (qmjhl)"
Can you tell me the Player that has the Round smaller than 6, and the College/Junior/Club Team of hull olympiques (qmjhl)?
CREATE TABLE table_name_86 (player VARCHAR, round VARCHAR, college_junior_club_team VARCHAR)
SELECT player FROM table_name_86 WHERE round < 6 AND college_junior_club_team = "hull olympiques (qmjhl)"
### Context: CREATE TABLE table_name_86 (player VARCHAR, round VARCHAR, college_junior_club_team VARCHAR) ### Question: Can you tell me the Player that has the Round smaller than 6, and the College/Junior/Club Team of hull olympiques (qmjhl)? ### Answer: SELECT player FROM table_name_86 WHERE round < 6 AND college_junior_club_team = "hull olympiques (qmjhl)"
What is the Name of the Center?
CREATE TABLE table_name_84 (name VARCHAR, position VARCHAR)
SELECT name FROM table_name_84 WHERE position = "center"
### Context: CREATE TABLE table_name_84 (name VARCHAR, position VARCHAR) ### Question: What is the Name of the Center? ### Answer: SELECT name FROM table_name_84 WHERE position = "center"
What Position has no College Hall of Fame?
CREATE TABLE table_name_48 (position VARCHAR, college_hall_of_fame VARCHAR)
SELECT position FROM table_name_48 WHERE college_hall_of_fame = "no"
### Context: CREATE TABLE table_name_48 (position VARCHAR, college_hall_of_fame VARCHAR) ### Question: What Position has no College Hall of Fame? ### Answer: SELECT position FROM table_name_48 WHERE college_hall_of_fame = "no"
What School has no no no Unanimously?
CREATE TABLE table_name_96 (school VARCHAR, unanimous VARCHAR)
SELECT school FROM table_name_96 WHERE unanimous = "no no no"
### Context: CREATE TABLE table_name_96 (school VARCHAR, unanimous VARCHAR) ### Question: What School has no no no Unanimously? ### Answer: SELECT school FROM table_name_96 WHERE unanimous = "no no no"
What is the School of the quarterback?
CREATE TABLE table_name_43 (school VARCHAR, position VARCHAR)
SELECT school FROM table_name_43 WHERE position = "quarterback"
### Context: CREATE TABLE table_name_43 (school VARCHAR, position VARCHAR) ### Question: What is the School of the quarterback? ### Answer: SELECT school FROM table_name_43 WHERE position = "quarterback"
What School is the Center from?
CREATE TABLE table_name_97 (school VARCHAR, position VARCHAR)
SELECT school FROM table_name_97 WHERE position = "center"
### Context: CREATE TABLE table_name_97 (school VARCHAR, position VARCHAR) ### Question: What School is the Center from? ### Answer: SELECT school FROM table_name_97 WHERE position = "center"
What is the Unanimous of the Minnesota Southern California School?
CREATE TABLE table_name_93 (unanimous VARCHAR, school VARCHAR)
SELECT unanimous FROM table_name_93 WHERE school = "minnesota southern california"
### Context: CREATE TABLE table_name_93 (unanimous VARCHAR, school VARCHAR) ### Question: What is the Unanimous of the Minnesota Southern California School? ### Answer: SELECT unanimous FROM table_name_93 WHERE school = "minnesota southern california"
What is the Cache with a Capacity that is 600 gb?
CREATE TABLE table_name_59 (cache VARCHAR, capacity VARCHAR)
SELECT cache FROM table_name_59 WHERE capacity = "600 gb"
### Context: CREATE TABLE table_name_59 (cache VARCHAR, capacity VARCHAR) ### Question: What is the Cache with a Capacity that is 600 gb? ### Answer: SELECT cache FROM table_name_59 WHERE capacity = "600 gb"
Which Position has a College/Junior/Club Team (League) of estevan bruins (wchl), and a Round of 3?
CREATE TABLE table_name_11 (position VARCHAR, college_junior_club_team__league_ VARCHAR, round VARCHAR)
SELECT position FROM table_name_11 WHERE college_junior_club_team__league_ = "estevan bruins (wchl)" AND round = 3
### Context: CREATE TABLE table_name_11 (position VARCHAR, college_junior_club_team__league_ VARCHAR, round VARCHAR) ### Question: Which Position has a College/Junior/Club Team (League) of estevan bruins (wchl), and a Round of 3? ### Answer: SELECT position FROM table_name_11 WHERE college_junior_club_team__league_ = "estevan bruins (wchl)" AND round = 3
Which Nationality has a Player of larry wright?
CREATE TABLE table_name_86 (nationality VARCHAR, player VARCHAR)
SELECT nationality FROM table_name_86 WHERE player = "larry wright"
### Context: CREATE TABLE table_name_86 (nationality VARCHAR, player VARCHAR) ### Question: Which Nationality has a Player of larry wright? ### Answer: SELECT nationality FROM table_name_86 WHERE player = "larry wright"
What score has august 25 as the date?
CREATE TABLE table_name_49 (score VARCHAR, date VARCHAR)
SELECT score FROM table_name_49 WHERE date = "august 25"
### Context: CREATE TABLE table_name_49 (score VARCHAR, date VARCHAR) ### Question: What score has august 25 as the date? ### Answer: SELECT score FROM table_name_49 WHERE date = "august 25"
What is the total number of episodes where jim sweeney was the 1st performer and steve steen was the 2nd performer?
CREATE TABLE table_name_78 (episode VARCHAR, performer_1 VARCHAR, performer_2 VARCHAR)
SELECT COUNT(episode) FROM table_name_78 WHERE performer_1 = "jim sweeney" AND performer_2 = "steve steen"
### Context: CREATE TABLE table_name_78 (episode VARCHAR, performer_1 VARCHAR, performer_2 VARCHAR) ### Question: What is the total number of episodes where jim sweeney was the 1st performer and steve steen was the 2nd performer? ### Answer: SELECT COUNT(episode) FROM table_name_78 WHERE performer_1 = "jim sweeney" AND performer_2 = "steve steen"
What is the sum of the episode numbers where chip esten is the 4th performer and christopher smith was the 2nd performer?
CREATE TABLE table_name_37 (episode INTEGER, performer_4 VARCHAR, performer_2 VARCHAR)
SELECT SUM(episode) FROM table_name_37 WHERE performer_4 = "chip esten" AND performer_2 = "christopher smith"
### Context: CREATE TABLE table_name_37 (episode INTEGER, performer_4 VARCHAR, performer_2 VARCHAR) ### Question: What is the sum of the episode numbers where chip esten is the 4th performer and christopher smith was the 2nd performer? ### Answer: SELECT SUM(episode) FROM table_name_37 WHERE performer_4 = "chip esten" AND performer_2 = "christopher smith"
What is the sum of the episodes where chip esten was the 4th performer and jim meskimen was the 1st performer?
CREATE TABLE table_name_96 (episode INTEGER, performer_4 VARCHAR, performer_1 VARCHAR)
SELECT SUM(episode) FROM table_name_96 WHERE performer_4 = "chip esten" AND performer_1 = "jim meskimen"
### Context: CREATE TABLE table_name_96 (episode INTEGER, performer_4 VARCHAR, performer_1 VARCHAR) ### Question: What is the sum of the episodes where chip esten was the 4th performer and jim meskimen was the 1st performer? ### Answer: SELECT SUM(episode) FROM table_name_96 WHERE performer_4 = "chip esten" AND performer_1 = "jim meskimen"
Who was the 3rd performer when christopher smith was the 2nd performer?
CREATE TABLE table_name_19 (performer_3 VARCHAR, performer_2 VARCHAR)
SELECT performer_3 FROM table_name_19 WHERE performer_2 = "christopher smith"
### Context: CREATE TABLE table_name_19 (performer_3 VARCHAR, performer_2 VARCHAR) ### Question: Who was the 3rd performer when christopher smith was the 2nd performer? ### Answer: SELECT performer_3 FROM table_name_19 WHERE performer_2 = "christopher smith"
Which Record has a Time of 4:50?
CREATE TABLE table_name_58 (record VARCHAR, time VARCHAR)
SELECT record FROM table_name_58 WHERE time = "4:50"
### Context: CREATE TABLE table_name_58 (record VARCHAR, time VARCHAR) ### Question: Which Record has a Time of 4:50? ### Answer: SELECT record FROM table_name_58 WHERE time = "4:50"
Which Event has a Resolution of loss, and a Record of 12–2?
CREATE TABLE table_name_56 (event VARCHAR, res VARCHAR, record VARCHAR)
SELECT event FROM table_name_56 WHERE res = "loss" AND record = "12–2"
### Context: CREATE TABLE table_name_56 (event VARCHAR, res VARCHAR, record VARCHAR) ### Question: Which Event has a Resolution of loss, and a Record of 12–2? ### Answer: SELECT event FROM table_name_56 WHERE res = "loss" AND record = "12–2"
Which Drawn has a Difference of 14?
CREATE TABLE table_name_58 (drawn INTEGER, difference VARCHAR)
SELECT AVG(drawn) FROM table_name_58 WHERE difference = "14"
### Context: CREATE TABLE table_name_58 (drawn INTEGER, difference VARCHAR) ### Question: Which Drawn has a Difference of 14? ### Answer: SELECT AVG(drawn) FROM table_name_58 WHERE difference = "14"
Which Played has a Lost larger than 2, and a Team of américa?
CREATE TABLE table_name_4 (played VARCHAR, lost VARCHAR, team VARCHAR)
SELECT played FROM table_name_4 WHERE lost > 2 AND team = "américa"
### Context: CREATE TABLE table_name_4 (played VARCHAR, lost VARCHAR, team VARCHAR) ### Question: Which Played has a Lost larger than 2, and a Team of américa? ### Answer: SELECT played FROM table_name_4 WHERE lost > 2 AND team = "américa"
What's the number of touchdowns that there are 0 field goals, less than 5 points, and had Joe Maddock playing?
CREATE TABLE table_name_31 (touchdowns INTEGER, points VARCHAR, field_goals VARCHAR, player VARCHAR)
SELECT SUM(touchdowns) FROM table_name_31 WHERE field_goals = 0 AND player = "joe maddock" AND points < 5
### Context: CREATE TABLE table_name_31 (touchdowns INTEGER, points VARCHAR, field_goals VARCHAR, player VARCHAR) ### Question: What's the number of touchdowns that there are 0 field goals, less than 5 points, and had Joe Maddock playing? ### Answer: SELECT SUM(touchdowns) FROM table_name_31 WHERE field_goals = 0 AND player = "joe maddock" AND points < 5
what is the class of w269ax
CREATE TABLE table_name_90 (class VARCHAR, call_sign VARCHAR)
SELECT class FROM table_name_90 WHERE call_sign = "w269ax"
### Context: CREATE TABLE table_name_90 (class VARCHAR, call_sign VARCHAR) ### Question: what is the class of w269ax ### Answer: SELECT class FROM table_name_90 WHERE call_sign = "w269ax"
What is the match report of the match on 20 August?
CREATE TABLE table_name_12 (match_report VARCHAR, date VARCHAR)
SELECT match_report FROM table_name_12 WHERE date = "20 august"
### Context: CREATE TABLE table_name_12 (match_report VARCHAR, date VARCHAR) ### Question: What is the match report of the match on 20 August? ### Answer: SELECT match_report FROM table_name_12 WHERE date = "20 august"
What is the origin for the launch taking place in 2010?
CREATE TABLE table_name_71 (origin VARCHAR, launch VARCHAR)
SELECT origin FROM table_name_71 WHERE launch = 2010
### Context: CREATE TABLE table_name_71 (origin VARCHAR, launch VARCHAR) ### Question: What is the origin for the launch taking place in 2010? ### Answer: SELECT origin FROM table_name_71 WHERE launch = 2010
What is the origin for the item with an owner of Hunan Broadcasting System (HBS)?
CREATE TABLE table_name_82 (origin VARCHAR, owner VARCHAR)
SELECT origin FROM table_name_82 WHERE owner = "hunan broadcasting system (hbs)"
### Context: CREATE TABLE table_name_82 (origin VARCHAR, owner VARCHAR) ### Question: What is the origin for the item with an owner of Hunan Broadcasting System (HBS)? ### Answer: SELECT origin FROM table_name_82 WHERE owner = "hunan broadcasting system (hbs)"
If the college is Trinity, what position is listed?
CREATE TABLE table_name_40 (position VARCHAR, college VARCHAR)
SELECT position FROM table_name_40 WHERE college = "trinity"
### Context: CREATE TABLE table_name_40 (position VARCHAR, college VARCHAR) ### Question: If the college is Trinity, what position is listed? ### Answer: SELECT position FROM table_name_40 WHERE college = "trinity"
How many picks did the College of USC wind up getting?
CREATE TABLE table_name_67 (pick__number VARCHAR, college VARCHAR)
SELECT COUNT(pick__number) FROM table_name_67 WHERE college = "usc"
### Context: CREATE TABLE table_name_67 (pick__number VARCHAR, college VARCHAR) ### Question: How many picks did the College of USC wind up getting? ### Answer: SELECT COUNT(pick__number) FROM table_name_67 WHERE college = "usc"
For Pick #323, which round is it?
CREATE TABLE table_name_41 (round VARCHAR, pick__number VARCHAR)
SELECT round FROM table_name_41 WHERE pick__number = 323
### Context: CREATE TABLE table_name_41 (round VARCHAR, pick__number VARCHAR) ### Question: For Pick #323, which round is it? ### Answer: SELECT round FROM table_name_41 WHERE pick__number = 323
What score has amblecote as the venue?
CREATE TABLE table_name_97 (score VARCHAR, venue VARCHAR)
SELECT score FROM table_name_97 WHERE venue = "amblecote"
### Context: CREATE TABLE table_name_97 (score VARCHAR, venue VARCHAR) ### Question: What score has amblecote as the venue? ### Answer: SELECT score FROM table_name_97 WHERE venue = "amblecote"
What city has riverside ground as the venue, with a year prior to 1998?
CREATE TABLE table_name_16 (city VARCHAR, venue VARCHAR, year VARCHAR)
SELECT city FROM table_name_16 WHERE venue = "riverside ground" AND year < 1998
### Context: CREATE TABLE table_name_16 (city VARCHAR, venue VARCHAR, year VARCHAR) ### Question: What city has riverside ground as the venue, with a year prior to 1998? ### Answer: SELECT city FROM table_name_16 WHERE venue = "riverside ground" AND year < 1998
What is the lowest year that has chester-le-street as the city, with 345 runs as the score?
CREATE TABLE table_name_49 (year INTEGER, city VARCHAR, score VARCHAR)
SELECT MIN(year) FROM table_name_49 WHERE city = "chester-le-street" AND score = "345 runs"
### Context: CREATE TABLE table_name_49 (year INTEGER, city VARCHAR, score VARCHAR) ### Question: What is the lowest year that has chester-le-street as the city, with 345 runs as the score? ### Answer: SELECT MIN(year) FROM table_name_49 WHERE city = "chester-le-street" AND score = "345 runs"
What year has 385 runs as the score?
CREATE TABLE table_name_38 (year VARCHAR, score VARCHAR)
SELECT year FROM table_name_38 WHERE score = "385 runs"
### Context: CREATE TABLE table_name_38 (year VARCHAR, score VARCHAR) ### Question: What year has 385 runs as the score? ### Answer: SELECT year FROM table_name_38 WHERE score = "385 runs"
What score has 1998 as the year?
CREATE TABLE table_name_82 (score VARCHAR, year VARCHAR)
SELECT score FROM table_name_82 WHERE year = 1998
### Context: CREATE TABLE table_name_82 (score VARCHAR, year VARCHAR) ### Question: What score has 1998 as the year? ### Answer: SELECT score FROM table_name_82 WHERE year = 1998
What is the 2nd (m) value for Gregor Schlierenzauer?
CREATE TABLE table_name_5 (name VARCHAR)
SELECT MIN(2 AS nd__m_) FROM table_name_5 WHERE name = "gregor schlierenzauer"
### Context: CREATE TABLE table_name_5 (name VARCHAR) ### Question: What is the 2nd (m) value for Gregor Schlierenzauer? ### Answer: SELECT MIN(2 AS nd__m_) FROM table_name_5 WHERE name = "gregor schlierenzauer"
What is the Date of the tournament with a score of 199 (–17)?
CREATE TABLE table_name_58 (date VARCHAR, score VARCHAR)
SELECT date FROM table_name_58 WHERE score = "199 (–17)"
### Context: CREATE TABLE table_name_58 (date VARCHAR, score VARCHAR) ### Question: What is the Date of the tournament with a score of 199 (–17)? ### Answer: SELECT date FROM table_name_58 WHERE score = "199 (–17)"
What was the amount of the 1st prize when paul azinger (9) was the winner?
CREATE TABLE table_name_95 (winner VARCHAR)
SELECT AVG(1 AS st_prize___) AS $__ FROM table_name_95 WHERE winner = "paul azinger (9)"
### Context: CREATE TABLE table_name_95 (winner VARCHAR) ### Question: What was the amount of the 1st prize when paul azinger (9) was the winner? ### Answer: SELECT AVG(1 AS st_prize___) AS $__ FROM table_name_95 WHERE winner = "paul azinger (9)"
What is the name of the winner of the tour championship tournament?
CREATE TABLE table_name_73 (winner VARCHAR, tournament VARCHAR)
SELECT winner FROM table_name_73 WHERE tournament = "the tour championship"
### Context: CREATE TABLE table_name_73 (winner VARCHAR, tournament VARCHAR) ### Question: What is the name of the winner of the tour championship tournament? ### Answer: SELECT winner FROM table_name_73 WHERE tournament = "the tour championship"
What is the Date of the at&t pebble beach national pro-am Tournament?
CREATE TABLE table_name_91 (date VARCHAR, tournament VARCHAR)
SELECT date FROM table_name_91 WHERE tournament = "at&t pebble beach national pro-am"
### Context: CREATE TABLE table_name_91 (date VARCHAR, tournament VARCHAR) ### Question: What is the Date of the at&t pebble beach national pro-am Tournament? ### Answer: SELECT date FROM table_name_91 WHERE tournament = "at&t pebble beach national pro-am"
Which Site has a Sport of w swimming?
CREATE TABLE table_name_38 (site VARCHAR, sport VARCHAR)
SELECT site FROM table_name_38 WHERE sport = "w swimming"
### Context: CREATE TABLE table_name_38 (site VARCHAR, sport VARCHAR) ### Question: Which Site has a Sport of w swimming? ### Answer: SELECT site FROM table_name_38 WHERE sport = "w swimming"
Which Series are on september 15, 2007?
CREATE TABLE table_name_53 (series VARCHAR, date VARCHAR)
SELECT series FROM table_name_53 WHERE date = "september 15, 2007"
### Context: CREATE TABLE table_name_53 (series VARCHAR, date VARCHAR) ### Question: Which Series are on september 15, 2007? ### Answer: SELECT series FROM table_name_53 WHERE date = "september 15, 2007"
What position did the 2010-11 USA ír player have?
CREATE TABLE table_name_5 (position VARCHAR, season VARCHAR, nationality VARCHAR, team VARCHAR)
SELECT position FROM table_name_5 WHERE nationality = "usa" AND team = "ír" AND season = "2010-11"
### Context: CREATE TABLE table_name_5 (position VARCHAR, season VARCHAR, nationality VARCHAR, team VARCHAR) ### Question: What position did the 2010-11 USA ír player have? ### Answer: SELECT position FROM table_name_5 WHERE nationality = "usa" AND team = "ír" AND season = "2010-11"
What position did the kr team player play?
CREATE TABLE table_name_15 (position VARCHAR, team VARCHAR)
SELECT position FROM table_name_15 WHERE team = "kr"
### Context: CREATE TABLE table_name_15 (position VARCHAR, team VARCHAR) ### Question: What position did the kr team player play? ### Answer: SELECT position FROM table_name_15 WHERE team = "kr"
What team has Steinar Kaldal, a guard / forward?
CREATE TABLE table_name_57 (team VARCHAR, position VARCHAR, player VARCHAR)
SELECT team FROM table_name_57 WHERE position = "guard / forward" AND player = "steinar kaldal"
### Context: CREATE TABLE table_name_57 (team VARCHAR, position VARCHAR, player VARCHAR) ### Question: What team has Steinar Kaldal, a guard / forward? ### Answer: SELECT team FROM table_name_57 WHERE position = "guard / forward" AND player = "steinar kaldal"
What team did the 2003-04 winner play for?
CREATE TABLE table_name_68 (team VARCHAR, season VARCHAR)
SELECT team FROM table_name_68 WHERE season = "2003-04"
### Context: CREATE TABLE table_name_68 (team VARCHAR, season VARCHAR) ### Question: What team did the 2003-04 winner play for? ### Answer: SELECT team FROM table_name_68 WHERE season = "2003-04"
Which region has and eyeball label and catalogue 7200222?
CREATE TABLE table_name_23 (region VARCHAR, label VARCHAR, catalogue VARCHAR)
SELECT region FROM table_name_23 WHERE label = "eyeball" AND catalogue = "7200222"
### Context: CREATE TABLE table_name_23 (region VARCHAR, label VARCHAR, catalogue VARCHAR) ### Question: Which region has and eyeball label and catalogue 7200222? ### Answer: SELECT region FROM table_name_23 WHERE label = "eyeball" AND catalogue = "7200222"
Which catalogue is from Japan?
CREATE TABLE table_name_31 (catalogue VARCHAR, region VARCHAR)
SELECT catalogue FROM table_name_31 WHERE region = "japan"
### Context: CREATE TABLE table_name_31 (catalogue VARCHAR, region VARCHAR) ### Question: Which catalogue is from Japan? ### Answer: SELECT catalogue FROM table_name_31 WHERE region = "japan"
What is the format for the United States dated July 23, 2002?
CREATE TABLE table_name_84 (format VARCHAR, region VARCHAR, date VARCHAR)
SELECT format FROM table_name_84 WHERE region = "united states" AND date = "july 23, 2002"
### Context: CREATE TABLE table_name_84 (format VARCHAR, region VARCHAR, date VARCHAR) ### Question: What is the format for the United States dated July 23, 2002? ### Answer: SELECT format FROM table_name_84 WHERE region = "united states" AND date = "july 23, 2002"
What is the label for catalogue 7200222?
CREATE TABLE table_name_77 (label VARCHAR, catalogue VARCHAR)
SELECT label FROM table_name_77 WHERE catalogue = "7200222"
### Context: CREATE TABLE table_name_77 (label VARCHAR, catalogue VARCHAR) ### Question: What is the label for catalogue 7200222? ### Answer: SELECT label FROM table_name_77 WHERE catalogue = "7200222"
What is Marc's Surname?
CREATE TABLE table_name_38 (surname VARCHAR, first VARCHAR)
SELECT surname FROM table_name_38 WHERE first = "marc"
### Context: CREATE TABLE table_name_38 (surname VARCHAR, first VARCHAR) ### Question: What is Marc's Surname? ### Answer: SELECT surname FROM table_name_38 WHERE first = "marc"
What is the highest uni# of the person with the first name Todd?
CREATE TABLE table_name_32 (uni_number INTEGER, first VARCHAR)
SELECT MAX(uni_number) FROM table_name_32 WHERE first = "todd"
### Context: CREATE TABLE table_name_32 (uni_number INTEGER, first VARCHAR) ### Question: What is the highest uni# of the person with the first name Todd? ### Answer: SELECT MAX(uni_number) FROM table_name_32 WHERE first = "todd"
Which position does #14 play?
CREATE TABLE table_name_2 (position VARCHAR, uni_number VARCHAR)
SELECT position FROM table_name_2 WHERE uni_number = 14
### Context: CREATE TABLE table_name_2 (position VARCHAR, uni_number VARCHAR) ### Question: Which position does #14 play? ### Answer: SELECT position FROM table_name_2 WHERE uni_number = 14
Which does the lhp player with the first name lachlan bat?
CREATE TABLE table_name_9 (bats VARCHAR, position VARCHAR, first VARCHAR)
SELECT bats FROM table_name_9 WHERE position = "lhp" AND first = "lachlan"
### Context: CREATE TABLE table_name_9 (bats VARCHAR, position VARCHAR, first VARCHAR) ### Question: Which does the lhp player with the first name lachlan bat? ### Answer: SELECT bats FROM table_name_9 WHERE position = "lhp" AND first = "lachlan"
How many were in Attendance on December 11, 1954?
CREATE TABLE table_name_14 (attendance VARCHAR, date VARCHAR)
SELECT COUNT(attendance) FROM table_name_14 WHERE date = "december 11, 1954"
### Context: CREATE TABLE table_name_14 (attendance VARCHAR, date VARCHAR) ### Question: How many were in Attendance on December 11, 1954? ### Answer: SELECT COUNT(attendance) FROM table_name_14 WHERE date = "december 11, 1954"
What was the Result on Week 3?
CREATE TABLE table_name_62 (result VARCHAR, week VARCHAR)
SELECT result FROM table_name_62 WHERE week = 3
### Context: CREATE TABLE table_name_62 (result VARCHAR, week VARCHAR) ### Question: What was the Result on Week 3? ### Answer: SELECT result FROM table_name_62 WHERE week = 3
On what Week was the Detroit Lions the Opponent?
CREATE TABLE table_name_66 (week VARCHAR, opponent VARCHAR)
SELECT week FROM table_name_66 WHERE opponent = "detroit lions"
### Context: CREATE TABLE table_name_66 (week VARCHAR, opponent VARCHAR) ### Question: On what Week was the Detroit Lions the Opponent? ### Answer: SELECT week FROM table_name_66 WHERE opponent = "detroit lions"
What was the rangers' record on Game 14?
CREATE TABLE table_name_44 (record VARCHAR, game VARCHAR)
SELECT record FROM table_name_44 WHERE game = 14
### Context: CREATE TABLE table_name_44 (record VARCHAR, game VARCHAR) ### Question: What was the rangers' record on Game 14? ### Answer: SELECT record FROM table_name_44 WHERE game = 14
What is the highest game number when the rangers had a record of 11-11-1 and the date was after November 29?
CREATE TABLE table_name_44 (game INTEGER, record VARCHAR, november VARCHAR)
SELECT MAX(game) FROM table_name_44 WHERE record = "11-11-1" AND november > 29
### Context: CREATE TABLE table_name_44 (game INTEGER, record VARCHAR, november VARCHAR) ### Question: What is the highest game number when the rangers had a record of 11-11-1 and the date was after November 29? ### Answer: SELECT MAX(game) FROM table_name_44 WHERE record = "11-11-1" AND november > 29
What's Francis Harris' position?
CREATE TABLE table_name_83 (position VARCHAR, name VARCHAR)
SELECT position FROM table_name_83 WHERE name = "francis harris"
### Context: CREATE TABLE table_name_83 (position VARCHAR, name VARCHAR) ### Question: What's Francis Harris' position? ### Answer: SELECT position FROM table_name_83 WHERE name = "francis harris"
Which place has more area (km 2) than 34.42?
CREATE TABLE table_name_99 (place VARCHAR, area__km_2__ INTEGER)
SELECT place FROM table_name_99 WHERE area__km_2__ > 34.42
### Context: CREATE TABLE table_name_99 (place VARCHAR, area__km_2__ INTEGER) ### Question: Which place has more area (km 2) than 34.42? ### Answer: SELECT place FROM table_name_99 WHERE area__km_2__ > 34.42
What is the lowest 4 hoops, 2 clubs of the nation with a total of 38.25?
CREATE TABLE table_name_66 (_2_clubs VARCHAR, total VARCHAR)
SELECT MIN(4 AS _hoops), _2_clubs FROM table_name_66 WHERE total = 38.25
### Context: CREATE TABLE table_name_66 (_2_clubs VARCHAR, total VARCHAR) ### Question: What is the lowest 4 hoops, 2 clubs of the nation with a total of 38.25? ### Answer: SELECT MIN(4 AS _hoops), _2_clubs FROM table_name_66 WHERE total = 38.25
What is the total of Greece, which is placed below 8?
CREATE TABLE table_name_32 (total VARCHAR, nation VARCHAR, place VARCHAR)
SELECT COUNT(total) FROM table_name_32 WHERE nation = "greece" AND place > 8
### Context: CREATE TABLE table_name_32 (total VARCHAR, nation VARCHAR, place VARCHAR) ### Question: What is the total of Greece, which is placed below 8? ### Answer: SELECT COUNT(total) FROM table_name_32 WHERE nation = "greece" AND place > 8
What is the highest 4 hoops, 2 clubs of Belarus, which has a total less than 38.25?
CREATE TABLE table_name_14 (_2_clubs VARCHAR, nation VARCHAR, total VARCHAR)
SELECT MAX(4 AS _hoops), _2_clubs FROM table_name_14 WHERE nation = "belarus" AND total < 38.25
### Context: CREATE TABLE table_name_14 (_2_clubs VARCHAR, nation VARCHAR, total VARCHAR) ### Question: What is the highest 4 hoops, 2 clubs of Belarus, which has a total less than 38.25? ### Answer: SELECT MAX(4 AS _hoops), _2_clubs FROM table_name_14 WHERE nation = "belarus" AND total < 38.25
Which Nationality has a Name of janne happonen?
CREATE TABLE table_name_33 (nationality VARCHAR, name VARCHAR)
SELECT nationality FROM table_name_33 WHERE name = "janne happonen"
### Context: CREATE TABLE table_name_33 (nationality VARCHAR, name VARCHAR) ### Question: Which Nationality has a Name of janne happonen? ### Answer: SELECT nationality FROM table_name_33 WHERE name = "janne happonen"
Which Nationality has a Rank larger than 3, and a Name of tom hilde?
CREATE TABLE table_name_71 (nationality VARCHAR, rank VARCHAR, name VARCHAR)
SELECT nationality FROM table_name_71 WHERE rank > 3 AND name = "tom hilde"
### Context: CREATE TABLE table_name_71 (nationality VARCHAR, rank VARCHAR, name VARCHAR) ### Question: Which Nationality has a Rank larger than 3, and a Name of tom hilde? ### Answer: SELECT nationality FROM table_name_71 WHERE rank > 3 AND name = "tom hilde"
Which Name has a Nationality of nor, and Points of 136?
CREATE TABLE table_name_99 (name VARCHAR, nationality VARCHAR, points VARCHAR)
SELECT name FROM table_name_99 WHERE nationality = "nor" AND points = 136
### Context: CREATE TABLE table_name_99 (name VARCHAR, nationality VARCHAR, points VARCHAR) ### Question: Which Name has a Nationality of nor, and Points of 136? ### Answer: SELECT name FROM table_name_99 WHERE nationality = "nor" AND points = 136
What was the average rank of Wolfgang Schwarz with greater than 13 places?
CREATE TABLE table_name_56 (rank INTEGER, name VARCHAR, places VARCHAR)
SELECT AVG(rank) FROM table_name_56 WHERE name = "wolfgang schwarz" AND places > 13
### Context: CREATE TABLE table_name_56 (rank INTEGER, name VARCHAR, places VARCHAR) ### Question: What was the average rank of Wolfgang Schwarz with greater than 13 places? ### Answer: SELECT AVG(rank) FROM table_name_56 WHERE name = "wolfgang schwarz" AND places > 13
What nation had 1399.3 points?
CREATE TABLE table_name_35 (nation VARCHAR, points VARCHAR)
SELECT nation FROM table_name_35 WHERE points = 1399.3
### Context: CREATE TABLE table_name_35 (nation VARCHAR, points VARCHAR) ### Question: What nation had 1399.3 points? ### Answer: SELECT nation FROM table_name_35 WHERE points = 1399.3
What is the lowest round number for the fight that had a time of 1:09?
CREATE TABLE table_name_12 (round INTEGER, time VARCHAR)
SELECT MIN(round) FROM table_name_12 WHERE time = "1:09"
### Context: CREATE TABLE table_name_12 (round INTEGER, time VARCHAR) ### Question: What is the lowest round number for the fight that had a time of 1:09? ### Answer: SELECT MIN(round) FROM table_name_12 WHERE time = "1:09"
How much Overall has a Pick # smaller than 20, and a Round smaller than 6?
CREATE TABLE table_name_13 (overall INTEGER, pick__number VARCHAR, round VARCHAR)
SELECT SUM(overall) FROM table_name_13 WHERE pick__number < 20 AND round < 6
### Context: CREATE TABLE table_name_13 (overall INTEGER, pick__number VARCHAR, round VARCHAR) ### Question: How much Overall has a Pick # smaller than 20, and a Round smaller than 6? ### Answer: SELECT SUM(overall) FROM table_name_13 WHERE pick__number < 20 AND round < 6
Which average Round has a Pick # larger than 20, and a College of virginia, and an Overall larger than 127?
CREATE TABLE table_name_43 (round INTEGER, overall VARCHAR, pick__number VARCHAR, college VARCHAR)
SELECT AVG(round) FROM table_name_43 WHERE pick__number > 20 AND college = "virginia" AND overall > 127
### Context: CREATE TABLE table_name_43 (round INTEGER, overall VARCHAR, pick__number VARCHAR, college VARCHAR) ### Question: Which average Round has a Pick # larger than 20, and a College of virginia, and an Overall larger than 127? ### Answer: SELECT AVG(round) FROM table_name_43 WHERE pick__number > 20 AND college = "virginia" AND overall > 127
How many picks does chad owens have?
CREATE TABLE table_name_47 (pick__number VARCHAR, name VARCHAR)
SELECT COUNT(pick__number) FROM table_name_47 WHERE name = "chad owens"
### Context: CREATE TABLE table_name_47 (pick__number VARCHAR, name VARCHAR) ### Question: How many picks does chad owens have? ### Answer: SELECT COUNT(pick__number) FROM table_name_47 WHERE name = "chad owens"
What is the lowest value in April with New York Rangers as opponent for a game less than 82?
CREATE TABLE table_name_90 (april INTEGER, opponent VARCHAR, game VARCHAR)
SELECT MIN(april) FROM table_name_90 WHERE opponent = "new york rangers" AND game < 82
### Context: CREATE TABLE table_name_90 (april INTEGER, opponent VARCHAR, game VARCHAR) ### Question: What is the lowest value in April with New York Rangers as opponent for a game less than 82? ### Answer: SELECT MIN(april) FROM table_name_90 WHERE opponent = "new york rangers" AND game < 82
What is the highest value in April with a record of 35–37–11 and more than 81 points?
CREATE TABLE table_name_99 (april INTEGER, record VARCHAR, points VARCHAR)
SELECT MAX(april) FROM table_name_99 WHERE record = "35–37–11" AND points > 81
### Context: CREATE TABLE table_name_99 (april INTEGER, record VARCHAR, points VARCHAR) ### Question: What is the highest value in April with a record of 35–37–11 and more than 81 points? ### Answer: SELECT MAX(april) FROM table_name_99 WHERE record = "35–37–11" AND points > 81
What is the name of the winner when the Score was 274 (–14) in tennessee?
CREATE TABLE table_name_40 (winner VARCHAR, score VARCHAR, location VARCHAR)
SELECT winner FROM table_name_40 WHERE score = "274 (–14)" AND location = "tennessee"
### Context: CREATE TABLE table_name_40 (winner VARCHAR, score VARCHAR, location VARCHAR) ### Question: What is the name of the winner when the Score was 274 (–14) in tennessee? ### Answer: SELECT winner FROM table_name_40 WHERE score = "274 (–14)" AND location = "tennessee"
What is the winners name at the western open?
CREATE TABLE table_name_23 (winner VARCHAR, tournament VARCHAR)
SELECT winner FROM table_name_23 WHERE tournament = "western open"
### Context: CREATE TABLE table_name_23 (winner VARCHAR, tournament VARCHAR) ### Question: What is the winners name at the western open? ### Answer: SELECT winner FROM table_name_23 WHERE tournament = "western open"
What is the score of the Tournament named danny thomas memphis classic?
CREATE TABLE table_name_23 (score VARCHAR, tournament VARCHAR)
SELECT score FROM table_name_23 WHERE tournament = "danny thomas memphis classic"
### Context: CREATE TABLE table_name_23 (score VARCHAR, tournament VARCHAR) ### Question: What is the score of the Tournament named danny thomas memphis classic? ### Answer: SELECT score FROM table_name_23 WHERE tournament = "danny thomas memphis classic"
What is the name of the Winner in north carolina at the greater greensboro open?
CREATE TABLE table_name_71 (winner VARCHAR, location VARCHAR, tournament VARCHAR)
SELECT winner FROM table_name_71 WHERE location = "north carolina" AND tournament = "greater greensboro open"
### Context: CREATE TABLE table_name_71 (winner VARCHAR, location VARCHAR, tournament VARCHAR) ### Question: What is the name of the Winner in north carolina at the greater greensboro open? ### Answer: SELECT winner FROM table_name_71 WHERE location = "north carolina" AND tournament = "greater greensboro open"
What is the Location of the byron nelson golf classic?
CREATE TABLE table_name_94 (location VARCHAR, tournament VARCHAR)
SELECT location FROM table_name_94 WHERE tournament = "byron nelson golf classic"
### Context: CREATE TABLE table_name_94 (location VARCHAR, tournament VARCHAR) ### Question: What is the Location of the byron nelson golf classic? ### Answer: SELECT location FROM table_name_94 WHERE tournament = "byron nelson golf classic"
What is the position of player Tiffany Garofano (2)?
CREATE TABLE table_name_59 (position VARCHAR, player VARCHAR)
SELECT position FROM table_name_59 WHERE player = "tiffany garofano (2)"
### Context: CREATE TABLE table_name_59 (position VARCHAR, player VARCHAR) ### Question: What is the position of player Tiffany Garofano (2)? ### Answer: SELECT position FROM table_name_59 WHERE player = "tiffany garofano (2)"