question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
What was the date of the game that led to a 48-21-6 record?
CREATE TABLE table_name_33 (date VARCHAR, record VARCHAR)
SELECT date FROM table_name_33 WHERE record = "48-21-6"
### Context: CREATE TABLE table_name_33 (date VARCHAR, record VARCHAR) ### Question: What was the date of the game that led to a 48-21-6 record? ### Answer: SELECT date FROM table_name_33 WHERE record = "48-21-6"
Name the average attendance from june 11
CREATE TABLE table_name_50 (attendance INTEGER, date VARCHAR)
SELECT AVG(attendance) FROM table_name_50 WHERE date = "june 11"
### Context: CREATE TABLE table_name_50 (attendance INTEGER, date VARCHAR) ### Question: Name the average attendance from june 11 ### Answer: SELECT AVG(attendance) FROM table_name_50 WHERE date = "june 11"
What is south africa's margin of victory?
CREATE TABLE table_name_29 (margin_of_victory VARCHAR, country VARCHAR)
SELECT margin_of_victory FROM table_name_29 WHERE country = "south africa"
### Context: CREATE TABLE table_name_29 (margin_of_victory VARCHAR, country VARCHAR) ### Question: What is south africa's margin of victory? ### Answer: SELECT margin_of_victory FROM table_name_29 WHERE country = "south africa"
Which Score has a Year larger than 1980, and a Margin of victory of 2 strokes, and a Country of united states, and a Player of jim furyk?
CREATE TABLE table_name_68 (score VARCHAR, player VARCHAR, country VARCHAR, year VARCHAR, margin_of_victory VARCHAR)
SELECT score FROM table_name_68 WHERE year > 1980 AND margin_of_victory = "2 strokes" AND country = "united states" AND player = "jim furyk"
### Context: CREATE TABLE table_name_68 (score VARCHAR, player VARCHAR, country VARCHAR, year VARCHAR, margin_of_victory VARCHAR) ### Question: Which Score has a Year larger than 1980, and a Margin of victory of 2 strokes, and a Country of united states, and a Player of jim furyk? ### Answer: SELECT score FROM table_name_68 WHERE year > 1980 AND margin_of_victory = "2 strokes" AND country = "united states" AND player = "jim furyk"
What year was the Beaudesert suburb club founded
CREATE TABLE table_name_95 (founded VARCHAR, suburb VARCHAR)
SELECT founded FROM table_name_95 WHERE suburb = "beaudesert"
### Context: CREATE TABLE table_name_95 (founded VARCHAR, suburb VARCHAR) ### Question: What year was the Beaudesert suburb club founded ### Answer: SELECT founded FROM table_name_95 WHERE suburb = "beaudesert"
What year did the Nerang Suburb get founded?
CREATE TABLE table_name_96 (founded VARCHAR, suburb VARCHAR)
SELECT COUNT(founded) FROM table_name_96 WHERE suburb = "nerang"
### Context: CREATE TABLE table_name_96 (founded VARCHAR, suburb VARCHAR) ### Question: What year did the Nerang Suburb get founded? ### Answer: SELECT COUNT(founded) FROM table_name_96 WHERE suburb = "nerang"
Who was the opponent when the Phillies played on April 28?
CREATE TABLE table_name_77 (opponent VARCHAR, date VARCHAR)
SELECT opponent FROM table_name_77 WHERE date = "april 28"
### Context: CREATE TABLE table_name_77 (opponent VARCHAR, date VARCHAR) ### Question: Who was the opponent when the Phillies played on April 28? ### Answer: SELECT opponent FROM table_name_77 WHERE date = "april 28"
What is the run rate for rank 4?
CREATE TABLE table_name_61 (run_rate INTEGER, rank VARCHAR)
SELECT MAX(run_rate) FROM table_name_61 WHERE rank = 4
### Context: CREATE TABLE table_name_61 (run_rate INTEGER, rank VARCHAR) ### Question: What is the run rate for rank 4? ### Answer: SELECT MAX(run_rate) FROM table_name_61 WHERE rank = 4
Chinese title of 反正 卓文萱 had what released?
CREATE TABLE table_name_44 (released VARCHAR, chinese_title VARCHAR)
SELECT released FROM table_name_44 WHERE chinese_title = "反正 卓文萱"
### Context: CREATE TABLE table_name_44 (released VARCHAR, chinese_title VARCHAR) ### Question: Chinese title of 反正 卓文萱 had what released? ### Answer: SELECT released FROM table_name_44 WHERE chinese_title = "反正 卓文萱"
Album # of 5th is what chinese title?
CREATE TABLE table_name_94 (chinese_title VARCHAR, album_number VARCHAR)
SELECT chinese_title FROM table_name_94 WHERE album_number = "5th"
### Context: CREATE TABLE table_name_94 (chinese_title VARCHAR, album_number VARCHAR) ### Question: Album # of 5th is what chinese title? ### Answer: SELECT chinese_title FROM table_name_94 WHERE album_number = "5th"
Album # of 1st was released on what date?
CREATE TABLE table_name_6 (released VARCHAR, album_number VARCHAR)
SELECT released FROM table_name_6 WHERE album_number = "1st"
### Context: CREATE TABLE table_name_6 (released VARCHAR, album_number VARCHAR) ### Question: Album # of 1st was released on what date? ### Answer: SELECT released FROM table_name_6 WHERE album_number = "1st"
Album # of 3rd is what chinese title?
CREATE TABLE table_name_57 (chinese_title VARCHAR, album_number VARCHAR)
SELECT chinese_title FROM table_name_57 WHERE album_number = "3rd"
### Context: CREATE TABLE table_name_57 (chinese_title VARCHAR, album_number VARCHAR) ### Question: Album # of 3rd is what chinese title? ### Answer: SELECT chinese_title FROM table_name_57 WHERE album_number = "3rd"
English title of oxygenie of happiness has what release date?
CREATE TABLE table_name_41 (released VARCHAR, english_title VARCHAR)
SELECT released FROM table_name_41 WHERE english_title = "oxygenie of happiness"
### Context: CREATE TABLE table_name_41 (released VARCHAR, english_title VARCHAR) ### Question: English title of oxygenie of happiness has what release date? ### Answer: SELECT released FROM table_name_41 WHERE english_title = "oxygenie of happiness"
Which Score has a Home of quebec nordiques on april 16?
CREATE TABLE table_name_83 (score VARCHAR, home VARCHAR, date VARCHAR)
SELECT score FROM table_name_83 WHERE home = "quebec nordiques" AND date = "april 16"
### Context: CREATE TABLE table_name_83 (score VARCHAR, home VARCHAR, date VARCHAR) ### Question: Which Score has a Home of quebec nordiques on april 16? ### Answer: SELECT score FROM table_name_83 WHERE home = "quebec nordiques" AND date = "april 16"
WHich Record has a Visitor of quebec nordiques with a Score of 7–5?
CREATE TABLE table_name_37 (record VARCHAR, visitor VARCHAR, score VARCHAR)
SELECT record FROM table_name_37 WHERE visitor = "quebec nordiques" AND score = "7–5"
### Context: CREATE TABLE table_name_37 (record VARCHAR, visitor VARCHAR, score VARCHAR) ### Question: WHich Record has a Visitor of quebec nordiques with a Score of 7–5? ### Answer: SELECT record FROM table_name_37 WHERE visitor = "quebec nordiques" AND score = "7–5"
Who is the Visitor on april 8?
CREATE TABLE table_name_94 (visitor VARCHAR, date VARCHAR)
SELECT visitor FROM table_name_94 WHERE date = "april 8"
### Context: CREATE TABLE table_name_94 (visitor VARCHAR, date VARCHAR) ### Question: Who is the Visitor on april 8? ### Answer: SELECT visitor FROM table_name_94 WHERE date = "april 8"
When has Score of 4–5 and quebec nordiques as Visitor?
CREATE TABLE table_name_92 (date VARCHAR, score VARCHAR, visitor VARCHAR)
SELECT date FROM table_name_92 WHERE score = "4–5" AND visitor = "quebec nordiques"
### Context: CREATE TABLE table_name_92 (date VARCHAR, score VARCHAR, visitor VARCHAR) ### Question: When has Score of 4–5 and quebec nordiques as Visitor? ### Answer: SELECT date FROM table_name_92 WHERE score = "4–5" AND visitor = "quebec nordiques"
WHo is the Visitor on april 14?
CREATE TABLE table_name_78 (visitor VARCHAR, date VARCHAR)
SELECT visitor FROM table_name_78 WHERE date = "april 14"
### Context: CREATE TABLE table_name_78 (visitor VARCHAR, date VARCHAR) ### Question: WHo is the Visitor on april 14? ### Answer: SELECT visitor FROM table_name_78 WHERE date = "april 14"
Which Record has a Visitor of quebec nordiques with a Score of 4–5?
CREATE TABLE table_name_58 (record VARCHAR, visitor VARCHAR, score VARCHAR)
SELECT record FROM table_name_58 WHERE visitor = "quebec nordiques" AND score = "4–5"
### Context: CREATE TABLE table_name_58 (record VARCHAR, visitor VARCHAR, score VARCHAR) ### Question: Which Record has a Visitor of quebec nordiques with a Score of 4–5? ### Answer: SELECT record FROM table_name_58 WHERE visitor = "quebec nordiques" AND score = "4–5"
What's the highest December against the Pittsburgh Penguins in a game larger than 27, with less than 41 points?
CREATE TABLE table_name_61 (december INTEGER, points VARCHAR, game VARCHAR, opponent VARCHAR)
SELECT MAX(december) FROM table_name_61 WHERE game > 27 AND opponent = "pittsburgh penguins" AND points < 41
### Context: CREATE TABLE table_name_61 (december INTEGER, points VARCHAR, game VARCHAR, opponent VARCHAR) ### Question: What's the highest December against the Pittsburgh Penguins in a game larger than 27, with less than 41 points? ### Answer: SELECT MAX(december) FROM table_name_61 WHERE game > 27 AND opponent = "pittsburgh penguins" AND points < 41
What's the score for December of 30?
CREATE TABLE table_name_48 (score VARCHAR, december VARCHAR)
SELECT score FROM table_name_48 WHERE december = 30
### Context: CREATE TABLE table_name_48 (score VARCHAR, december VARCHAR) ### Question: What's the score for December of 30? ### Answer: SELECT score FROM table_name_48 WHERE december = 30
What is the average number of games associated with 6 points and under 2 losses?
CREATE TABLE table_name_80 (games INTEGER, points VARCHAR, lost VARCHAR)
SELECT AVG(games) FROM table_name_80 WHERE points = 6 AND lost < 2
### Context: CREATE TABLE table_name_80 (games INTEGER, points VARCHAR, lost VARCHAR) ### Question: What is the average number of games associated with 6 points and under 2 losses? ### Answer: SELECT AVG(games) FROM table_name_80 WHERE points = 6 AND lost < 2
What is the low point total when there are over 5 games?
CREATE TABLE table_name_56 (points INTEGER, games INTEGER)
SELECT MIN(points) FROM table_name_56 WHERE games > 5
### Context: CREATE TABLE table_name_56 (points INTEGER, games INTEGER) ### Question: What is the low point total when there are over 5 games? ### Answer: SELECT MIN(points) FROM table_name_56 WHERE games > 5
What was the share of votes when there were more than 56 electors and the year was more recent than 1950?
CREATE TABLE table_name_95 (share_of_votes VARCHAR, electors VARCHAR, year VARCHAR)
SELECT share_of_votes FROM table_name_95 WHERE electors > 56 AND year > 1950
### Context: CREATE TABLE table_name_95 (share_of_votes VARCHAR, electors VARCHAR, year VARCHAR) ### Question: What was the share of votes when there were more than 56 electors and the year was more recent than 1950? ### Answer: SELECT share_of_votes FROM table_name_95 WHERE electors > 56 AND year > 1950
What is the total of electors when the share of votes was 11,0%?
CREATE TABLE table_name_70 (electors INTEGER, share_of_votes VARCHAR)
SELECT SUM(electors) FROM table_name_70 WHERE share_of_votes = "11,0%"
### Context: CREATE TABLE table_name_70 (electors INTEGER, share_of_votes VARCHAR) ### Question: What is the total of electors when the share of votes was 11,0%? ### Answer: SELECT SUM(electors) FROM table_name_70 WHERE share_of_votes = "11,0%"
Which Lost has Games larger than 7?
CREATE TABLE table_name_54 (lost INTEGER, games INTEGER)
SELECT AVG(lost) FROM table_name_54 WHERE games > 7
### Context: CREATE TABLE table_name_54 (lost INTEGER, games INTEGER) ### Question: Which Lost has Games larger than 7? ### Answer: SELECT AVG(lost) FROM table_name_54 WHERE games > 7
Which Points have a Lost smaller than 1, and Games larger than 7?
CREATE TABLE table_name_81 (points INTEGER, lost VARCHAR, games VARCHAR)
SELECT MAX(points) FROM table_name_81 WHERE lost < 1 AND games > 7
### Context: CREATE TABLE table_name_81 (points INTEGER, lost VARCHAR, games VARCHAR) ### Question: Which Points have a Lost smaller than 1, and Games larger than 7? ### Answer: SELECT MAX(points) FROM table_name_81 WHERE lost < 1 AND games > 7
Which Lost has Points larger than 13?
CREATE TABLE table_name_91 (lost INTEGER, points INTEGER)
SELECT AVG(lost) FROM table_name_91 WHERE points > 13
### Context: CREATE TABLE table_name_91 (lost INTEGER, points INTEGER) ### Question: Which Lost has Points larger than 13? ### Answer: SELECT AVG(lost) FROM table_name_91 WHERE points > 13
Which Points have a Drawn larger than 1?
CREATE TABLE table_name_98 (points INTEGER, drawn INTEGER)
SELECT AVG(points) FROM table_name_98 WHERE drawn > 1
### Context: CREATE TABLE table_name_98 (points INTEGER, drawn INTEGER) ### Question: Which Points have a Drawn larger than 1? ### Answer: SELECT AVG(points) FROM table_name_98 WHERE drawn > 1
Which Diameter has a Year of Issue of 1977?
CREATE TABLE table_name_28 (diameter VARCHAR, year_of_issue VARCHAR)
SELECT diameter FROM table_name_28 WHERE year_of_issue = 1977
### Context: CREATE TABLE table_name_28 (diameter VARCHAR, year_of_issue VARCHAR) ### Question: Which Diameter has a Year of Issue of 1977? ### Answer: SELECT diameter FROM table_name_28 WHERE year_of_issue = 1977
Which Year of Issue has a Thickness of 1.42mm?
CREATE TABLE table_name_52 (year_of_issue INTEGER, thickness VARCHAR)
SELECT MAX(year_of_issue) FROM table_name_52 WHERE thickness = "1.42mm"
### Context: CREATE TABLE table_name_52 (year_of_issue INTEGER, thickness VARCHAR) ### Question: Which Year of Issue has a Thickness of 1.42mm? ### Answer: SELECT MAX(year_of_issue) FROM table_name_52 WHERE thickness = "1.42mm"
Which Diameter has a Thickness of 1.3mm?
CREATE TABLE table_name_93 (diameter VARCHAR, thickness VARCHAR)
SELECT diameter FROM table_name_93 WHERE thickness = "1.3mm"
### Context: CREATE TABLE table_name_93 (diameter VARCHAR, thickness VARCHAR) ### Question: Which Diameter has a Thickness of 1.3mm? ### Answer: SELECT diameter FROM table_name_93 WHERE thickness = "1.3mm"
Which party's candidate is Grech Louis Grech?
CREATE TABLE table_name_36 (party VARCHAR, candidate VARCHAR)
SELECT party FROM table_name_36 WHERE candidate = "grech louis grech"
### Context: CREATE TABLE table_name_36 (party VARCHAR, candidate VARCHAR) ### Question: Which party's candidate is Grech Louis Grech? ### Answer: SELECT party FROM table_name_36 WHERE candidate = "grech louis grech"
What is the sport played in Iowa City on February 14, 2009?
CREATE TABLE table_name_17 (sport VARCHAR, site VARCHAR, date VARCHAR)
SELECT sport FROM table_name_17 WHERE site = "iowa city" AND date = "february 14, 2009"
### Context: CREATE TABLE table_name_17 (sport VARCHAR, site VARCHAR, date VARCHAR) ### Question: What is the sport played in Iowa City on February 14, 2009? ### Answer: SELECT sport FROM table_name_17 WHERE site = "iowa city" AND date = "february 14, 2009"
What is the series of the winning team in Iowa, for softball?
CREATE TABLE table_name_24 (series VARCHAR, winning_team VARCHAR, sport VARCHAR)
SELECT series FROM table_name_24 WHERE winning_team = "iowa" AND sport = "softball"
### Context: CREATE TABLE table_name_24 (series VARCHAR, winning_team VARCHAR, sport VARCHAR) ### Question: What is the series of the winning team in Iowa, for softball? ### Answer: SELECT series FROM table_name_24 WHERE winning_team = "iowa" AND sport = "softball"
What is the score of the match that was against alberto berasategui?
CREATE TABLE table_name_25 (score_in_the_final VARCHAR, opponent_in_the_final VARCHAR)
SELECT score_in_the_final FROM table_name_25 WHERE opponent_in_the_final = "alberto berasategui"
### Context: CREATE TABLE table_name_25 (score_in_the_final VARCHAR, opponent_in_the_final VARCHAR) ### Question: What is the score of the match that was against alberto berasategui? ### Answer: SELECT score_in_the_final FROM table_name_25 WHERE opponent_in_the_final = "alberto berasategui"
How many rebounds does Ann Wauters have?
CREATE TABLE table_name_89 (rebounds VARCHAR, name VARCHAR)
SELECT COUNT(rebounds) FROM table_name_89 WHERE name = "ann wauters"
### Context: CREATE TABLE table_name_89 (rebounds VARCHAR, name VARCHAR) ### Question: How many rebounds does Ann Wauters have? ### Answer: SELECT COUNT(rebounds) FROM table_name_89 WHERE name = "ann wauters"
Who played 10 games?
CREATE TABLE table_name_56 (name VARCHAR, games VARCHAR)
SELECT name FROM table_name_56 WHERE games = 10
### Context: CREATE TABLE table_name_56 (name VARCHAR, games VARCHAR) ### Question: Who played 10 games? ### Answer: SELECT name FROM table_name_56 WHERE games = 10
What is the total number of rebounds values for Ann Wauters?
CREATE TABLE table_name_56 (rebounds VARCHAR, name VARCHAR)
SELECT COUNT(rebounds) FROM table_name_56 WHERE name = "ann wauters"
### Context: CREATE TABLE table_name_56 (rebounds VARCHAR, name VARCHAR) ### Question: What is the total number of rebounds values for Ann Wauters? ### Answer: SELECT COUNT(rebounds) FROM table_name_56 WHERE name = "ann wauters"
Who did the Colts play against on September 25, 1966?
CREATE TABLE table_name_8 (opponent VARCHAR, date VARCHAR)
SELECT opponent FROM table_name_8 WHERE date = "september 25, 1966"
### Context: CREATE TABLE table_name_8 (opponent VARCHAR, date VARCHAR) ### Question: Who did the Colts play against on September 25, 1966? ### Answer: SELECT opponent FROM table_name_8 WHERE date = "september 25, 1966"
What is the date of the game with 40,005 in attendance?
CREATE TABLE table_name_61 (date VARCHAR, attendance VARCHAR)
SELECT date FROM table_name_61 WHERE attendance = "40,005"
### Context: CREATE TABLE table_name_61 (date VARCHAR, attendance VARCHAR) ### Question: What is the date of the game with 40,005 in attendance? ### Answer: SELECT date FROM table_name_61 WHERE attendance = "40,005"
What is the lowest week number for the game that was at milwaukee county stadium?
CREATE TABLE table_name_18 (week INTEGER, game_site VARCHAR)
SELECT MIN(week) FROM table_name_18 WHERE game_site = "milwaukee county stadium"
### Context: CREATE TABLE table_name_18 (week INTEGER, game_site VARCHAR) ### Question: What is the lowest week number for the game that was at milwaukee county stadium? ### Answer: SELECT MIN(week) FROM table_name_18 WHERE game_site = "milwaukee county stadium"
After week 11, what was the Result on December 13, 1964?
CREATE TABLE table_name_49 (result VARCHAR, week VARCHAR, date VARCHAR)
SELECT result FROM table_name_49 WHERE week > 11 AND date = "december 13, 1964"
### Context: CREATE TABLE table_name_49 (result VARCHAR, week VARCHAR, date VARCHAR) ### Question: After week 11, what was the Result on December 13, 1964? ### Answer: SELECT result FROM table_name_49 WHERE week > 11 AND date = "december 13, 1964"
After week 8, what was the Attendance on November 1, 1964?
CREATE TABLE table_name_43 (attendance INTEGER, date VARCHAR, week VARCHAR)
SELECT AVG(attendance) FROM table_name_43 WHERE date = "november 1, 1964" AND week > 8
### Context: CREATE TABLE table_name_43 (attendance INTEGER, date VARCHAR, week VARCHAR) ### Question: After week 8, what was the Attendance on November 1, 1964? ### Answer: SELECT AVG(attendance) FROM table_name_43 WHERE date = "november 1, 1964" AND week > 8
What is the alternate of the nation with Piotras Gerasimovici as the second?
CREATE TABLE table_name_19 (alternate VARCHAR, second VARCHAR)
SELECT alternate FROM table_name_19 WHERE second = "piotras gerasimovici"
### Context: CREATE TABLE table_name_19 (alternate VARCHAR, second VARCHAR) ### Question: What is the alternate of the nation with Piotras Gerasimovici as the second? ### Answer: SELECT alternate FROM table_name_19 WHERE second = "piotras gerasimovici"
What is the alternate of the nation with hubert grΓΌndhammer as the second?
CREATE TABLE table_name_97 (alternate VARCHAR, second VARCHAR)
SELECT alternate FROM table_name_97 WHERE second = "hubert grΓΌndhammer"
### Context: CREATE TABLE table_name_97 (alternate VARCHAR, second VARCHAR) ### Question: What is the alternate of the nation with hubert grΓΌndhammer as the second? ### Answer: SELECT alternate FROM table_name_97 WHERE second = "hubert grΓΌndhammer"
What is the alternate of the nation with Erkki Lill as the skip?
CREATE TABLE table_name_55 (alternate VARCHAR, skip VARCHAR)
SELECT alternate FROM table_name_55 WHERE skip = "erkki lill"
### Context: CREATE TABLE table_name_55 (alternate VARCHAR, skip VARCHAR) ### Question: What is the alternate of the nation with Erkki Lill as the skip? ### Answer: SELECT alternate FROM table_name_55 WHERE skip = "erkki lill"
Who is the skip of the nation with Laurens van der Windt as the alternate?
CREATE TABLE table_name_74 (skip VARCHAR, alternate VARCHAR)
SELECT skip FROM table_name_74 WHERE alternate = "laurens van der windt"
### Context: CREATE TABLE table_name_74 (skip VARCHAR, alternate VARCHAR) ### Question: Who is the skip of the nation with Laurens van der Windt as the alternate? ### Answer: SELECT skip FROM table_name_74 WHERE alternate = "laurens van der windt"
Who is the lead of the nation with Juha Pekaristo as the alternate?
CREATE TABLE table_name_46 (lead VARCHAR, alternate VARCHAR)
SELECT lead FROM table_name_46 WHERE alternate = "juha pekaristo"
### Context: CREATE TABLE table_name_46 (lead VARCHAR, alternate VARCHAR) ### Question: Who is the lead of the nation with Juha Pekaristo as the alternate? ### Answer: SELECT lead FROM table_name_46 WHERE alternate = "juha pekaristo"
What is the highest round in which a player was picked for the Center position?
CREATE TABLE table_name_24 (round INTEGER, position VARCHAR)
SELECT MAX(round) FROM table_name_24 WHERE position = "center"
### Context: CREATE TABLE table_name_24 (round INTEGER, position VARCHAR) ### Question: What is the highest round in which a player was picked for the Center position? ### Answer: SELECT MAX(round) FROM table_name_24 WHERE position = "center"
What is John Flatters' nationality?
CREATE TABLE table_name_10 (nationality VARCHAR, player VARCHAR)
SELECT nationality FROM table_name_10 WHERE player = "john flatters"
### Context: CREATE TABLE table_name_10 (nationality VARCHAR, player VARCHAR) ### Question: What is John Flatters' nationality? ### Answer: SELECT nationality FROM table_name_10 WHERE player = "john flatters"
What is Jeremy Duchesne's position?
CREATE TABLE table_name_67 (position VARCHAR, player VARCHAR)
SELECT position FROM table_name_67 WHERE player = "jeremy duchesne"
### Context: CREATE TABLE table_name_67 (position VARCHAR, player VARCHAR) ### Question: What is Jeremy Duchesne's position? ### Answer: SELECT position FROM table_name_67 WHERE player = "jeremy duchesne"
When was the attendance 1,034?
CREATE TABLE table_name_51 (date INTEGER, attendance VARCHAR)
SELECT MIN(date) FROM table_name_51 WHERE attendance = "1,034"
### Context: CREATE TABLE table_name_51 (date INTEGER, attendance VARCHAR) ### Question: When was the attendance 1,034? ### Answer: SELECT MIN(date) FROM table_name_51 WHERE attendance = "1,034"
what was the opponent on 26 october 1889?
CREATE TABLE table_name_51 (opponents VARCHAR, date VARCHAR)
SELECT opponents FROM table_name_51 WHERE date = "26 october 1889"
### Context: CREATE TABLE table_name_51 (opponents VARCHAR, date VARCHAR) ### Question: what was the opponent on 26 october 1889? ### Answer: SELECT opponents FROM table_name_51 WHERE date = "26 october 1889"
1950 larger than 80, and a 1960 of 196, and a 1990 larger than 131 what is the lowest 1996[2]?
CREATE TABLE table_name_80 (Id VARCHAR)
SELECT MIN(1996)[2] FROM table_name_80 WHERE 1950 > 80 AND 1960 = 196 AND 1990 > 131
### Context: CREATE TABLE table_name_80 (Id VARCHAR) ### Question: 1950 larger than 80, and a 1960 of 196, and a 1990 larger than 131 what is the lowest 1996[2]? ### Answer: SELECT MIN(1996)[2] FROM table_name_80 WHERE 1950 > 80 AND 1960 = 196 AND 1990 > 131
1960 larger than 196, and a 1996[2] smaller than 726, and a 1980 larger than 125, and a 1990 larger than 848, what is the highest 1950?
CREATE TABLE table_name_13 (Id VARCHAR)
SELECT MAX(1950) FROM table_name_13 WHERE 1960 > 196 AND 1996[2] < 726 AND 1980 > 125 AND 1990 > 848
### Context: CREATE TABLE table_name_13 (Id VARCHAR) ### Question: 1960 larger than 196, and a 1996[2] smaller than 726, and a 1980 larger than 125, and a 1990 larger than 848, what is the highest 1950? ### Answer: SELECT MAX(1950) FROM table_name_13 WHERE 1960 > 196 AND 1996[2] < 726 AND 1980 > 125 AND 1990 > 848
1980 smaller than 719, and a 1960 smaller than 205, and a 1996[2] smaller than 364, and a 1970 larger than 251 is what 1990 highest?
CREATE TABLE table_name_94 (Id VARCHAR)
SELECT MAX(1990) FROM table_name_94 WHERE 1980 < 719 AND 1960 < 205 AND 1996[2] < 364 AND 1970 > 251
### Context: CREATE TABLE table_name_94 (Id VARCHAR) ### Question: 1980 smaller than 719, and a 1960 smaller than 205, and a 1996[2] smaller than 364, and a 1970 larger than 251 is what 1990 highest? ### Answer: SELECT MAX(1990) FROM table_name_94 WHERE 1980 < 719 AND 1960 < 205 AND 1996[2] < 364 AND 1970 > 251
1996[2] larger than 68, and a 1990 smaller than 352, and a 1970 larger than 105, and a 1950 of 119 is the sum of what 1980?
CREATE TABLE table_name_6 (Id VARCHAR)
SELECT SUM(1980) FROM table_name_6 WHERE 1996[2] > 68 AND 1990 < 352 AND 1970 > 105 AND 1950 = 119
### Context: CREATE TABLE table_name_6 (Id VARCHAR) ### Question: 1996[2] larger than 68, and a 1990 smaller than 352, and a 1970 larger than 105, and a 1950 of 119 is the sum of what 1980? ### Answer: SELECT SUM(1980) FROM table_name_6 WHERE 1996[2] > 68 AND 1990 < 352 AND 1970 > 105 AND 1950 = 119
1996[2] of 127, and a 1990 smaller than 120 is the sum of 1990?
CREATE TABLE table_name_89 (Id VARCHAR)
SELECT SUM(1980) FROM table_name_89 WHERE 1996[2] = 127 AND 1990 < 120
### Context: CREATE TABLE table_name_89 (Id VARCHAR) ### Question: 1996[2] of 127, and a 1990 smaller than 120 is the sum of 1990? ### Answer: SELECT SUM(1980) FROM table_name_89 WHERE 1996[2] = 127 AND 1990 < 120
Who was the opponent at the game with a result of w 14–6?
CREATE TABLE table_name_60 (opponent VARCHAR, result VARCHAR)
SELECT opponent FROM table_name_60 WHERE result = "w 14–6"
### Context: CREATE TABLE table_name_60 (opponent VARCHAR, result VARCHAR) ### Question: Who was the opponent at the game with a result of w 14–6? ### Answer: SELECT opponent FROM table_name_60 WHERE result = "w 14–6"
What was the result of the game with a record of 2–3–2 before week 8?
CREATE TABLE table_name_38 (result VARCHAR, week VARCHAR, record VARCHAR)
SELECT result FROM table_name_38 WHERE week < 8 AND record = "2–3–2"
### Context: CREATE TABLE table_name_38 (result VARCHAR, week VARCHAR, record VARCHAR) ### Question: What was the result of the game with a record of 2–3–2 before week 8? ### Answer: SELECT result FROM table_name_38 WHERE week < 8 AND record = "2–3–2"
What was the earliest week with a game at the Braves Field on October 2, 1932?
CREATE TABLE table_name_78 (week INTEGER, game_site VARCHAR, date VARCHAR)
SELECT MIN(week) FROM table_name_78 WHERE game_site = "braves field" AND date = "october 2, 1932"
### Context: CREATE TABLE table_name_78 (week INTEGER, game_site VARCHAR, date VARCHAR) ### Question: What was the earliest week with a game at the Braves Field on October 2, 1932? ### Answer: SELECT MIN(week) FROM table_name_78 WHERE game_site = "braves field" AND date = "october 2, 1932"
What was the record at the game on November 13, 1932?
CREATE TABLE table_name_38 (record VARCHAR, date VARCHAR)
SELECT record FROM table_name_38 WHERE date = "november 13, 1932"
### Context: CREATE TABLE table_name_38 (record VARCHAR, date VARCHAR) ### Question: What was the record at the game on November 13, 1932? ### Answer: SELECT record FROM table_name_38 WHERE date = "november 13, 1932"
What role is Kevin Bishop the actor?
CREATE TABLE table_name_18 (role VARCHAR, actor VARCHAR)
SELECT role FROM table_name_18 WHERE actor = "kevin bishop"
### Context: CREATE TABLE table_name_18 (role VARCHAR, actor VARCHAR) ### Question: What role is Kevin Bishop the actor? ### Answer: SELECT role FROM table_name_18 WHERE actor = "kevin bishop"
What is the duration for mike walling as the actor?
CREATE TABLE table_name_47 (duration VARCHAR, actor VARCHAR)
SELECT duration FROM table_name_47 WHERE actor = "mike walling"
### Context: CREATE TABLE table_name_47 (duration VARCHAR, actor VARCHAR) ### Question: What is the duration for mike walling as the actor? ### Answer: SELECT duration FROM table_name_47 WHERE actor = "mike walling"
What is the duration that has 3 for appearances, and james garret as the character?
CREATE TABLE table_name_20 (duration VARCHAR, appearances VARCHAR, character VARCHAR)
SELECT duration FROM table_name_20 WHERE appearances = "3" AND character = "james garret"
### Context: CREATE TABLE table_name_20 (duration VARCHAR, appearances VARCHAR, character VARCHAR) ### Question: What is the duration that has 3 for appearances, and james garret as the character? ### Answer: SELECT duration FROM table_name_20 WHERE appearances = "3" AND character = "james garret"
What is the duration for nickolas grace as the actor?
CREATE TABLE table_name_36 (duration VARCHAR, actor VARCHAR)
SELECT duration FROM table_name_36 WHERE actor = "nickolas grace"
### Context: CREATE TABLE table_name_36 (duration VARCHAR, actor VARCHAR) ### Question: What is the duration for nickolas grace as the actor? ### Answer: SELECT duration FROM table_name_36 WHERE actor = "nickolas grace"
Time ( ET ) of 1:00pm, and a Result of w 34–14 has what record?
CREATE TABLE table_name_67 (record VARCHAR, time___et__ VARCHAR, result VARCHAR)
SELECT record FROM table_name_67 WHERE time___et__ = "1:00pm" AND result = "w 34–14"
### Context: CREATE TABLE table_name_67 (record VARCHAR, time___et__ VARCHAR, result VARCHAR) ### Question: Time ( ET ) of 1:00pm, and a Result of w 34–14 has what record? ### Answer: SELECT record FROM table_name_67 WHERE time___et__ = "1:00pm" AND result = "w 34–14"
Date of sun. oct. 1 has what location?
CREATE TABLE table_name_29 (location VARCHAR, date VARCHAR)
SELECT location FROM table_name_29 WHERE date = "sun. oct. 1"
### Context: CREATE TABLE table_name_29 (location VARCHAR, date VARCHAR) ### Question: Date of sun. oct. 1 has what location? ### Answer: SELECT location FROM table_name_29 WHERE date = "sun. oct. 1"
Record of 3–3 has what result?
CREATE TABLE table_name_83 (result VARCHAR, record VARCHAR)
SELECT result FROM table_name_83 WHERE record = "3–3"
### Context: CREATE TABLE table_name_83 (result VARCHAR, record VARCHAR) ### Question: Record of 3–3 has what result? ### Answer: SELECT result FROM table_name_83 WHERE record = "3–3"
Date of sun. oct. 29 has what time (et)?
CREATE TABLE table_name_65 (time___et__ VARCHAR, date VARCHAR)
SELECT time___et__ FROM table_name_65 WHERE date = "sun. oct. 29"
### Context: CREATE TABLE table_name_65 (time___et__ VARCHAR, date VARCHAR) ### Question: Date of sun. oct. 29 has what time (et)? ### Answer: SELECT time___et__ FROM table_name_65 WHERE date = "sun. oct. 29"
How many games have more than 10 points and more than 2 draws?
CREATE TABLE table_name_13 (games VARCHAR, points VARCHAR, drawn VARCHAR)
SELECT COUNT(games) FROM table_name_13 WHERE points = 10 AND drawn > 2
### Context: CREATE TABLE table_name_13 (games VARCHAR, points VARCHAR, drawn VARCHAR) ### Question: How many games have more than 10 points and more than 2 draws? ### Answer: SELECT COUNT(games) FROM table_name_13 WHERE points = 10 AND drawn > 2
What is the sum of losses that have points of 11 and more than 1 draw?
CREATE TABLE table_name_86 (lost INTEGER, points VARCHAR, drawn VARCHAR)
SELECT SUM(lost) FROM table_name_86 WHERE points = 11 AND drawn > 1
### Context: CREATE TABLE table_name_86 (lost INTEGER, points VARCHAR, drawn VARCHAR) ### Question: What is the sum of losses that have points of 11 and more than 1 draw? ### Answer: SELECT SUM(lost) FROM table_name_86 WHERE points = 11 AND drawn > 1
What is the greatest points value that have draws under 2 and 2 losses?
CREATE TABLE table_name_67 (points INTEGER, drawn VARCHAR, lost VARCHAR)
SELECT MAX(points) FROM table_name_67 WHERE drawn < 2 AND lost = 2
### Context: CREATE TABLE table_name_67 (points INTEGER, drawn VARCHAR, lost VARCHAR) ### Question: What is the greatest points value that have draws under 2 and 2 losses? ### Answer: SELECT MAX(points) FROM table_name_67 WHERE drawn < 2 AND lost = 2
How many losses have draw values under 1?
CREATE TABLE table_name_36 (lost VARCHAR, drawn INTEGER)
SELECT COUNT(lost) FROM table_name_36 WHERE drawn < 1
### Context: CREATE TABLE table_name_36 (lost VARCHAR, drawn INTEGER) ### Question: How many losses have draw values under 1? ### Answer: SELECT COUNT(lost) FROM table_name_36 WHERE drawn < 1
What's the lowest February for less than 57 points?
CREATE TABLE table_name_32 (february INTEGER, points INTEGER)
SELECT MIN(february) FROM table_name_32 WHERE points < 57
### Context: CREATE TABLE table_name_32 (february INTEGER, points INTEGER) ### Question: What's the lowest February for less than 57 points? ### Answer: SELECT MIN(february) FROM table_name_32 WHERE points < 57
What's the February for the game against the Montreal Canadiens?
CREATE TABLE table_name_88 (february INTEGER, opponent VARCHAR)
SELECT SUM(february) FROM table_name_88 WHERE opponent = "montreal canadiens"
### Context: CREATE TABLE table_name_88 (february INTEGER, opponent VARCHAR) ### Question: What's the February for the game against the Montreal Canadiens? ### Answer: SELECT SUM(february) FROM table_name_88 WHERE opponent = "montreal canadiens"
What's the record for Game 58?
CREATE TABLE table_name_22 (record VARCHAR, game VARCHAR)
SELECT record FROM table_name_22 WHERE game = 58
### Context: CREATE TABLE table_name_22 (record VARCHAR, game VARCHAR) ### Question: What's the record for Game 58? ### Answer: SELECT record FROM table_name_22 WHERE game = 58
Which Winner has a Season of 2005–06?
CREATE TABLE table_name_15 (winner VARCHAR, season VARCHAR)
SELECT winner FROM table_name_15 WHERE season = "2005–06"
### Context: CREATE TABLE table_name_15 (winner VARCHAR, season VARCHAR) ### Question: Which Winner has a Season of 2005–06? ### Answer: SELECT winner FROM table_name_15 WHERE season = "2005–06"
Which Runner-up played in the Season of 2000–01?
CREATE TABLE table_name_72 (runner_up VARCHAR, season VARCHAR)
SELECT runner_up FROM table_name_72 WHERE season = "2000–01"
### Context: CREATE TABLE table_name_72 (runner_up VARCHAR, season VARCHAR) ### Question: Which Runner-up played in the Season of 2000–01? ### Answer: SELECT runner_up FROM table_name_72 WHERE season = "2000–01"
What was the venue during the Season of 2010–11?
CREATE TABLE table_name_88 (venue VARCHAR, season VARCHAR)
SELECT venue FROM table_name_88 WHERE season = "2010–11"
### Context: CREATE TABLE table_name_88 (venue VARCHAR, season VARCHAR) ### Question: What was the venue during the Season of 2010–11? ### Answer: SELECT venue FROM table_name_88 WHERE season = "2010–11"
Which Winner has a Runner-up of larne, and a Season of 2003–04?
CREATE TABLE table_name_13 (winner VARCHAR, runner_up VARCHAR, season VARCHAR)
SELECT winner FROM table_name_13 WHERE runner_up = "larne" AND season = "2003–04"
### Context: CREATE TABLE table_name_13 (winner VARCHAR, runner_up VARCHAR, season VARCHAR) ### Question: Which Winner has a Runner-up of larne, and a Season of 2003–04? ### Answer: SELECT winner FROM table_name_13 WHERE runner_up = "larne" AND season = "2003–04"
Which Winner has a Score of 1 – 0, and a Season of 2011–12?
CREATE TABLE table_name_30 (winner VARCHAR, score VARCHAR, season VARCHAR)
SELECT winner FROM table_name_30 WHERE score = "1 – 0" AND season = "2011–12"
### Context: CREATE TABLE table_name_30 (winner VARCHAR, score VARCHAR, season VARCHAR) ### Question: Which Winner has a Score of 1 – 0, and a Season of 2011–12? ### Answer: SELECT winner FROM table_name_30 WHERE score = "1 – 0" AND season = "2011–12"
What position does Martin Rucker play?
CREATE TABLE table_name_78 (position VARCHAR, name VARCHAR)
SELECT position FROM table_name_78 WHERE name = "martin rucker"
### Context: CREATE TABLE table_name_78 (position VARCHAR, name VARCHAR) ### Question: What position does Martin Rucker play? ### Answer: SELECT position FROM table_name_78 WHERE name = "martin rucker"
What was the lowest round for Paul Hubbard?
CREATE TABLE table_name_21 (round INTEGER, name VARCHAR)
SELECT MIN(round) FROM table_name_21 WHERE name = "paul hubbard"
### Context: CREATE TABLE table_name_21 (round INTEGER, name VARCHAR) ### Question: What was the lowest round for Paul Hubbard? ### Answer: SELECT MIN(round) FROM table_name_21 WHERE name = "paul hubbard"
What was the lowest round for a tight end position?
CREATE TABLE table_name_94 (round INTEGER, position VARCHAR)
SELECT MIN(round) FROM table_name_94 WHERE position = "tight end"
### Context: CREATE TABLE table_name_94 (round INTEGER, position VARCHAR) ### Question: What was the lowest round for a tight end position? ### Answer: SELECT MIN(round) FROM table_name_94 WHERE position = "tight end"
What years did the person coach who had more than 31 ties?
CREATE TABLE table_name_5 (years VARCHAR, ties INTEGER)
SELECT years FROM table_name_5 WHERE ties > 31
### Context: CREATE TABLE table_name_5 (years VARCHAR, ties INTEGER) ### Question: What years did the person coach who had more than 31 ties? ### Answer: SELECT years FROM table_name_5 WHERE ties > 31
What is the average number of wins for the person who coached from 1951 to 1956 and had less than 174 losses and less than 6 ties?
CREATE TABLE table_name_70 (wins INTEGER, ties VARCHAR, losses VARCHAR, years VARCHAR)
SELECT AVG(wins) FROM table_name_70 WHERE losses < 174 AND years = "1951 to 1956" AND ties < 6
### Context: CREATE TABLE table_name_70 (wins INTEGER, ties VARCHAR, losses VARCHAR, years VARCHAR) ### Question: What is the average number of wins for the person who coached from 1951 to 1956 and had less than 174 losses and less than 6 ties? ### Answer: SELECT AVG(wins) FROM table_name_70 WHERE losses < 174 AND years = "1951 to 1956" AND ties < 6
Who was the coach who had 215 losses?
CREATE TABLE table_name_33 (coach VARCHAR, losses VARCHAR)
SELECT coach FROM table_name_33 WHERE losses = 215
### Context: CREATE TABLE table_name_33 (coach VARCHAR, losses VARCHAR) ### Question: Who was the coach who had 215 losses? ### Answer: SELECT coach FROM table_name_33 WHERE losses = 215
What years did the person coach who had more than 1 tie, mess than 311 wins and 174 losses?
CREATE TABLE table_name_30 (years VARCHAR, losses VARCHAR, ties VARCHAR, wins VARCHAR)
SELECT years FROM table_name_30 WHERE ties > 1 AND wins < 311 AND losses = 174
### Context: CREATE TABLE table_name_30 (years VARCHAR, losses VARCHAR, ties VARCHAR, wins VARCHAR) ### Question: What years did the person coach who had more than 1 tie, mess than 311 wins and 174 losses? ### Answer: SELECT years FROM table_name_30 WHERE ties > 1 AND wins < 311 AND losses = 174
What years did the person coach who had less than 82 wins and more than 24 losses?
CREATE TABLE table_name_99 (years VARCHAR, wins VARCHAR, losses VARCHAR)
SELECT years FROM table_name_99 WHERE wins < 82 AND losses > 24
### Context: CREATE TABLE table_name_99 (years VARCHAR, wins VARCHAR, losses VARCHAR) ### Question: What years did the person coach who had less than 82 wins and more than 24 losses? ### Answer: SELECT years FROM table_name_99 WHERE wins < 82 AND losses > 24
Which Points have a Game larger than 25, and an Opponent of dallas stars?
CREATE TABLE table_name_75 (points INTEGER, game VARCHAR, opponent VARCHAR)
SELECT AVG(points) FROM table_name_75 WHERE game > 25 AND opponent = "dallas stars"
### Context: CREATE TABLE table_name_75 (points INTEGER, game VARCHAR, opponent VARCHAR) ### Question: Which Points have a Game larger than 25, and an Opponent of dallas stars? ### Answer: SELECT AVG(points) FROM table_name_75 WHERE game > 25 AND opponent = "dallas stars"
Which Record has a December smaller than 28, and Points smaller than 38, and a Game smaller than 26, and a Score of 0–1 ot?
CREATE TABLE table_name_53 (record VARCHAR, score VARCHAR, game VARCHAR, december VARCHAR, points VARCHAR)
SELECT record FROM table_name_53 WHERE december < 28 AND points < 38 AND game < 26 AND score = "0–1 ot"
### Context: CREATE TABLE table_name_53 (record VARCHAR, score VARCHAR, game VARCHAR, december VARCHAR, points VARCHAR) ### Question: Which Record has a December smaller than 28, and Points smaller than 38, and a Game smaller than 26, and a Score of 0–1 ot? ### Answer: SELECT record FROM table_name_53 WHERE december < 28 AND points < 38 AND game < 26 AND score = "0–1 ot"
Which Opponent has a Game of 31?
CREATE TABLE table_name_56 (opponent VARCHAR, game VARCHAR)
SELECT opponent FROM table_name_56 WHERE game = 31
### Context: CREATE TABLE table_name_56 (opponent VARCHAR, game VARCHAR) ### Question: Which Opponent has a Game of 31? ### Answer: SELECT opponent FROM table_name_56 WHERE game = 31
Which Record has Points smaller than 40, and a Game larger than 25, and a Score of 2–0?
CREATE TABLE table_name_49 (record VARCHAR, score VARCHAR, points VARCHAR, game VARCHAR)
SELECT record FROM table_name_49 WHERE points < 40 AND game > 25 AND score = "2–0"
### Context: CREATE TABLE table_name_49 (record VARCHAR, score VARCHAR, points VARCHAR, game VARCHAR) ### Question: Which Record has Points smaller than 40, and a Game larger than 25, and a Score of 2–0? ### Answer: SELECT record FROM table_name_49 WHERE points < 40 AND game > 25 AND score = "2–0"
Episode of 9 in which performer 3 had?
CREATE TABLE table_name_82 (performer_3 VARCHAR, episode VARCHAR)
SELECT performer_3 FROM table_name_82 WHERE episode = 9
### Context: CREATE TABLE table_name_82 (performer_3 VARCHAR, episode VARCHAR) ### Question: Episode of 9 in which performer 3 had? ### Answer: SELECT performer_3 FROM table_name_82 WHERE episode = 9
Date of 8 july 1994 involves which performer 1?
CREATE TABLE table_name_31 (performer_1 VARCHAR, date VARCHAR)
SELECT performer_1 FROM table_name_31 WHERE date = "8 july 1994"
### Context: CREATE TABLE table_name_31 (performer_1 VARCHAR, date VARCHAR) ### Question: Date of 8 july 1994 involves which performer 1? ### Answer: SELECT performer_1 FROM table_name_31 WHERE date = "8 july 1994"
Date of 15 july 1994 involves which performer 3?
CREATE TABLE table_name_56 (performer_3 VARCHAR, date VARCHAR)
SELECT performer_3 FROM table_name_56 WHERE date = "15 july 1994"
### Context: CREATE TABLE table_name_56 (performer_3 VARCHAR, date VARCHAR) ### Question: Date of 15 july 1994 involves which performer 3? ### Answer: SELECT performer_3 FROM table_name_56 WHERE date = "15 july 1994"
Performer 2 of chip esten has what performer 3?
CREATE TABLE table_name_40 (performer_3 VARCHAR, performer_2 VARCHAR)
SELECT performer_3 FROM table_name_40 WHERE performer_2 = "chip esten"
### Context: CREATE TABLE table_name_40 (performer_3 VARCHAR, performer_2 VARCHAR) ### Question: Performer 2 of chip esten has what performer 3? ### Answer: SELECT performer_3 FROM table_name_40 WHERE performer_2 = "chip esten"
Which Name has a Pennant number of f82?
CREATE TABLE table_name_56 (name VARCHAR, pennant_number VARCHAR)
SELECT name FROM table_name_56 WHERE pennant_number = "f82"
### Context: CREATE TABLE table_name_56 (name VARCHAR, pennant_number VARCHAR) ### Question: Which Name has a Pennant number of f82? ### Answer: SELECT name FROM table_name_56 WHERE pennant_number = "f82"