question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
Which races have #2 podiums?
CREATE TABLE table_name_6 (races VARCHAR, podiums VARCHAR)
SELECT races FROM table_name_6 WHERE podiums = "2"
### Context: CREATE TABLE table_name_6 (races VARCHAR, podiums VARCHAR) ### Question: Which races have #2 podiums? ### Answer: SELECT races FROM table_name_6 WHERE podiums = "2"
What was the 2009 final placing?
CREATE TABLE table_name_17 (final_placing VARCHAR, season VARCHAR)
SELECT final_placing FROM table_name_17 WHERE season = 2009
### Context: CREATE TABLE table_name_17 (final_placing VARCHAR, season VARCHAR) ### Question: What was the 2009 final placing? ### Answer: SELECT final_placing FROM table_name_17 WHERE season = 2009
What was the points with 7 races?
CREATE TABLE table_name_34 (points VARCHAR, races VARCHAR)
SELECT points FROM table_name_34 WHERE races = "7"
### Context: CREATE TABLE table_name_34 (points VARCHAR, races VARCHAR) ### Question: What was the points with 7 races? ### Answer: SELECT points FROM table_name_34 WHERE races = "7"
What venue had south melbourne as the home team?
CREATE TABLE table_name_90 (venue VARCHAR, home_team VARCHAR)
SELECT venue FROM table_name_90 WHERE home_team = "south melbourne"
### Context: CREATE TABLE table_name_90 (venue VARCHAR, home_team VARCHAR) ### Question: What venue had south melbourne as the home team? ### Answer: SELECT venue FROM table_name_90 WHERE home_team = "south melbourne"
What venue had collingwood as the away team?
CREATE TABLE table_name_14 (venue VARCHAR, away_team VARCHAR)
SELECT venue FROM table_name_14 WHERE away_team = "collingwood"
### Context: CREATE TABLE table_name_14 (venue VARCHAR, away_team VARCHAR) ### Question: What venue had collingwood as the away team? ### Answer: SELECT venue FROM table_name_14 WHERE away_team = "collingwood"
What was the home team score when south melbourne was the home team?
CREATE TABLE table_name_49 (home_team VARCHAR)
SELECT home_team AS score FROM table_name_49 WHERE home_team = "south melbourne"
### Context: CREATE TABLE table_name_49 (home_team VARCHAR) ### Question: What was the home team score when south melbourne was the home team? ### Answer: SELECT home_team AS score FROM table_name_49 WHERE home_team = "south melbourne"
What day was south melbourne the away squad?
CREATE TABLE table_name_70 (date VARCHAR, away_team VARCHAR)
SELECT date FROM table_name_70 WHERE away_team = "melbourne"
### Context: CREATE TABLE table_name_70 (date VARCHAR, away_team VARCHAR) ### Question: What day was south melbourne the away squad? ### Answer: SELECT date FROM table_name_70 WHERE away_team = "melbourne"
What position did he finish after 1998 and a note time of 2:31:40?
CREATE TABLE table_name_71 (position VARCHAR, year VARCHAR, notes VARCHAR)
SELECT position FROM table_name_71 WHERE year > 1998 AND notes = "2:31:40"
### Context: CREATE TABLE table_name_71 (position VARCHAR, year VARCHAR, notes VARCHAR) ### Question: What position did he finish after 1998 and a note time of 2:31:40? ### Answer: SELECT position FROM table_name_71 WHERE year > 1998 AND notes = "2:31:40"
What venue featured a notes of 2:38:44?
CREATE TABLE table_name_63 (venue VARCHAR, notes VARCHAR)
SELECT venue FROM table_name_63 WHERE notes = "2:38:44"
### Context: CREATE TABLE table_name_63 (venue VARCHAR, notes VARCHAR) ### Question: What venue featured a notes of 2:38:44? ### Answer: SELECT venue FROM table_name_63 WHERE notes = "2:38:44"
Who did they play against in a week after 6 and the result was l 30–24?
CREATE TABLE table_name_32 (opponent VARCHAR, week VARCHAR, result VARCHAR)
SELECT opponent FROM table_name_32 WHERE week > 6 AND result = "l 30–24"
### Context: CREATE TABLE table_name_32 (opponent VARCHAR, week VARCHAR, result VARCHAR) ### Question: Who did they play against in a week after 6 and the result was l 30–24? ### Answer: SELECT opponent FROM table_name_32 WHERE week > 6 AND result = "l 30–24"
What opponent has a Result of w 31–0?
CREATE TABLE table_name_25 (opponent VARCHAR, result VARCHAR)
SELECT opponent FROM table_name_25 WHERE result = "w 31–0"
### Context: CREATE TABLE table_name_25 (opponent VARCHAR, result VARCHAR) ### Question: What opponent has a Result of w 31–0? ### Answer: SELECT opponent FROM table_name_25 WHERE result = "w 31–0"
During which round was the final cornerback drafted for the New England Patriots in 2005?
CREATE TABLE table_name_7 (round INTEGER, position VARCHAR)
SELECT MAX(round) FROM table_name_7 WHERE position = "cornerback"
### Context: CREATE TABLE table_name_7 (round INTEGER, position VARCHAR) ### Question: During which round was the final cornerback drafted for the New England Patriots in 2005? ### Answer: SELECT MAX(round) FROM table_name_7 WHERE position = "cornerback"
What dance was Leeza Gibbons the worst dancer for, receiving a score lower than 15?
CREATE TABLE table_name_9 (best_score INTEGER, worst_dancer VARCHAR, worst_score VARCHAR)
SELECT MIN(best_score) FROM table_name_9 WHERE worst_dancer = "leeza gibbons" AND worst_score < 15
### Context: CREATE TABLE table_name_9 (best_score INTEGER, worst_dancer VARCHAR, worst_score VARCHAR) ### Question: What dance was Leeza Gibbons the worst dancer for, receiving a score lower than 15? ### Answer: SELECT MIN(best_score) FROM table_name_9 WHERE worst_dancer = "leeza gibbons" AND worst_score < 15
What is the worst score for the dance that has Apolo Anton Ohno as the best dancer, and where his best score is larger than 30?
CREATE TABLE table_name_23 (worst_score INTEGER, best_dancer VARCHAR, best_score VARCHAR)
SELECT SUM(worst_score) FROM table_name_23 WHERE best_dancer = "apolo anton ohno" AND best_score > 30
### Context: CREATE TABLE table_name_23 (worst_score INTEGER, best_dancer VARCHAR, best_score VARCHAR) ### Question: What is the worst score for the dance that has Apolo Anton Ohno as the best dancer, and where his best score is larger than 30? ### Answer: SELECT SUM(worst_score) FROM table_name_23 WHERE best_dancer = "apolo anton ohno" AND best_score > 30
What is the biggest crowd when carlton is the away squad?
CREATE TABLE table_name_48 (crowd INTEGER, away_team VARCHAR)
SELECT MAX(crowd) FROM table_name_48 WHERE away_team = "carlton"
### Context: CREATE TABLE table_name_48 (crowd INTEGER, away_team VARCHAR) ### Question: What is the biggest crowd when carlton is the away squad? ### Answer: SELECT MAX(crowd) FROM table_name_48 WHERE away_team = "carlton"
What is the sum of crowd(s) when richmond is the away squad?
CREATE TABLE table_name_44 (crowd INTEGER, away_team VARCHAR)
SELECT SUM(crowd) FROM table_name_44 WHERE away_team = "richmond"
### Context: CREATE TABLE table_name_44 (crowd INTEGER, away_team VARCHAR) ### Question: What is the sum of crowd(s) when richmond is the away squad? ### Answer: SELECT SUM(crowd) FROM table_name_44 WHERE away_team = "richmond"
What is the home team's score in the game played at glenferrie oval?
CREATE TABLE table_name_40 (home_team VARCHAR, venue VARCHAR)
SELECT home_team AS score FROM table_name_40 WHERE venue = "glenferrie oval"
### Context: CREATE TABLE table_name_40 (home_team VARCHAR, venue VARCHAR) ### Question: What is the home team's score in the game played at glenferrie oval? ### Answer: SELECT home_team AS score FROM table_name_40 WHERE venue = "glenferrie oval"
What was the result of the event against Nate Mohr?
CREATE TABLE table_name_57 (res VARCHAR, opponent VARCHAR)
SELECT res FROM table_name_57 WHERE opponent = "nate mohr"
### Context: CREATE TABLE table_name_57 (res VARCHAR, opponent VARCHAR) ### Question: What was the result of the event against Nate Mohr? ### Answer: SELECT res FROM table_name_57 WHERE opponent = "nate mohr"
When the VFL played Junction Oval what was the home team score?
CREATE TABLE table_name_45 (home_team VARCHAR, venue VARCHAR)
SELECT home_team AS score FROM table_name_45 WHERE venue = "junction oval"
### Context: CREATE TABLE table_name_45 (home_team VARCHAR, venue VARCHAR) ### Question: When the VFL played Junction Oval what was the home team score? ### Answer: SELECT home_team AS score FROM table_name_45 WHERE venue = "junction oval"
What was away team Geelong's crowd numbers?
CREATE TABLE table_name_6 (crowd VARCHAR, away_team VARCHAR)
SELECT crowd FROM table_name_6 WHERE away_team = "geelong"
### Context: CREATE TABLE table_name_6 (crowd VARCHAR, away_team VARCHAR) ### Question: What was away team Geelong's crowd numbers? ### Answer: SELECT crowd FROM table_name_6 WHERE away_team = "geelong"
What is the date they played against fitzroy?
CREATE TABLE table_name_10 (date VARCHAR, away_team VARCHAR)
SELECT date FROM table_name_10 WHERE away_team = "fitzroy"
### Context: CREATE TABLE table_name_10 (date VARCHAR, away_team VARCHAR) ### Question: What is the date they played against fitzroy? ### Answer: SELECT date FROM table_name_10 WHERE away_team = "fitzroy"
How large was the crowd when they played at princes park?
CREATE TABLE table_name_56 (crowd INTEGER, venue VARCHAR)
SELECT SUM(crowd) FROM table_name_56 WHERE venue = "princes park"
### Context: CREATE TABLE table_name_56 (crowd INTEGER, venue VARCHAR) ### Question: How large was the crowd when they played at princes park? ### Answer: SELECT SUM(crowd) FROM table_name_56 WHERE venue = "princes park"
Who is the away team at junction oval?
CREATE TABLE table_name_74 (away_team VARCHAR, venue VARCHAR)
SELECT away_team FROM table_name_74 WHERE venue = "junction oval"
### Context: CREATE TABLE table_name_74 (away_team VARCHAR, venue VARCHAR) ### Question: Who is the away team at junction oval? ### Answer: SELECT away_team FROM table_name_74 WHERE venue = "junction oval"
What is the away team's score at princes park?
CREATE TABLE table_name_49 (away_team VARCHAR, venue VARCHAR)
SELECT away_team AS score FROM table_name_49 WHERE venue = "princes park"
### Context: CREATE TABLE table_name_49 (away_team VARCHAR, venue VARCHAR) ### Question: What is the away team's score at princes park? ### Answer: SELECT away_team AS score FROM table_name_49 WHERE venue = "princes park"
What was the highest percentage of internet users a nation with a 1622% growth in 2000-2008 had?
CREATE TABLE table_name_51 (_percentage_internet_users INTEGER, _percentage_growth__2000_2008_ VARCHAR)
SELECT MAX(_percentage_internet_users) FROM table_name_51 WHERE _percentage_growth__2000_2008_ = 1622
### Context: CREATE TABLE table_name_51 (_percentage_internet_users INTEGER, _percentage_growth__2000_2008_ VARCHAR) ### Question: What was the highest percentage of internet users a nation with a 1622% growth in 2000-2008 had? ### Answer: SELECT MAX(_percentage_internet_users) FROM table_name_51 WHERE _percentage_growth__2000_2008_ = 1622
Who was the home team when Footscray was the away team?
CREATE TABLE table_name_50 (home_team VARCHAR, away_team VARCHAR)
SELECT home_team FROM table_name_50 WHERE away_team = "footscray"
### Context: CREATE TABLE table_name_50 (home_team VARCHAR, away_team VARCHAR) ### Question: Who was the home team when Footscray was the away team? ### Answer: SELECT home_team FROM table_name_50 WHERE away_team = "footscray"
What day did the team play the buffalo bills?
CREATE TABLE table_name_28 (date VARCHAR, opponent VARCHAR)
SELECT date FROM table_name_28 WHERE opponent = "buffalo bills"
### Context: CREATE TABLE table_name_28 (date VARCHAR, opponent VARCHAR) ### Question: What day did the team play the buffalo bills? ### Answer: SELECT date FROM table_name_28 WHERE opponent = "buffalo bills"
What is the BB Pop for the song with RIAA of G that was in a year earlier than 1961?
CREATE TABLE table_name_8 (bb_pop VARCHAR, riaa VARCHAR, year VARCHAR)
SELECT bb_pop FROM table_name_8 WHERE riaa = "g" AND year < 1961
### Context: CREATE TABLE table_name_8 (bb_pop VARCHAR, riaa VARCHAR, year VARCHAR) ### Question: What is the BB Pop for the song with RIAA of G that was in a year earlier than 1961? ### Answer: SELECT bb_pop FROM table_name_8 WHERE riaa = "g" AND year < 1961
Which player has an Other of 3 (15)?
CREATE TABLE table_name_7 (name VARCHAR, other VARCHAR)
SELECT name FROM table_name_7 WHERE other = "3 (15)"
### Context: CREATE TABLE table_name_7 (name VARCHAR, other VARCHAR) ### Question: Which player has an Other of 3 (15)? ### Answer: SELECT name FROM table_name_7 WHERE other = "3 (15)"
What Name has a Time of 01:17:01?
CREATE TABLE table_name_14 (name VARCHAR, time VARCHAR)
SELECT name FROM table_name_14 WHERE time = "01:17:01"
### Context: CREATE TABLE table_name_14 (name VARCHAR, time VARCHAR) ### Question: What Name has a Time of 01:17:01? ### Answer: SELECT name FROM table_name_14 WHERE time = "01:17:01"
What is the Magnitude on the Date May 28, 2004?
CREATE TABLE table_name_49 (magnitude VARCHAR, date VARCHAR)
SELECT magnitude FROM table_name_49 WHERE date = "may 28, 2004"
### Context: CREATE TABLE table_name_49 (magnitude VARCHAR, date VARCHAR) ### Question: What is the Magnitude on the Date May 28, 2004? ### Answer: SELECT magnitude FROM table_name_49 WHERE date = "may 28, 2004"
What Name has a Time of 01:56:52?
CREATE TABLE table_name_46 (name VARCHAR, time VARCHAR)
SELECT name FROM table_name_46 WHERE time = "01:56:52"
### Context: CREATE TABLE table_name_46 (name VARCHAR, time VARCHAR) ### Question: What Name has a Time of 01:56:52? ### Answer: SELECT name FROM table_name_46 WHERE time = "01:56:52"
What number of Fatalities did the Epicenter Māzandarān have?
CREATE TABLE table_name_79 (fatalities VARCHAR, epicenter VARCHAR)
SELECT fatalities FROM table_name_79 WHERE epicenter = "māzandarān"
### Context: CREATE TABLE table_name_79 (fatalities VARCHAR, epicenter VARCHAR) ### Question: What number of Fatalities did the Epicenter Māzandarān have? ### Answer: SELECT fatalities FROM table_name_79 WHERE epicenter = "māzandarān"
What number of Fatalties is associated with the Time of 12:38:46?
CREATE TABLE table_name_78 (fatalities VARCHAR, time VARCHAR)
SELECT fatalities FROM table_name_78 WHERE time = "12:38:46"
### Context: CREATE TABLE table_name_78 (fatalities VARCHAR, time VARCHAR) ### Question: What number of Fatalties is associated with the Time of 12:38:46? ### Answer: SELECT fatalities FROM table_name_78 WHERE time = "12:38:46"
What is the Time when the Epicenter was Bam?
CREATE TABLE table_name_94 (time VARCHAR, epicenter VARCHAR)
SELECT time FROM table_name_94 WHERE epicenter = "bam"
### Context: CREATE TABLE table_name_94 (time VARCHAR, epicenter VARCHAR) ### Question: What is the Time when the Epicenter was Bam? ### Answer: SELECT time FROM table_name_94 WHERE epicenter = "bam"
Who did Clinton appoint as a Chief Judge?
CREATE TABLE table_name_2 (chief_judge VARCHAR, appointed_by VARCHAR)
SELECT chief_judge FROM table_name_2 WHERE appointed_by = "clinton"
### Context: CREATE TABLE table_name_2 (chief_judge VARCHAR, appointed_by VARCHAR) ### Question: Who did Clinton appoint as a Chief Judge? ### Answer: SELECT chief_judge FROM table_name_2 WHERE appointed_by = "clinton"
What was the smallest crowd for a Carlton away game?
CREATE TABLE table_name_14 (crowd INTEGER, away_team VARCHAR)
SELECT MIN(crowd) FROM table_name_14 WHERE away_team = "carlton"
### Context: CREATE TABLE table_name_14 (crowd INTEGER, away_team VARCHAR) ### Question: What was the smallest crowd for a Carlton away game? ### Answer: SELECT MIN(crowd) FROM table_name_14 WHERE away_team = "carlton"
What is the result when the time is 1:13?
CREATE TABLE table_name_11 (res VARCHAR, time VARCHAR)
SELECT res FROM table_name_11 WHERE time = "1:13"
### Context: CREATE TABLE table_name_11 (res VARCHAR, time VARCHAR) ### Question: What is the result when the time is 1:13? ### Answer: SELECT res FROM table_name_11 WHERE time = "1:13"
Who was the opponent when the time was 1:47?
CREATE TABLE table_name_45 (opponent VARCHAR, time VARCHAR)
SELECT opponent FROM table_name_45 WHERE time = "1:47"
### Context: CREATE TABLE table_name_45 (opponent VARCHAR, time VARCHAR) ### Question: Who was the opponent when the time was 1:47? ### Answer: SELECT opponent FROM table_name_45 WHERE time = "1:47"
What venue did South Melbourne play as the away team?
CREATE TABLE table_name_61 (venue VARCHAR, away_team VARCHAR)
SELECT venue FROM table_name_61 WHERE away_team = "south melbourne"
### Context: CREATE TABLE table_name_61 (venue VARCHAR, away_team VARCHAR) ### Question: What venue did South Melbourne play as the away team? ### Answer: SELECT venue FROM table_name_61 WHERE away_team = "south melbourne"
What was the away team's score in the match at Victoria Park?
CREATE TABLE table_name_77 (away_team VARCHAR, venue VARCHAR)
SELECT away_team AS score FROM table_name_77 WHERE venue = "victoria park"
### Context: CREATE TABLE table_name_77 (away_team VARCHAR, venue VARCHAR) ### Question: What was the away team's score in the match at Victoria Park? ### Answer: SELECT away_team AS score FROM table_name_77 WHERE venue = "victoria park"
Which position has a Round of 7, and a College of kansas state?
CREATE TABLE table_name_34 (position VARCHAR, round VARCHAR, college VARCHAR)
SELECT position FROM table_name_34 WHERE round = 7 AND college = "kansas state"
### Context: CREATE TABLE table_name_34 (position VARCHAR, round VARCHAR, college VARCHAR) ### Question: Which position has a Round of 7, and a College of kansas state? ### Answer: SELECT position FROM table_name_34 WHERE round = 7 AND college = "kansas state"
How many rounds have an Overall larger than 17, and a Position of quarterback?
CREATE TABLE table_name_66 (round VARCHAR, overall VARCHAR, position VARCHAR)
SELECT COUNT(round) FROM table_name_66 WHERE overall > 17 AND position = "quarterback"
### Context: CREATE TABLE table_name_66 (round VARCHAR, overall VARCHAR, position VARCHAR) ### Question: How many rounds have an Overall larger than 17, and a Position of quarterback? ### Answer: SELECT COUNT(round) FROM table_name_66 WHERE overall > 17 AND position = "quarterback"
Which average overall has a Round of 1, and a Position of center?
CREATE TABLE table_name_80 (overall INTEGER, round VARCHAR, position VARCHAR)
SELECT AVG(overall) FROM table_name_80 WHERE round = 1 AND position = "center"
### Context: CREATE TABLE table_name_80 (overall INTEGER, round VARCHAR, position VARCHAR) ### Question: Which average overall has a Round of 1, and a Position of center? ### Answer: SELECT AVG(overall) FROM table_name_80 WHERE round = 1 AND position = "center"
Where did North Melbourne play as the home team?
CREATE TABLE table_name_37 (venue VARCHAR, home_team VARCHAR)
SELECT venue FROM table_name_37 WHERE home_team = "north melbourne"
### Context: CREATE TABLE table_name_37 (venue VARCHAR, home_team VARCHAR) ### Question: Where did North Melbourne play as the home team? ### Answer: SELECT venue FROM table_name_37 WHERE home_team = "north melbourne"
What was the attendance when VFL played MCG?
CREATE TABLE table_name_11 (crowd INTEGER, venue VARCHAR)
SELECT MAX(crowd) FROM table_name_11 WHERE venue = "mcg"
### Context: CREATE TABLE table_name_11 (crowd INTEGER, venue VARCHAR) ### Question: What was the attendance when VFL played MCG? ### Answer: SELECT MAX(crowd) FROM table_name_11 WHERE venue = "mcg"
What was the score of the away team when they played at Windy Hill?
CREATE TABLE table_name_98 (away_team VARCHAR, venue VARCHAR)
SELECT away_team AS score FROM table_name_98 WHERE venue = "windy hill"
### Context: CREATE TABLE table_name_98 (away_team VARCHAR, venue VARCHAR) ### Question: What was the score of the away team when they played at Windy Hill? ### Answer: SELECT away_team AS score FROM table_name_98 WHERE venue = "windy hill"
How large was the crowd when the away team was melbourne?
CREATE TABLE table_name_77 (crowd VARCHAR, away_team VARCHAR)
SELECT crowd FROM table_name_77 WHERE away_team = "melbourne"
### Context: CREATE TABLE table_name_77 (crowd VARCHAR, away_team VARCHAR) ### Question: How large was the crowd when the away team was melbourne? ### Answer: SELECT crowd FROM table_name_77 WHERE away_team = "melbourne"
How many people watched a Glenferrie Oval?
CREATE TABLE table_name_58 (crowd VARCHAR, venue VARCHAR)
SELECT COUNT(crowd) FROM table_name_58 WHERE venue = "glenferrie oval"
### Context: CREATE TABLE table_name_58 (crowd VARCHAR, venue VARCHAR) ### Question: How many people watched a Glenferrie Oval? ### Answer: SELECT COUNT(crowd) FROM table_name_58 WHERE venue = "glenferrie oval"
How faced Geelong at home?
CREATE TABLE table_name_52 (away_team VARCHAR, home_team VARCHAR)
SELECT away_team AS score FROM table_name_52 WHERE home_team = "geelong"
### Context: CREATE TABLE table_name_52 (away_team VARCHAR, home_team VARCHAR) ### Question: How faced Geelong at home? ### Answer: SELECT away_team AS score FROM table_name_52 WHERE home_team = "geelong"
How many people watch Essendon as an away team?
CREATE TABLE table_name_77 (crowd INTEGER, away_team VARCHAR)
SELECT SUM(crowd) FROM table_name_77 WHERE away_team = "essendon"
### Context: CREATE TABLE table_name_77 (crowd INTEGER, away_team VARCHAR) ### Question: How many people watch Essendon as an away team? ### Answer: SELECT SUM(crowd) FROM table_name_77 WHERE away_team = "essendon"
Where did South Melbourne go to play a team at home?
CREATE TABLE table_name_98 (home_team VARCHAR, away_team VARCHAR)
SELECT home_team FROM table_name_98 WHERE away_team = "south melbourne"
### Context: CREATE TABLE table_name_98 (home_team VARCHAR, away_team VARCHAR) ### Question: Where did South Melbourne go to play a team at home? ### Answer: SELECT home_team FROM table_name_98 WHERE away_team = "south melbourne"
What is essendon's away team score?
CREATE TABLE table_name_1 (away_team VARCHAR)
SELECT away_team AS score FROM table_name_1 WHERE away_team = "essendon"
### Context: CREATE TABLE table_name_1 (away_team VARCHAR) ### Question: What is essendon's away team score? ### Answer: SELECT away_team AS score FROM table_name_1 WHERE away_team = "essendon"
What is the date with geelong as Away team?
CREATE TABLE table_name_63 (date VARCHAR, away_team VARCHAR)
SELECT date FROM table_name_63 WHERE away_team = "geelong"
### Context: CREATE TABLE table_name_63 (date VARCHAR, away_team VARCHAR) ### Question: What is the date with geelong as Away team? ### Answer: SELECT date FROM table_name_63 WHERE away_team = "geelong"
What is the highest crowd at arden street oval?
CREATE TABLE table_name_7 (crowd INTEGER, venue VARCHAR)
SELECT MAX(crowd) FROM table_name_7 WHERE venue = "arden street oval"
### Context: CREATE TABLE table_name_7 (crowd INTEGER, venue VARCHAR) ### Question: What is the highest crowd at arden street oval? ### Answer: SELECT MAX(crowd) FROM table_name_7 WHERE venue = "arden street oval"
What is geelong's aberage crowd as Away Team?
CREATE TABLE table_name_13 (crowd INTEGER, away_team VARCHAR)
SELECT AVG(crowd) FROM table_name_13 WHERE away_team = "geelong"
### Context: CREATE TABLE table_name_13 (crowd INTEGER, away_team VARCHAR) ### Question: What is geelong's aberage crowd as Away Team? ### Answer: SELECT AVG(crowd) FROM table_name_13 WHERE away_team = "geelong"
What was the date of the game when North Melbourne was the away team?
CREATE TABLE table_name_10 (date VARCHAR, away_team VARCHAR)
SELECT date FROM table_name_10 WHERE away_team = "north melbourne"
### Context: CREATE TABLE table_name_10 (date VARCHAR, away_team VARCHAR) ### Question: What was the date of the game when North Melbourne was the away team? ### Answer: SELECT date FROM table_name_10 WHERE away_team = "north melbourne"
What is the team with grid 9?
CREATE TABLE table_name_10 (team VARCHAR, grid VARCHAR)
SELECT team FROM table_name_10 WHERE grid = 9
### Context: CREATE TABLE table_name_10 (team VARCHAR, grid VARCHAR) ### Question: What is the team with grid 9? ### Answer: SELECT team FROM table_name_10 WHERE grid = 9
What team features garth tander?
CREATE TABLE table_name_14 (team VARCHAR, name VARCHAR)
SELECT team FROM table_name_14 WHERE name = "garth tander"
### Context: CREATE TABLE table_name_14 (team VARCHAR, name VARCHAR) ### Question: What team features garth tander? ### Answer: SELECT team FROM table_name_14 WHERE name = "garth tander"
How many stages are in a distance of 2,192 km?
CREATE TABLE table_name_11 (stages VARCHAR, distance VARCHAR)
SELECT stages FROM table_name_11 WHERE distance = "2,192 km"
### Context: CREATE TABLE table_name_11 (stages VARCHAR, distance VARCHAR) ### Question: How many stages are in a distance of 2,192 km? ### Answer: SELECT stages FROM table_name_11 WHERE distance = "2,192 km"
How long was the 16 staged event in 1997?
CREATE TABLE table_name_38 (distance VARCHAR, stages VARCHAR, year VARCHAR)
SELECT distance FROM table_name_38 WHERE stages = "16" AND year = "1997"
### Context: CREATE TABLE table_name_38 (distance VARCHAR, stages VARCHAR, year VARCHAR) ### Question: How long was the 16 staged event in 1997? ### Answer: SELECT distance FROM table_name_38 WHERE stages = "16" AND year = "1997"
What was the winning time in 1984?
CREATE TABLE table_name_99 (time VARCHAR, year VARCHAR)
SELECT time FROM table_name_99 WHERE year = "1984"
### Context: CREATE TABLE table_name_99 (time VARCHAR, year VARCHAR) ### Question: What was the winning time in 1984? ### Answer: SELECT time FROM table_name_99 WHERE year = "1984"
Who won the 17 staged event in 1987?
CREATE TABLE table_name_83 (winner VARCHAR, stages VARCHAR, year VARCHAR)
SELECT winner FROM table_name_83 WHERE stages = "17" AND year = "1987"
### Context: CREATE TABLE table_name_83 (winner VARCHAR, stages VARCHAR, year VARCHAR) ### Question: Who won the 17 staged event in 1987? ### Answer: SELECT winner FROM table_name_83 WHERE stages = "17" AND year = "1987"
Which event happened in 1988?
CREATE TABLE table_name_91 (name VARCHAR, year VARCHAR)
SELECT name FROM table_name_91 WHERE year = "1988"
### Context: CREATE TABLE table_name_91 (name VARCHAR, year VARCHAR) ### Question: Which event happened in 1988? ### Answer: SELECT name FROM table_name_91 WHERE year = "1988"
Where did Rick Mears win, after starting in Pole Position?
CREATE TABLE table_name_70 (city_location VARCHAR, pole_position VARCHAR, winning_driver VARCHAR)
SELECT city_location FROM table_name_70 WHERE pole_position = "rick mears" AND winning_driver = "rick mears"
### Context: CREATE TABLE table_name_70 (city_location VARCHAR, pole_position VARCHAR, winning_driver VARCHAR) ### Question: Where did Rick Mears win, after starting in Pole Position? ### Answer: SELECT city_location FROM table_name_70 WHERE pole_position = "rick mears" AND winning_driver = "rick mears"
Where is the budweiser/g. i. joe's 200?
CREATE TABLE table_name_48 (city_location VARCHAR, race_name VARCHAR)
SELECT city_location FROM table_name_48 WHERE race_name = "budweiser/g. i. joe's 200"
### Context: CREATE TABLE table_name_48 (city_location VARCHAR, race_name VARCHAR) ### Question: Where is the budweiser/g. i. joe's 200? ### Answer: SELECT city_location FROM table_name_48 WHERE race_name = "budweiser/g. i. joe's 200"
Where is Emerson Fittipaldi starting in Pole position?
CREATE TABLE table_name_60 (city_location VARCHAR, pole_position VARCHAR)
SELECT city_location FROM table_name_60 WHERE pole_position = "emerson fittipaldi"
### Context: CREATE TABLE table_name_60 (city_location VARCHAR, pole_position VARCHAR) ### Question: Where is Emerson Fittipaldi starting in Pole position? ### Answer: SELECT city_location FROM table_name_60 WHERE pole_position = "emerson fittipaldi"
Which Circuit is on July 24?
CREATE TABLE table_name_56 (circuit VARCHAR, date VARCHAR)
SELECT circuit FROM table_name_56 WHERE date = "july 24"
### Context: CREATE TABLE table_name_56 (circuit VARCHAR, date VARCHAR) ### Question: Which Circuit is on July 24? ### Answer: SELECT circuit FROM table_name_56 WHERE date = "july 24"
What date did Delage win?
CREATE TABLE table_name_34 (date VARCHAR, winning_constructor VARCHAR)
SELECT date FROM table_name_34 WHERE winning_constructor = "delage"
### Context: CREATE TABLE table_name_34 (date VARCHAR, winning_constructor VARCHAR) ### Question: What date did Delage win? ### Answer: SELECT date FROM table_name_34 WHERE winning_constructor = "delage"
What circuit did Luigi Villoresi win the Lausanne Grand Prix?
CREATE TABLE table_name_58 (circuit VARCHAR, winning_driver VARCHAR, name VARCHAR)
SELECT circuit FROM table_name_58 WHERE winning_driver = "luigi villoresi" AND name = "lausanne grand prix"
### Context: CREATE TABLE table_name_58 (circuit VARCHAR, winning_driver VARCHAR, name VARCHAR) ### Question: What circuit did Luigi Villoresi win the Lausanne Grand Prix? ### Answer: SELECT circuit FROM table_name_58 WHERE winning_driver = "luigi villoresi" AND name = "lausanne grand prix"
Which Grand Prix did Nello Pagani win?
CREATE TABLE table_name_2 (name VARCHAR, winning_driver VARCHAR)
SELECT name FROM table_name_2 WHERE winning_driver = "nello pagani"
### Context: CREATE TABLE table_name_2 (name VARCHAR, winning_driver VARCHAR) ### Question: Which Grand Prix did Nello Pagani win? ### Answer: SELECT name FROM table_name_2 WHERE winning_driver = "nello pagani"
What did the home team score when playing Fitzroy as the away team?
CREATE TABLE table_name_8 (home_team VARCHAR, away_team VARCHAR)
SELECT home_team AS score FROM table_name_8 WHERE away_team = "fitzroy"
### Context: CREATE TABLE table_name_8 (home_team VARCHAR, away_team VARCHAR) ### Question: What did the home team score when playing Fitzroy as the away team? ### Answer: SELECT home_team AS score FROM table_name_8 WHERE away_team = "fitzroy"
What did the home team score when playing at Western Oval?
CREATE TABLE table_name_41 (home_team VARCHAR, venue VARCHAR)
SELECT home_team AS score FROM table_name_41 WHERE venue = "western oval"
### Context: CREATE TABLE table_name_41 (home_team VARCHAR, venue VARCHAR) ### Question: What did the home team score when playing at Western Oval? ### Answer: SELECT home_team AS score FROM table_name_41 WHERE venue = "western oval"
What away team played Collingwood?
CREATE TABLE table_name_20 (away_team VARCHAR, home_team VARCHAR)
SELECT away_team FROM table_name_20 WHERE home_team = "collingwood"
### Context: CREATE TABLE table_name_20 (away_team VARCHAR, home_team VARCHAR) ### Question: What away team played Collingwood? ### Answer: SELECT away_team FROM table_name_20 WHERE home_team = "collingwood"
On what date did Collingwood play at home?
CREATE TABLE table_name_20 (date VARCHAR, home_team VARCHAR)
SELECT date FROM table_name_20 WHERE home_team = "collingwood"
### Context: CREATE TABLE table_name_20 (date VARCHAR, home_team VARCHAR) ### Question: On what date did Collingwood play at home? ### Answer: SELECT date FROM table_name_20 WHERE home_team = "collingwood"
Name the average round where Dave Stachelski was picked smaller than 187.
CREATE TABLE table_name_28 (round INTEGER, overall VARCHAR, player VARCHAR)
SELECT AVG(round) FROM table_name_28 WHERE overall < 187 AND player = "dave stachelski"
### Context: CREATE TABLE table_name_28 (round INTEGER, overall VARCHAR, player VARCHAR) ### Question: Name the average round where Dave Stachelski was picked smaller than 187. ### Answer: SELECT AVG(round) FROM table_name_28 WHERE overall < 187 AND player = "dave stachelski"
Which position did David Nugent play with an overall small than 187?
CREATE TABLE table_name_79 (position VARCHAR, overall VARCHAR, player VARCHAR)
SELECT position FROM table_name_79 WHERE overall > 187 AND player = "david nugent"
### Context: CREATE TABLE table_name_79 (position VARCHAR, overall VARCHAR, player VARCHAR) ### Question: Which position did David Nugent play with an overall small than 187? ### Answer: SELECT position FROM table_name_79 WHERE overall > 187 AND player = "david nugent"
Name the college that has an overall larger than 187 and a round smaller than 7 for the defensive end position.
CREATE TABLE table_name_46 (college VARCHAR, position VARCHAR, overall VARCHAR, round VARCHAR)
SELECT college FROM table_name_46 WHERE overall > 187 AND round < 7 AND position = "defensive end"
### Context: CREATE TABLE table_name_46 (college VARCHAR, position VARCHAR, overall VARCHAR, round VARCHAR) ### Question: Name the college that has an overall larger than 187 and a round smaller than 7 for the defensive end position. ### Answer: SELECT college FROM table_name_46 WHERE overall > 187 AND round < 7 AND position = "defensive end"
Which player has less than 201 games, is ranked 2, and played between 2007-2012?
CREATE TABLE table_name_74 (player VARCHAR, years VARCHAR, games VARCHAR, rank VARCHAR)
SELECT player FROM table_name_74 WHERE games < 201 AND rank = 2 AND years = "2007-2012"
### Context: CREATE TABLE table_name_74 (player VARCHAR, years VARCHAR, games VARCHAR, rank VARCHAR) ### Question: Which player has less than 201 games, is ranked 2, and played between 2007-2012? ### Answer: SELECT player FROM table_name_74 WHERE games < 201 AND rank = 2 AND years = "2007-2012"
How many average games did Nick Rimando have?
CREATE TABLE table_name_99 (games INTEGER, player VARCHAR)
SELECT AVG(games) FROM table_name_99 WHERE player = "nick rimando"
### Context: CREATE TABLE table_name_99 (games INTEGER, player VARCHAR) ### Question: How many average games did Nick Rimando have? ### Answer: SELECT AVG(games) FROM table_name_99 WHERE player = "nick rimando"
What is the party of the politician who left office on January 12, 1857
CREATE TABLE table_name_47 (party VARCHAR, left_office VARCHAR)
SELECT party FROM table_name_47 WHERE left_office = "january 12, 1857"
### Context: CREATE TABLE table_name_47 (party VARCHAR, left_office VARCHAR) ### Question: What is the party of the politician who left office on January 12, 1857 ### Answer: SELECT party FROM table_name_47 WHERE left_office = "january 12, 1857"
What is the party of the governor under Hugh Thomas Miller.
CREATE TABLE table_name_4 (governor VARCHAR, name VARCHAR)
SELECT governor FROM table_name_4 WHERE name = "hugh thomas miller"
### Context: CREATE TABLE table_name_4 (governor VARCHAR, name VARCHAR) ### Question: What is the party of the governor under Hugh Thomas Miller. ### Answer: SELECT governor FROM table_name_4 WHERE name = "hugh thomas miller"
Who left office on January 9, 1893
CREATE TABLE table_name_32 (name VARCHAR, left_office VARCHAR)
SELECT name FROM table_name_32 WHERE left_office = "january 9, 1893"
### Context: CREATE TABLE table_name_32 (name VARCHAR, left_office VARCHAR) ### Question: Who left office on January 9, 1893 ### Answer: SELECT name FROM table_name_32 WHERE left_office = "january 9, 1893"
Who took office under the government of Matthew E. Welsh?
CREATE TABLE table_name_8 (took_office VARCHAR, governor VARCHAR)
SELECT took_office FROM table_name_8 WHERE governor = "matthew e. welsh"
### Context: CREATE TABLE table_name_8 (took_office VARCHAR, governor VARCHAR) ### Question: Who took office under the government of Matthew E. Welsh? ### Answer: SELECT took_office FROM table_name_8 WHERE governor = "matthew e. welsh"
Which governor took office on January 13, 1877
CREATE TABLE table_name_4 (governor VARCHAR, took_office VARCHAR)
SELECT governor FROM table_name_4 WHERE took_office = "january 13, 1877"
### Context: CREATE TABLE table_name_4 (governor VARCHAR, took_office VARCHAR) ### Question: Which governor took office on January 13, 1877 ### Answer: SELECT governor FROM table_name_4 WHERE took_office = "january 13, 1877"
What is the score of the Geelong away team?
CREATE TABLE table_name_18 (away_team VARCHAR)
SELECT away_team AS score FROM table_name_18 WHERE away_team = "geelong"
### Context: CREATE TABLE table_name_18 (away_team VARCHAR) ### Question: What is the score of the Geelong away team? ### Answer: SELECT away_team AS score FROM table_name_18 WHERE away_team = "geelong"
What is the score of the team that plays in lake oval?
CREATE TABLE table_name_85 (away_team VARCHAR, venue VARCHAR)
SELECT away_team AS score FROM table_name_85 WHERE venue = "lake oval"
### Context: CREATE TABLE table_name_85 (away_team VARCHAR, venue VARCHAR) ### Question: What is the score of the team that plays in lake oval? ### Answer: SELECT away_team AS score FROM table_name_85 WHERE venue = "lake oval"
What the date of the game of the team that plays in princes park?
CREATE TABLE table_name_25 (date VARCHAR, venue VARCHAR)
SELECT date FROM table_name_25 WHERE venue = "princes park"
### Context: CREATE TABLE table_name_25 (date VARCHAR, venue VARCHAR) ### Question: What the date of the game of the team that plays in princes park? ### Answer: SELECT date FROM table_name_25 WHERE venue = "princes park"
What was the score of the home team of carlton?
CREATE TABLE table_name_60 (home_team VARCHAR)
SELECT home_team AS score FROM table_name_60 WHERE home_team = "carlton"
### Context: CREATE TABLE table_name_60 (home_team VARCHAR) ### Question: What was the score of the home team of carlton? ### Answer: SELECT home_team AS score FROM table_name_60 WHERE home_team = "carlton"
How many people watched the away team of Geelong?
CREATE TABLE table_name_63 (crowd VARCHAR, away_team VARCHAR)
SELECT crowd FROM table_name_63 WHERE away_team = "geelong"
### Context: CREATE TABLE table_name_63 (crowd VARCHAR, away_team VARCHAR) ### Question: How many people watched the away team of Geelong? ### Answer: SELECT crowd FROM table_name_63 WHERE away_team = "geelong"
Which home team has the Brunswick Street Oval venue?
CREATE TABLE table_name_99 (home_team VARCHAR, venue VARCHAR)
SELECT home_team AS score FROM table_name_99 WHERE venue = "brunswick street oval"
### Context: CREATE TABLE table_name_99 (home_team VARCHAR, venue VARCHAR) ### Question: Which home team has the Brunswick Street Oval venue? ### Answer: SELECT home_team AS score FROM table_name_99 WHERE venue = "brunswick street oval"
Which home team has the Brunswick Street Oval venue?
CREATE TABLE table_name_8 (home_team VARCHAR, venue VARCHAR)
SELECT home_team FROM table_name_8 WHERE venue = "brunswick street oval"
### Context: CREATE TABLE table_name_8 (home_team VARCHAR, venue VARCHAR) ### Question: Which home team has the Brunswick Street Oval venue? ### Answer: SELECT home_team FROM table_name_8 WHERE venue = "brunswick street oval"
Which is the lowest crop total with New South Wales at 42 kilotonnes and Victorian at less than 68 kilotonnes?
CREATE TABLE table_name_26 (total INTEGER, new_south_wales VARCHAR, victoria VARCHAR)
SELECT MIN(total) FROM table_name_26 WHERE new_south_wales = 42 AND victoria < 68
### Context: CREATE TABLE table_name_26 (total INTEGER, new_south_wales VARCHAR, victoria VARCHAR) ### Question: Which is the lowest crop total with New South Wales at 42 kilotonnes and Victorian at less than 68 kilotonnes? ### Answer: SELECT MIN(total) FROM table_name_26 WHERE new_south_wales = 42 AND victoria < 68
Who had a qual 1 best of 1:01.704?
CREATE TABLE table_name_43 (qual_1 VARCHAR, best VARCHAR)
SELECT qual_1 FROM table_name_43 WHERE best = "1:01.704"
### Context: CREATE TABLE table_name_43 (qual_1 VARCHAR, best VARCHAR) ### Question: Who had a qual 1 best of 1:01.704? ### Answer: SELECT qual_1 FROM table_name_43 WHERE best = "1:01.704"
What team had a qual 1 of 1:02.755?
CREATE TABLE table_name_78 (team VARCHAR, qual_1 VARCHAR)
SELECT team FROM table_name_78 WHERE qual_1 = "1:02.755"
### Context: CREATE TABLE table_name_78 (team VARCHAR, qual_1 VARCHAR) ### Question: What team had a qual 1 of 1:02.755? ### Answer: SELECT team FROM table_name_78 WHERE qual_1 = "1:02.755"
What is the qual 1 for rusport and had a best of 58.665?
CREATE TABLE table_name_87 (qual_1 VARCHAR, team VARCHAR, best VARCHAR)
SELECT qual_1 FROM table_name_87 WHERE team = "rusport" AND best = "58.665"
### Context: CREATE TABLE table_name_87 (qual_1 VARCHAR, team VARCHAR, best VARCHAR) ### Question: What is the qual 1 for rusport and had a best of 58.665? ### Answer: SELECT qual_1 FROM table_name_87 WHERE team = "rusport" AND best = "58.665"
What team had a qual 1 of 59.895?
CREATE TABLE table_name_72 (team VARCHAR, qual_1 VARCHAR)
SELECT team FROM table_name_72 WHERE qual_1 = "59.895"
### Context: CREATE TABLE table_name_72 (team VARCHAR, qual_1 VARCHAR) ### Question: What team had a qual 1 of 59.895? ### Answer: SELECT team FROM table_name_72 WHERE qual_1 = "59.895"
Who had a qual 1 of 1:01.461?
CREATE TABLE table_name_98 (name VARCHAR, qual_1 VARCHAR)
SELECT name FROM table_name_98 WHERE qual_1 = "1:01.461"
### Context: CREATE TABLE table_name_98 (name VARCHAR, qual_1 VARCHAR) ### Question: Who had a qual 1 of 1:01.461? ### Answer: SELECT name FROM table_name_98 WHERE qual_1 = "1:01.461"
What is the LFN support with 32-bit architecture on Windows Home Server?
CREATE TABLE table_name_74 (lfn_support VARCHAR, architecture VARCHAR, name VARCHAR)
SELECT lfn_support FROM table_name_74 WHERE architecture = "32-bit" AND name = "windows home server"
### Context: CREATE TABLE table_name_74 (lfn_support VARCHAR, architecture VARCHAR, name VARCHAR) ### Question: What is the LFN support with 32-bit architecture on Windows Home Server? ### Answer: SELECT lfn_support FROM table_name_74 WHERE architecture = "32-bit" AND name = "windows home server"
What is the LFN support on Windows NT 3.1?
CREATE TABLE table_name_68 (lfn_support VARCHAR, name VARCHAR)
SELECT lfn_support FROM table_name_68 WHERE name = "windows nt 3.1"
### Context: CREATE TABLE table_name_68 (lfn_support VARCHAR, name VARCHAR) ### Question: What is the LFN support on Windows NT 3.1? ### Answer: SELECT lfn_support FROM table_name_68 WHERE name = "windows nt 3.1"