question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
Who was the home team when Hawthorn was the away team?
CREATE TABLE table_name_61 (home_team VARCHAR, away_team VARCHAR)
SELECT home_team FROM table_name_61 WHERE away_team = "hawthorn"
### Context: CREATE TABLE table_name_61 (home_team VARCHAR, away_team VARCHAR) ### Question: Who was the home team when Hawthorn was the away team? ### Answer: SELECT home_team FROM table_name_61 WHERE away_team = "hawthorn"
What was Fitzroy's score when they were the away team?
CREATE TABLE table_name_18 (away_team VARCHAR)
SELECT away_team AS score FROM table_name_18 WHERE away_team = "fitzroy"
### Context: CREATE TABLE table_name_18 (away_team VARCHAR) ### Question: What was Fitzroy's score when they were the away team? ### Answer: SELECT away_team AS score FROM table_name_18 WHERE away_team = "fitzroy"
What was #7 BMW's speed?
CREATE TABLE table_name_27 (speed VARCHAR, team VARCHAR, rank VARCHAR)
SELECT speed FROM table_name_27 WHERE team = "bmw" AND rank = 7
### Context: CREATE TABLE table_name_27 (speed VARCHAR, team VARCHAR, rank VARCHAR) ### Question: What was #7 BMW's speed? ### Answer: SELECT speed FROM table_name_27 WHERE team = "bmw" AND rank = 7
What was the crowd size in the match South Melbourne played at home?
CREATE TABLE table_name_28 (crowd VARCHAR, home_team VARCHAR)
SELECT crowd FROM table_name_28 WHERE home_team = "south melbourne"
### Context: CREATE TABLE table_name_28 (crowd VARCHAR, home_team VARCHAR) ### Question: What was the crowd size in the match South Melbourne played at home? ### Answer: SELECT crowd FROM table_name_28 WHERE home_team = "south melbourne"
What was the away team's score at Western Oval?
CREATE TABLE table_name_75 (away_team VARCHAR, venue VARCHAR)
SELECT away_team AS score FROM table_name_75 WHERE venue = "western oval"
### Context: CREATE TABLE table_name_75 (away_team VARCHAR, venue VARCHAR) ### Question: What was the away team's score at Western Oval? ### Answer: SELECT away_team AS score FROM table_name_75 WHERE venue = "western oval"
What was the crowd size when Essendon was the away team?
CREATE TABLE table_name_79 (crowd VARCHAR, away_team VARCHAR)
SELECT COUNT(crowd) FROM table_name_79 WHERE away_team = "essendon"
### Context: CREATE TABLE table_name_79 (crowd VARCHAR, away_team VARCHAR) ### Question: What was the crowd size when Essendon was the away team? ### Answer: SELECT COUNT(crowd) FROM table_name_79 WHERE away_team = "essendon"
On what date was the time of 16:24.12 achieved?
CREATE TABLE table_name_36 (date VARCHAR, time VARCHAR)
SELECT date FROM table_name_36 WHERE time = "16:24.12"
### Context: CREATE TABLE table_name_36 (date VARCHAR, time VARCHAR) ### Question: On what date was the time of 16:24.12 achieved? ### Answer: SELECT date FROM table_name_36 WHERE time = "16:24.12"
What year did the Capital City Giants have a game with the final score of 8-0?
CREATE TABLE table_name_54 (year INTEGER, team VARCHAR, score VARCHAR)
SELECT AVG(year) FROM table_name_54 WHERE team = "capital city giants" AND score = "8-0"
### Context: CREATE TABLE table_name_54 (year INTEGER, team VARCHAR, score VARCHAR) ### Question: What year did the Capital City Giants have a game with the final score of 8-0? ### Answer: SELECT AVG(year) FROM table_name_54 WHERE team = "capital city giants" AND score = "8-0"
What team lost a game by a score of 6-0?
CREATE TABLE table_name_37 (runner_up VARCHAR, score VARCHAR)
SELECT runner_up FROM table_name_37 WHERE score = "6-0"
### Context: CREATE TABLE table_name_37 (runner_up VARCHAR, score VARCHAR) ### Question: What team lost a game by a score of 6-0? ### Answer: SELECT runner_up FROM table_name_37 WHERE score = "6-0"
What teams played in Capital Bowl IV?
CREATE TABLE table_name_31 (team VARCHAR, game VARCHAR)
SELECT team FROM table_name_31 WHERE game = "capital bowl iv"
### Context: CREATE TABLE table_name_31 (team VARCHAR, game VARCHAR) ### Question: What teams played in Capital Bowl IV? ### Answer: SELECT team FROM table_name_31 WHERE game = "capital bowl iv"
What team defeated the Capital City Giants?
CREATE TABLE table_name_11 (team VARCHAR, runner_up VARCHAR)
SELECT team FROM table_name_11 WHERE runner_up = "capital city giants"
### Context: CREATE TABLE table_name_11 (team VARCHAR, runner_up VARCHAR) ### Question: What team defeated the Capital City Giants? ### Answer: SELECT team FROM table_name_11 WHERE runner_up = "capital city giants"
What is the total tenure rank of the person with an uninterrupted time of 49 years, 349 days?
CREATE TABLE table_name_6 (total_tenure_rank VARCHAR, uninterrupted_time VARCHAR)
SELECT total_tenure_rank FROM table_name_6 WHERE uninterrupted_time = "49 years, 349 days"
### Context: CREATE TABLE table_name_6 (total_tenure_rank VARCHAR, uninterrupted_time VARCHAR) ### Question: What is the total tenure rank of the person with an uninterrupted time of 49 years, 349 days? ### Answer: SELECT total_tenure_rank FROM table_name_6 WHERE uninterrupted_time = "49 years, 349 days"
What is the total tenure time of Warren Magnuson, who had an uninterrupted rank larger than 4 and a total tenure rank larger than 9?
CREATE TABLE table_name_31 (total_tenure_time VARCHAR, name VARCHAR, uninterrupted_rank VARCHAR, total_tenure_rank VARCHAR)
SELECT total_tenure_time FROM table_name_31 WHERE uninterrupted_rank > 4 AND total_tenure_rank > 9 AND name = "warren magnuson"
### Context: CREATE TABLE table_name_31 (total_tenure_time VARCHAR, name VARCHAR, uninterrupted_rank VARCHAR, total_tenure_rank VARCHAR) ### Question: What is the total tenure time of Warren Magnuson, who had an uninterrupted rank larger than 4 and a total tenure rank larger than 9? ### Answer: SELECT total_tenure_time FROM table_name_31 WHERE uninterrupted_rank > 4 AND total_tenure_rank > 9 AND name = "warren magnuson"
What round was the overall 63 drafted?
CREATE TABLE table_name_94 (round VARCHAR, overall VARCHAR)
SELECT COUNT(round) FROM table_name_94 WHERE overall = 63
### Context: CREATE TABLE table_name_94 (round VARCHAR, overall VARCHAR) ### Question: What round was the overall 63 drafted? ### Answer: SELECT COUNT(round) FROM table_name_94 WHERE overall = 63
What is the Swedish name for South Karelia?
CREATE TABLE table_name_77 (in_swedish VARCHAR, in_english VARCHAR)
SELECT in_swedish FROM table_name_77 WHERE in_english = "south karelia"
### Context: CREATE TABLE table_name_77 (in_swedish VARCHAR, in_english VARCHAR) ### Question: What is the Swedish name for South Karelia? ### Answer: SELECT in_swedish FROM table_name_77 WHERE in_english = "south karelia"
What home team plays at Arden Street Oval?
CREATE TABLE table_name_72 (home_team VARCHAR, venue VARCHAR)
SELECT home_team FROM table_name_72 WHERE venue = "arden street oval"
### Context: CREATE TABLE table_name_72 (home_team VARCHAR, venue VARCHAR) ### Question: What home team plays at Arden Street Oval? ### Answer: SELECT home_team FROM table_name_72 WHERE venue = "arden street oval"
Who has a Jump 2 of 7.06, and what is this person's Jump 3?
CREATE TABLE table_name_80 (jump_3 VARCHAR, jump_2 VARCHAR)
SELECT jump_3 FROM table_name_80 WHERE jump_2 = "7.06"
### Context: CREATE TABLE table_name_80 (jump_3 VARCHAR, jump_2 VARCHAR) ### Question: Who has a Jump 2 of 7.06, and what is this person's Jump 3? ### Answer: SELECT jump_3 FROM table_name_80 WHERE jump_2 = "7.06"
Who has an x under Jump 1, a Jump 2 of 7.28, and what is this person's Best Jump?
CREATE TABLE table_name_48 (best_jump VARCHAR, jump_1 VARCHAR, jump_2 VARCHAR)
SELECT best_jump FROM table_name_48 WHERE jump_1 = "x" AND jump_2 = "7.28"
### Context: CREATE TABLE table_name_48 (best_jump VARCHAR, jump_1 VARCHAR, jump_2 VARCHAR) ### Question: Who has an x under Jump 1, a Jump 2 of 7.28, and what is this person's Best Jump? ### Answer: SELECT best_jump FROM table_name_48 WHERE jump_1 = "x" AND jump_2 = "7.28"
What is the Jump 2 of the person that has a Jump 3 of 7.77?
CREATE TABLE table_name_62 (jump_2 VARCHAR, jump_3 VARCHAR)
SELECT jump_2 FROM table_name_62 WHERE jump_3 = "7.77"
### Context: CREATE TABLE table_name_62 (jump_2 VARCHAR, jump_3 VARCHAR) ### Question: What is the Jump 2 of the person that has a Jump 3 of 7.77? ### Answer: SELECT jump_2 FROM table_name_62 WHERE jump_3 = "7.77"
What is the Jump 2 of the person that has a Jump 1 of 7.14
CREATE TABLE table_name_58 (jump_2 VARCHAR, jump_1 VARCHAR)
SELECT jump_2 FROM table_name_58 WHERE jump_1 = "7.14"
### Context: CREATE TABLE table_name_58 (jump_2 VARCHAR, jump_1 VARCHAR) ### Question: What is the Jump 2 of the person that has a Jump 1 of 7.14 ### Answer: SELECT jump_2 FROM table_name_58 WHERE jump_1 = "7.14"
Which player from Tucson, Arizona won the Championship?
CREATE TABLE table_name_58 (champion VARCHAR, city VARCHAR)
SELECT champion FROM table_name_58 WHERE city = "tucson, arizona"
### Context: CREATE TABLE table_name_58 (champion VARCHAR, city VARCHAR) ### Question: Which player from Tucson, Arizona won the Championship? ### Answer: SELECT champion FROM table_name_58 WHERE city = "tucson, arizona"
What was the final score of the player from Inglewood, California?
CREATE TABLE table_name_14 (score VARCHAR, city VARCHAR)
SELECT score FROM table_name_14 WHERE city = "inglewood, california"
### Context: CREATE TABLE table_name_14 (score VARCHAR, city VARCHAR) ### Question: What was the final score of the player from Inglewood, California? ### Answer: SELECT score FROM table_name_14 WHERE city = "inglewood, california"
What tour was cancelled?
CREATE TABLE table_name_14 (name VARCHAR, date VARCHAR)
SELECT name FROM table_name_14 WHERE date = "cancelled"
### Context: CREATE TABLE table_name_14 (name VARCHAR, date VARCHAR) ### Question: What tour was cancelled? ### Answer: SELECT name FROM table_name_14 WHERE date = "cancelled"
Who won the Fedex tour of Calabarzon?
CREATE TABLE table_name_76 (winner VARCHAR, name VARCHAR)
SELECT winner FROM table_name_76 WHERE name = "fedex tour of calabarzon"
### Context: CREATE TABLE table_name_76 (winner VARCHAR, name VARCHAR) ### Question: Who won the Fedex tour of Calabarzon? ### Answer: SELECT winner FROM table_name_76 WHERE name = "fedex tour of calabarzon"
What year has the time of 55:29:20?
CREATE TABLE table_name_16 (year VARCHAR, time VARCHAR)
SELECT COUNT(year) FROM table_name_16 WHERE time = "55:29:20"
### Context: CREATE TABLE table_name_16 (year VARCHAR, time VARCHAR) ### Question: What year has the time of 55:29:20? ### Answer: SELECT COUNT(year) FROM table_name_16 WHERE time = "55:29:20"
What was the score when Mark parterned with lorenzo manta?
CREATE TABLE table_name_19 (score VARCHAR, partner VARCHAR)
SELECT score FROM table_name_19 WHERE partner = "lorenzo manta"
### Context: CREATE TABLE table_name_19 (score VARCHAR, partner VARCHAR) ### Question: What was the score when Mark parterned with lorenzo manta? ### Answer: SELECT score FROM table_name_19 WHERE partner = "lorenzo manta"
Who was his partner when he played on carpet?
CREATE TABLE table_name_22 (partner VARCHAR, surface VARCHAR)
SELECT partner FROM table_name_22 WHERE surface = "carpet"
### Context: CREATE TABLE table_name_22 (partner VARCHAR, surface VARCHAR) ### Question: Who was his partner when he played on carpet? ### Answer: SELECT partner FROM table_name_22 WHERE surface = "carpet"
When did he play with peter nyborg?
CREATE TABLE table_name_76 (date VARCHAR, partner VARCHAR)
SELECT date FROM table_name_76 WHERE partner = "peter nyborg"
### Context: CREATE TABLE table_name_76 (date VARCHAR, partner VARCHAR) ### Question: When did he play with peter nyborg? ### Answer: SELECT date FROM table_name_76 WHERE partner = "peter nyborg"
What day did he play on hard with tom mercer?
CREATE TABLE table_name_69 (date VARCHAR, surface VARCHAR, partner VARCHAR)
SELECT date FROM table_name_69 WHERE surface = "hard" AND partner = "tom mercer"
### Context: CREATE TABLE table_name_69 (date VARCHAR, surface VARCHAR, partner VARCHAR) ### Question: What day did he play on hard with tom mercer? ### Answer: SELECT date FROM table_name_69 WHERE surface = "hard" AND partner = "tom mercer"
What was the week 2's record?
CREATE TABLE table_name_92 (record VARCHAR, week VARCHAR)
SELECT record FROM table_name_92 WHERE week = "2"
### Context: CREATE TABLE table_name_92 (record VARCHAR, week VARCHAR) ### Question: What was the week 2's record? ### Answer: SELECT record FROM table_name_92 WHERE week = "2"
What was week 12's record?
CREATE TABLE table_name_57 (record VARCHAR, week VARCHAR)
SELECT record FROM table_name_57 WHERE week = "12"
### Context: CREATE TABLE table_name_57 (record VARCHAR, week VARCHAR) ### Question: What was week 12's record? ### Answer: SELECT record FROM table_name_57 WHERE week = "12"
What was the Bye week attendance?
CREATE TABLE table_name_25 (attendance VARCHAR, record VARCHAR)
SELECT attendance FROM table_name_25 WHERE record = "bye"
### Context: CREATE TABLE table_name_25 (attendance VARCHAR, record VARCHAR) ### Question: What was the Bye week attendance? ### Answer: SELECT attendance FROM table_name_25 WHERE record = "bye"
When was the kickoff time of the SB XXXVI?
CREATE TABLE table_name_93 (kickoff VARCHAR, week VARCHAR)
SELECT kickoff FROM table_name_93 WHERE week = "sb xxxvi"
### Context: CREATE TABLE table_name_93 (kickoff VARCHAR, week VARCHAR) ### Question: When was the kickoff time of the SB XXXVI? ### Answer: SELECT kickoff FROM table_name_93 WHERE week = "sb xxxvi"
What was the home team score for the game played at Princes Park?
CREATE TABLE table_name_3 (home_team VARCHAR, venue VARCHAR)
SELECT home_team AS score FROM table_name_3 WHERE venue = "princes park"
### Context: CREATE TABLE table_name_3 (home_team VARCHAR, venue VARCHAR) ### Question: What was the home team score for the game played at Princes Park? ### Answer: SELECT home_team AS score FROM table_name_3 WHERE venue = "princes park"
What event had a time of 6:37.73?
CREATE TABLE table_name_42 (event VARCHAR, time VARCHAR)
SELECT event FROM table_name_42 WHERE time = "6:37.73"
### Context: CREATE TABLE table_name_42 (event VARCHAR, time VARCHAR) ### Question: What event had a time of 6:37.73? ### Answer: SELECT event FROM table_name_42 WHERE time = "6:37.73"
What is the time for the 50m breaststroke?
CREATE TABLE table_name_34 (time VARCHAR, event VARCHAR)
SELECT time FROM table_name_34 WHERE event = "50m breaststroke"
### Context: CREATE TABLE table_name_34 (time VARCHAR, event VARCHAR) ### Question: What is the time for the 50m breaststroke? ### Answer: SELECT time FROM table_name_34 WHERE event = "50m breaststroke"
What age group has a time of 6:37.73 at the 200m breaststroke?
CREATE TABLE table_name_75 (age_group VARCHAR, event VARCHAR, time VARCHAR)
SELECT age_group FROM table_name_75 WHERE event = "200m breaststroke" AND time = "6:37.73"
### Context: CREATE TABLE table_name_75 (age_group VARCHAR, event VARCHAR, time VARCHAR) ### Question: What age group has a time of 6:37.73 at the 200m breaststroke? ### Answer: SELECT age_group FROM table_name_75 WHERE event = "200m breaststroke" AND time = "6:37.73"
What date did the 90-94 year old have a tie of 1:25.91 at the LC pool?
CREATE TABLE table_name_25 (date VARCHAR, time VARCHAR, age_group VARCHAR, pool VARCHAR)
SELECT date FROM table_name_25 WHERE age_group = "90-94" AND pool = "lc" AND time = "1:25.91"
### Context: CREATE TABLE table_name_25 (date VARCHAR, time VARCHAR, age_group VARCHAR, pool VARCHAR) ### Question: What date did the 90-94 year old have a tie of 1:25.91 at the LC pool? ### Answer: SELECT date FROM table_name_25 WHERE age_group = "90-94" AND pool = "lc" AND time = "1:25.91"
How many point totals are there that rank higher than 9 and have a PPG avg higher than 13.4?
CREATE TABLE table_name_48 (total_points VARCHAR, rank VARCHAR, ppg_avg VARCHAR)
SELECT COUNT(total_points) FROM table_name_48 WHERE rank > 9 AND ppg_avg > 13.4
### Context: CREATE TABLE table_name_48 (total_points VARCHAR, rank VARCHAR, ppg_avg VARCHAR) ### Question: How many point totals are there that rank higher than 9 and have a PPG avg higher than 13.4? ### Answer: SELECT COUNT(total_points) FROM table_name_48 WHERE rank > 9 AND ppg_avg > 13.4
How many players played over 125 games and were named david gonzalvez?
CREATE TABLE table_name_16 (rank VARCHAR, games VARCHAR, player VARCHAR)
SELECT COUNT(rank) FROM table_name_16 WHERE games > 125 AND player = "david gonzalvez"
### Context: CREATE TABLE table_name_16 (rank VARCHAR, games VARCHAR, player VARCHAR) ### Question: How many players played over 125 games and were named david gonzalvez? ### Answer: SELECT COUNT(rank) FROM table_name_16 WHERE games > 125 AND player = "david gonzalvez"
Which host university is based in Missoula?
CREATE TABLE table_name_40 (host VARCHAR, city VARCHAR)
SELECT host FROM table_name_40 WHERE city = "missoula"
### Context: CREATE TABLE table_name_40 (host VARCHAR, city VARCHAR) ### Question: Which host university is based in Missoula? ### Answer: SELECT host FROM table_name_40 WHERE city = "missoula"
What state is the city of Ruston in?
CREATE TABLE table_name_13 (state VARCHAR, city VARCHAR)
SELECT state FROM table_name_13 WHERE city = "ruston"
### Context: CREATE TABLE table_name_13 (state VARCHAR, city VARCHAR) ### Question: What state is the city of Ruston in? ### Answer: SELECT state FROM table_name_13 WHERE city = "ruston"
Which mideast regional state contains the city of Seattle?
CREATE TABLE table_name_53 (state VARCHAR, region VARCHAR, city VARCHAR)
SELECT state FROM table_name_53 WHERE region = "mideast" AND city = "seattle"
### Context: CREATE TABLE table_name_53 (state VARCHAR, region VARCHAR, city VARCHAR) ### Question: Which mideast regional state contains the city of Seattle? ### Answer: SELECT state FROM table_name_53 WHERE region = "mideast" AND city = "seattle"
Which region does Old Dominion University represent?
CREATE TABLE table_name_33 (region VARCHAR, host VARCHAR)
SELECT region FROM table_name_33 WHERE host = "old dominion university"
### Context: CREATE TABLE table_name_33 (region VARCHAR, host VARCHAR) ### Question: Which region does Old Dominion University represent? ### Answer: SELECT region FROM table_name_33 WHERE host = "old dominion university"
Which state is University of Tennessee based in?
CREATE TABLE table_name_27 (state VARCHAR, host VARCHAR)
SELECT state FROM table_name_27 WHERE host = "university of tennessee"
### Context: CREATE TABLE table_name_27 (state VARCHAR, host VARCHAR) ### Question: Which state is University of Tennessee based in? ### Answer: SELECT state FROM table_name_27 WHERE host = "university of tennessee"
What was the grid for Bruno Junqueira for Dale Coyne Racing?
CREATE TABLE table_name_45 (grid VARCHAR, team VARCHAR, driver VARCHAR)
SELECT grid FROM table_name_45 WHERE team = "dale coyne racing" AND driver = "bruno junqueira"
### Context: CREATE TABLE table_name_45 (grid VARCHAR, team VARCHAR, driver VARCHAR) ### Question: What was the grid for Bruno Junqueira for Dale Coyne Racing? ### Answer: SELECT grid FROM table_name_45 WHERE team = "dale coyne racing" AND driver = "bruno junqueira"
What were the highest points for less than 78 laps and on grid 5?
CREATE TABLE table_name_86 (points INTEGER, grid VARCHAR, laps VARCHAR)
SELECT MAX(points) FROM table_name_86 WHERE grid = 5 AND laps < 78
### Context: CREATE TABLE table_name_86 (points INTEGER, grid VARCHAR, laps VARCHAR) ### Question: What were the highest points for less than 78 laps and on grid 5? ### Answer: SELECT MAX(points) FROM table_name_86 WHERE grid = 5 AND laps < 78
How many were in the crowd at the Junction Oval venue?
CREATE TABLE table_name_15 (crowd VARCHAR, venue VARCHAR)
SELECT crowd FROM table_name_15 WHERE venue = "junction oval"
### Context: CREATE TABLE table_name_15 (crowd VARCHAR, venue VARCHAR) ### Question: How many were in the crowd at the Junction Oval venue? ### Answer: SELECT crowd FROM table_name_15 WHERE venue = "junction oval"
What was the away team score in the game at Arden Street Oval?
CREATE TABLE table_name_31 (away_team VARCHAR, venue VARCHAR)
SELECT away_team AS score FROM table_name_31 WHERE venue = "arden street oval"
### Context: CREATE TABLE table_name_31 (away_team VARCHAR, venue VARCHAR) ### Question: What was the away team score in the game at Arden Street Oval? ### Answer: SELECT away_team AS score FROM table_name_31 WHERE venue = "arden street oval"
What was the date of the Arden Street Oval game?
CREATE TABLE table_name_59 (date VARCHAR, venue VARCHAR)
SELECT date FROM table_name_59 WHERE venue = "arden street oval"
### Context: CREATE TABLE table_name_59 (date VARCHAR, venue VARCHAR) ### Question: What was the date of the Arden Street Oval game? ### Answer: SELECT date FROM table_name_59 WHERE venue = "arden street oval"
What venue saw a crowd larger than 29,840?
CREATE TABLE table_name_13 (venue VARCHAR, crowd INTEGER)
SELECT venue FROM table_name_13 WHERE crowd > 29 OFFSET 840
### Context: CREATE TABLE table_name_13 (venue VARCHAR, crowd INTEGER) ### Question: What venue saw a crowd larger than 29,840? ### Answer: SELECT venue FROM table_name_13 WHERE crowd > 29 OFFSET 840
When does week 11 start?
CREATE TABLE table_name_25 (date VARCHAR, week VARCHAR)
SELECT date FROM table_name_25 WHERE week = "11"
### Context: CREATE TABLE table_name_25 (date VARCHAR, week VARCHAR) ### Question: When does week 11 start? ### Answer: SELECT date FROM table_name_25 WHERE week = "11"
Which week starts on December 28, 1997?
CREATE TABLE table_name_1 (week VARCHAR, date VARCHAR)
SELECT week FROM table_name_1 WHERE date = "december 28, 1997"
### Context: CREATE TABLE table_name_1 (week VARCHAR, date VARCHAR) ### Question: Which week starts on December 28, 1997? ### Answer: SELECT week FROM table_name_1 WHERE date = "december 28, 1997"
When does week 1 start?
CREATE TABLE table_name_54 (date VARCHAR, week VARCHAR)
SELECT date FROM table_name_54 WHERE week = "1"
### Context: CREATE TABLE table_name_54 (date VARCHAR, week VARCHAR) ### Question: When does week 1 start? ### Answer: SELECT date FROM table_name_54 WHERE week = "1"
Who one in the Tampa Bay Buccaneers?
CREATE TABLE table_name_59 (result VARCHAR, opponent VARCHAR)
SELECT result FROM table_name_59 WHERE opponent = "tampa bay buccaneers"
### Context: CREATE TABLE table_name_59 (result VARCHAR, opponent VARCHAR) ### Question: Who one in the Tampa Bay Buccaneers? ### Answer: SELECT result FROM table_name_59 WHERE opponent = "tampa bay buccaneers"
Which week starts on November 23, 1997?
CREATE TABLE table_name_55 (week VARCHAR, date VARCHAR)
SELECT week FROM table_name_55 WHERE date = "november 23, 1997"
### Context: CREATE TABLE table_name_55 (week VARCHAR, date VARCHAR) ### Question: Which week starts on November 23, 1997? ### Answer: SELECT week FROM table_name_55 WHERE date = "november 23, 1997"
Who is the away team when the home team was Fitzroy?
CREATE TABLE table_name_55 (away_team VARCHAR, home_team VARCHAR)
SELECT away_team FROM table_name_55 WHERE home_team = "fitzroy"
### Context: CREATE TABLE table_name_55 (away_team VARCHAR, home_team VARCHAR) ### Question: Who is the away team when the home team was Fitzroy? ### Answer: SELECT away_team FROM table_name_55 WHERE home_team = "fitzroy"
What was Melbourne's score when they were the home team?
CREATE TABLE table_name_37 (home_team VARCHAR)
SELECT home_team AS score FROM table_name_37 WHERE home_team = "melbourne"
### Context: CREATE TABLE table_name_37 (home_team VARCHAR) ### Question: What was Melbourne's score when they were the home team? ### Answer: SELECT home_team AS score FROM table_name_37 WHERE home_team = "melbourne"
What is the date of the game where Collingwood was the home team?
CREATE TABLE table_name_31 (date VARCHAR, home_team VARCHAR)
SELECT date FROM table_name_31 WHERE home_team = "collingwood"
### Context: CREATE TABLE table_name_31 (date VARCHAR, home_team VARCHAR) ### Question: What is the date of the game where Collingwood was the home team? ### Answer: SELECT date FROM table_name_31 WHERE home_team = "collingwood"
Who watches North Melbourne when they are away?
CREATE TABLE table_name_14 (crowd VARCHAR, away_team VARCHAR)
SELECT crowd FROM table_name_14 WHERE away_team = "north melbourne"
### Context: CREATE TABLE table_name_14 (crowd VARCHAR, away_team VARCHAR) ### Question: Who watches North Melbourne when they are away? ### Answer: SELECT crowd FROM table_name_14 WHERE away_team = "north melbourne"
What Away team is visiting Carlton?
CREATE TABLE table_name_27 (away_team VARCHAR, home_team VARCHAR)
SELECT away_team FROM table_name_27 WHERE home_team = "carlton"
### Context: CREATE TABLE table_name_27 (away_team VARCHAR, home_team VARCHAR) ### Question: What Away team is visiting Carlton? ### Answer: SELECT away_team FROM table_name_27 WHERE home_team = "carlton"
What team has Windy Hill as their home venue
CREATE TABLE table_name_47 (home_team VARCHAR, venue VARCHAR)
SELECT home_team AS score FROM table_name_47 WHERE venue = "windy hill"
### Context: CREATE TABLE table_name_47 (home_team VARCHAR, venue VARCHAR) ### Question: What team has Windy Hill as their home venue ### Answer: SELECT home_team AS score FROM table_name_47 WHERE venue = "windy hill"
When richmond played away, what was the largest number of people who watched?
CREATE TABLE table_name_8 (crowd INTEGER, away_team VARCHAR)
SELECT MAX(crowd) FROM table_name_8 WHERE away_team = "richmond"
### Context: CREATE TABLE table_name_8 (crowd INTEGER, away_team VARCHAR) ### Question: When richmond played away, what was the largest number of people who watched? ### Answer: SELECT MAX(crowd) FROM table_name_8 WHERE away_team = "richmond"
Which country is ranked higher than 68, with a city named Santa Fe and a stadium that has a capacity of 32,000?
CREATE TABLE table_name_10 (country VARCHAR, city VARCHAR, rank VARCHAR, capacity VARCHAR)
SELECT country FROM table_name_10 WHERE rank > 68 AND capacity = "32,000" AND city = "santa fe"
### Context: CREATE TABLE table_name_10 (country VARCHAR, city VARCHAR, rank VARCHAR, capacity VARCHAR) ### Question: Which country is ranked higher than 68, with a city named Santa Fe and a stadium that has a capacity of 32,000? ### Answer: SELECT country FROM table_name_10 WHERE rank > 68 AND capacity = "32,000" AND city = "santa fe"
What is the capacity of the stadium with a rank lower than 31 located in the city of Belém ?
CREATE TABLE table_name_97 (capacity VARCHAR, rank VARCHAR, city VARCHAR)
SELECT capacity FROM table_name_97 WHERE rank < 31 AND city = "belém"
### Context: CREATE TABLE table_name_97 (capacity VARCHAR, rank VARCHAR, city VARCHAR) ### Question: What is the capacity of the stadium with a rank lower than 31 located in the city of Belém ? ### Answer: SELECT capacity FROM table_name_97 WHERE rank < 31 AND city = "belém"
What is the sum of week(s) with an attendance of 30,751?
CREATE TABLE table_name_77 (week INTEGER, attendance VARCHAR)
SELECT SUM(week) FROM table_name_77 WHERE attendance = 30 OFFSET 751
### Context: CREATE TABLE table_name_77 (week INTEGER, attendance VARCHAR) ### Question: What is the sum of week(s) with an attendance of 30,751? ### Answer: SELECT SUM(week) FROM table_name_77 WHERE attendance = 30 OFFSET 751
On what date did the home team Essendon play?
CREATE TABLE table_name_50 (date VARCHAR, home_team VARCHAR)
SELECT date FROM table_name_50 WHERE home_team = "essendon"
### Context: CREATE TABLE table_name_50 (date VARCHAR, home_team VARCHAR) ### Question: On what date did the home team Essendon play? ### Answer: SELECT date FROM table_name_50 WHERE home_team = "essendon"
What was South Melbourne's home team score?
CREATE TABLE table_name_90 (home_team VARCHAR)
SELECT home_team AS score FROM table_name_90 WHERE home_team = "south melbourne"
### Context: CREATE TABLE table_name_90 (home_team VARCHAR) ### Question: What was South Melbourne's home team score? ### Answer: SELECT home_team AS score FROM table_name_90 WHERE home_team = "south melbourne"
On what date was the venue of Glenferrie Oval?
CREATE TABLE table_name_12 (date VARCHAR, venue VARCHAR)
SELECT date FROM table_name_12 WHERE venue = "glenferrie oval"
### Context: CREATE TABLE table_name_12 (date VARCHAR, venue VARCHAR) ### Question: On what date was the venue of Glenferrie Oval? ### Answer: SELECT date FROM table_name_12 WHERE venue = "glenferrie oval"
What was the score for the away team when they played collingwood?
CREATE TABLE table_name_57 (away_team VARCHAR, home_team VARCHAR)
SELECT away_team AS score FROM table_name_57 WHERE home_team = "collingwood"
### Context: CREATE TABLE table_name_57 (away_team VARCHAR, home_team VARCHAR) ### Question: What was the score for the away team when they played collingwood? ### Answer: SELECT away_team AS score FROM table_name_57 WHERE home_team = "collingwood"
What was the score when essendon was the home team?
CREATE TABLE table_name_75 (home_team VARCHAR)
SELECT home_team AS score FROM table_name_75 WHERE home_team = "essendon"
### Context: CREATE TABLE table_name_75 (home_team VARCHAR) ### Question: What was the score when essendon was the home team? ### Answer: SELECT home_team AS score FROM table_name_75 WHERE home_team = "essendon"
What is the date of the game where Richmond was the away team?
CREATE TABLE table_name_70 (date VARCHAR, away_team VARCHAR)
SELECT date FROM table_name_70 WHERE away_team = "richmond"
### Context: CREATE TABLE table_name_70 (date VARCHAR, away_team VARCHAR) ### Question: What is the date of the game where Richmond was the away team? ### Answer: SELECT date FROM table_name_70 WHERE away_team = "richmond"
Who was the home team when Carlton was the away team?
CREATE TABLE table_name_97 (home_team VARCHAR, away_team VARCHAR)
SELECT home_team FROM table_name_97 WHERE away_team = "carlton"
### Context: CREATE TABLE table_name_97 (home_team VARCHAR, away_team VARCHAR) ### Question: Who was the home team when Carlton was the away team? ### Answer: SELECT home_team FROM table_name_97 WHERE away_team = "carlton"
Which home team played against Hawthorn?
CREATE TABLE table_name_49 (home_team VARCHAR, away_team VARCHAR)
SELECT home_team AS score FROM table_name_49 WHERE away_team = "hawthorn"
### Context: CREATE TABLE table_name_49 (home_team VARCHAR, away_team VARCHAR) ### Question: Which home team played against Hawthorn? ### Answer: SELECT home_team AS score FROM table_name_49 WHERE away_team = "hawthorn"
What date did the Geelong team play on as a home team?
CREATE TABLE table_name_12 (date VARCHAR, home_team VARCHAR)
SELECT date FROM table_name_12 WHERE home_team = "geelong"
### Context: CREATE TABLE table_name_12 (date VARCHAR, home_team VARCHAR) ### Question: What date did the Geelong team play on as a home team? ### Answer: SELECT date FROM table_name_12 WHERE home_team = "geelong"
What school/club team did the player who was drafted after round 13 with an overall rank of 384 play for?
CREATE TABLE table_name_38 (school_club_team VARCHAR, round VARCHAR, overall VARCHAR)
SELECT school_club_team FROM table_name_38 WHERE round > 13 AND overall = 384
### Context: CREATE TABLE table_name_38 (school_club_team VARCHAR, round VARCHAR, overall VARCHAR) ### Question: What school/club team did the player who was drafted after round 13 with an overall rank of 384 play for? ### Answer: SELECT school_club_team FROM table_name_38 WHERE round > 13 AND overall = 384
What is the largest overall rank for a center drafted before round 10?
CREATE TABLE table_name_22 (overall INTEGER, position VARCHAR, round VARCHAR)
SELECT MAX(overall) FROM table_name_22 WHERE position = "center" AND round < 10
### Context: CREATE TABLE table_name_22 (overall INTEGER, position VARCHAR, round VARCHAR) ### Question: What is the largest overall rank for a center drafted before round 10? ### Answer: SELECT MAX(overall) FROM table_name_22 WHERE position = "center" AND round < 10
What position does the player from Texas State who was drafted before round 11 with an overall rank lower than 306 play?
CREATE TABLE table_name_70 (position VARCHAR, school_club_team VARCHAR, overall VARCHAR, round VARCHAR)
SELECT position FROM table_name_70 WHERE overall < 306 AND round < 11 AND school_club_team = "texas state"
### Context: CREATE TABLE table_name_70 (position VARCHAR, school_club_team VARCHAR, overall VARCHAR, round VARCHAR) ### Question: What position does the player from Texas State who was drafted before round 11 with an overall rank lower than 306 play? ### Answer: SELECT position FROM table_name_70 WHERE overall < 306 AND round < 11 AND school_club_team = "texas state"
What is the average overall rank of all players drafted from Duke after round 9?
CREATE TABLE table_name_49 (overall INTEGER, school_club_team VARCHAR, round VARCHAR)
SELECT AVG(overall) FROM table_name_49 WHERE school_club_team = "duke" AND round > 9
### Context: CREATE TABLE table_name_49 (overall INTEGER, school_club_team VARCHAR, round VARCHAR) ### Question: What is the average overall rank of all players drafted from Duke after round 9? ### Answer: SELECT AVG(overall) FROM table_name_49 WHERE school_club_team = "duke" AND round > 9
What is the sum of all rounds where a Tennessee State player with an overall rank less than 261 was drafted?
CREATE TABLE table_name_95 (round VARCHAR, school_club_team VARCHAR, overall VARCHAR)
SELECT COUNT(round) FROM table_name_95 WHERE school_club_team = "tennessee state" AND overall < 261
### Context: CREATE TABLE table_name_95 (round VARCHAR, school_club_team VARCHAR, overall VARCHAR) ### Question: What is the sum of all rounds where a Tennessee State player with an overall rank less than 261 was drafted? ### Answer: SELECT COUNT(round) FROM table_name_95 WHERE school_club_team = "tennessee state" AND overall < 261
What is the highest overall rank of any Tennessee State player drafted before round 10?
CREATE TABLE table_name_48 (overall INTEGER, school_club_team VARCHAR, round VARCHAR)
SELECT MIN(overall) FROM table_name_48 WHERE school_club_team = "tennessee state" AND round < 10
### Context: CREATE TABLE table_name_48 (overall INTEGER, school_club_team VARCHAR, round VARCHAR) ### Question: What is the highest overall rank of any Tennessee State player drafted before round 10? ### Answer: SELECT MIN(overall) FROM table_name_48 WHERE school_club_team = "tennessee state" AND round < 10
How many rounds did Blane Smith play linebacker?
CREATE TABLE table_name_12 (round VARCHAR, position VARCHAR, player VARCHAR)
SELECT COUNT(round) FROM table_name_12 WHERE position = "linebacker" AND player = "blane smith"
### Context: CREATE TABLE table_name_12 (round VARCHAR, position VARCHAR, player VARCHAR) ### Question: How many rounds did Blane Smith play linebacker? ### Answer: SELECT COUNT(round) FROM table_name_12 WHERE position = "linebacker" AND player = "blane smith"
How many times was Arizona the team and the round was bigger than 11?
CREATE TABLE table_name_86 (overall VARCHAR, school_club_team VARCHAR, round VARCHAR)
SELECT COUNT(overall) FROM table_name_86 WHERE school_club_team = "arizona" AND round > 11
### Context: CREATE TABLE table_name_86 (overall VARCHAR, school_club_team VARCHAR, round VARCHAR) ### Question: How many times was Arizona the team and the round was bigger than 11? ### Answer: SELECT COUNT(overall) FROM table_name_86 WHERE school_club_team = "arizona" AND round > 11
What is the result of the game after week 5 against the st. louis rams?
CREATE TABLE table_name_52 (result VARCHAR, week VARCHAR, opponent VARCHAR)
SELECT result FROM table_name_52 WHERE week > 5 AND opponent = "st. louis rams"
### Context: CREATE TABLE table_name_52 (result VARCHAR, week VARCHAR, opponent VARCHAR) ### Question: What is the result of the game after week 5 against the st. louis rams? ### Answer: SELECT result FROM table_name_52 WHERE week > 5 AND opponent = "st. louis rams"
What day did they play on week 4?
CREATE TABLE table_name_56 (date VARCHAR, week VARCHAR)
SELECT date FROM table_name_56 WHERE week = 4
### Context: CREATE TABLE table_name_56 (date VARCHAR, week VARCHAR) ### Question: What day did they play on week 4? ### Answer: SELECT date FROM table_name_56 WHERE week = 4
What is the largest crowd at princes park?
CREATE TABLE table_name_88 (crowd INTEGER, venue VARCHAR)
SELECT MAX(crowd) FROM table_name_88 WHERE venue = "princes park"
### Context: CREATE TABLE table_name_88 (crowd INTEGER, venue VARCHAR) ### Question: What is the largest crowd at princes park? ### Answer: SELECT MAX(crowd) FROM table_name_88 WHERE venue = "princes park"
What day is north melbourne the away side?
CREATE TABLE table_name_51 (date VARCHAR, away_team VARCHAR)
SELECT date FROM table_name_51 WHERE away_team = "north melbourne"
### Context: CREATE TABLE table_name_51 (date VARCHAR, away_team VARCHAR) ### Question: What day is north melbourne the away side? ### Answer: SELECT date FROM table_name_51 WHERE away_team = "north melbourne"
What day is essendon the home team?
CREATE TABLE table_name_69 (date VARCHAR, home_team VARCHAR)
SELECT date FROM table_name_69 WHERE home_team = "essendon"
### Context: CREATE TABLE table_name_69 (date VARCHAR, home_team VARCHAR) ### Question: What day is essendon the home team? ### Answer: SELECT date FROM table_name_69 WHERE home_team = "essendon"
How many games had an assist number greater than 54?
CREATE TABLE table_name_54 (games INTEGER, assist INTEGER)
SELECT SUM(games) FROM table_name_54 WHERE assist > 54
### Context: CREATE TABLE table_name_54 (games INTEGER, assist INTEGER) ### Question: How many games had an assist number greater than 54? ### Answer: SELECT SUM(games) FROM table_name_54 WHERE assist > 54
Which years did the USA have a rank lower than 6 and an assist number less than 26?
CREATE TABLE table_name_47 (years VARCHAR, nation VARCHAR, assist VARCHAR, rank VARCHAR)
SELECT years FROM table_name_47 WHERE assist < 26 AND rank < 6 AND nation = "usa"
### Context: CREATE TABLE table_name_47 (years VARCHAR, nation VARCHAR, assist VARCHAR, rank VARCHAR) ### Question: Which years did the USA have a rank lower than 6 and an assist number less than 26? ### Answer: SELECT years FROM table_name_47 WHERE assist < 26 AND rank < 6 AND nation = "usa"
Which year or years did a team win 174 games and had an assist number less than 17?
CREATE TABLE table_name_40 (years VARCHAR, assist VARCHAR, games VARCHAR)
SELECT years FROM table_name_40 WHERE assist < 17 AND games = 174
### Context: CREATE TABLE table_name_40 (years VARCHAR, assist VARCHAR, games VARCHAR) ### Question: Which year or years did a team win 174 games and had an assist number less than 17? ### Answer: SELECT years FROM table_name_40 WHERE assist < 17 AND games = 174
Which party does Claudette Tardif belong to?
CREATE TABLE table_name_85 (party VARCHAR, name VARCHAR)
SELECT party FROM table_name_85 WHERE name = "claudette tardif"
### Context: CREATE TABLE table_name_85 (party VARCHAR, name VARCHAR) ### Question: Which party does Claudette Tardif belong to? ### Answer: SELECT party FROM table_name_85 WHERE name = "claudette tardif"
Who appointed the conservative from Ontario on June 18, 1993?
CREATE TABLE table_name_61 (appointed_by VARCHAR, date_appointed VARCHAR, party VARCHAR, province__division_ VARCHAR)
SELECT appointed_by FROM table_name_61 WHERE party = "conservative" AND province__division_ = "ontario" AND date_appointed = "june 18, 1993"
### Context: CREATE TABLE table_name_61 (appointed_by VARCHAR, date_appointed VARCHAR, party VARCHAR, province__division_ VARCHAR) ### Question: Who appointed the conservative from Ontario on June 18, 1993? ### Answer: SELECT appointed_by FROM table_name_61 WHERE party = "conservative" AND province__division_ = "ontario" AND date_appointed = "june 18, 1993"
What competition, federation, or league are the Tennessee Titans a member of?
CREATE TABLE table_name_7 (competition_ VARCHAR, _federation_ VARCHAR, _or_league VARCHAR, team VARCHAR)
SELECT competition_, _federation_, _or_league FROM table_name_7 WHERE team = "tennessee titans"
### Context: CREATE TABLE table_name_7 (competition_ VARCHAR, _federation_ VARCHAR, _or_league VARCHAR, team VARCHAR) ### Question: What competition, federation, or league are the Tennessee Titans a member of? ### Answer: SELECT competition_, _federation_, _or_league FROM table_name_7 WHERE team = "tennessee titans"
What day is south melbourne at home?
CREATE TABLE table_name_71 (date VARCHAR, home_team VARCHAR)
SELECT date FROM table_name_71 WHERE home_team = "south melbourne"
### Context: CREATE TABLE table_name_71 (date VARCHAR, home_team VARCHAR) ### Question: What day is south melbourne at home? ### Answer: SELECT date FROM table_name_71 WHERE home_team = "south melbourne"
What is the lowest crowd at corio oval?
CREATE TABLE table_name_20 (crowd INTEGER, venue VARCHAR)
SELECT MIN(crowd) FROM table_name_20 WHERE venue = "corio oval"
### Context: CREATE TABLE table_name_20 (crowd INTEGER, venue VARCHAR) ### Question: What is the lowest crowd at corio oval? ### Answer: SELECT MIN(crowd) FROM table_name_20 WHERE venue = "corio oval"
What venue features carlton as an away team?
CREATE TABLE table_name_34 (venue VARCHAR, away_team VARCHAR)
SELECT venue FROM table_name_34 WHERE away_team = "carlton"
### Context: CREATE TABLE table_name_34 (venue VARCHAR, away_team VARCHAR) ### Question: What venue features carlton as an away team? ### Answer: SELECT venue FROM table_name_34 WHERE away_team = "carlton"
What day does the team play at western oval?
CREATE TABLE table_name_59 (date VARCHAR, venue VARCHAR)
SELECT date FROM table_name_59 WHERE venue = "western oval"
### Context: CREATE TABLE table_name_59 (date VARCHAR, venue VARCHAR) ### Question: What day does the team play at western oval? ### Answer: SELECT date FROM table_name_59 WHERE venue = "western oval"
What venue features collingwood as the home side?
CREATE TABLE table_name_4 (venue VARCHAR, home_team VARCHAR)
SELECT venue FROM table_name_4 WHERE home_team = "collingwood"
### Context: CREATE TABLE table_name_4 (venue VARCHAR, home_team VARCHAR) ### Question: What venue features collingwood as the home side? ### Answer: SELECT venue FROM table_name_4 WHERE home_team = "collingwood"
What is the attendance of week 1
CREATE TABLE table_name_92 (attendance VARCHAR, week VARCHAR)
SELECT attendance FROM table_name_92 WHERE week = 1
### Context: CREATE TABLE table_name_92 (attendance VARCHAR, week VARCHAR) ### Question: What is the attendance of week 1 ### Answer: SELECT attendance FROM table_name_92 WHERE week = 1