question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
How large was the crowd at the Kardinia Park venue games?
CREATE TABLE table_name_69 (crowd INTEGER, venue VARCHAR)
SELECT SUM(crowd) FROM table_name_69 WHERE venue = "kardinia park"
### Context: CREATE TABLE table_name_69 (crowd INTEGER, venue VARCHAR) ### Question: How large was the crowd at the Kardinia Park venue games? ### Answer: SELECT SUM(crowd) FROM table_name_69 WHERE venue = "kardinia park"
What was the score of the Home team that played against Carlton's Away game?
CREATE TABLE table_name_3 (home_team VARCHAR, away_team VARCHAR)
SELECT home_team AS score FROM table_name_3 WHERE away_team = "carlton"
### Context: CREATE TABLE table_name_3 (home_team VARCHAR, away_team VARCHAR) ### Question: What was the score of the Home team that played against Carlton's Away game? ### Answer: SELECT home_team AS score FROM table_name_3 WHERE away_team = "carlton"
What was the pick number when mark hayes was drafted?
CREATE TABLE table_name_42 (pick VARCHAR, player VARCHAR)
SELECT pick FROM table_name_42 WHERE player = "mark hayes"
### Context: CREATE TABLE table_name_42 (pick VARCHAR, player VARCHAR) ### Question: What was the pick number when mark hayes was drafted? ### Answer: SELECT pick FROM table_name_42 WHERE player = "mark hayes"
Which team had a pick of 63?
CREATE TABLE table_name_93 (school_club_team VARCHAR, pick VARCHAR)
SELECT school_club_team FROM table_name_93 WHERE pick = 63
### Context: CREATE TABLE table_name_93 (school_club_team VARCHAR, pick VARCHAR) ### Question: Which team had a pick of 63? ### Answer: SELECT school_club_team FROM table_name_93 WHERE pick = 63
Which team had a position of linebacker with a pick smaller of 288?
CREATE TABLE table_name_44 (school_club_team VARCHAR, position VARCHAR, pick VARCHAR)
SELECT school_club_team FROM table_name_44 WHERE position = "linebacker" AND pick < 288
### Context: CREATE TABLE table_name_44 (school_club_team VARCHAR, position VARCHAR, pick VARCHAR) ### Question: Which team had a position of linebacker with a pick smaller of 288? ### Answer: SELECT school_club_team FROM table_name_44 WHERE position = "linebacker" AND pick < 288
What player did louisville pick when the round was below 8?
CREATE TABLE table_name_70 (player VARCHAR, round VARCHAR, school_club_team VARCHAR)
SELECT player FROM table_name_70 WHERE round < 8 AND school_club_team = "louisville"
### Context: CREATE TABLE table_name_70 (player VARCHAR, round VARCHAR, school_club_team VARCHAR) ### Question: What player did louisville pick when the round was below 8? ### Answer: SELECT player FROM table_name_70 WHERE round < 8 AND school_club_team = "louisville"
What was the outcome of the game that had a score of 3–6, 6–3, 6–0?
CREATE TABLE table_name_81 (outcome VARCHAR, score VARCHAR)
SELECT outcome FROM table_name_81 WHERE score = "3–6, 6–3, 6–0"
### Context: CREATE TABLE table_name_81 (outcome VARCHAR, score VARCHAR) ### Question: What was the outcome of the game that had a score of 3–6, 6–3, 6–0? ### Answer: SELECT outcome FROM table_name_81 WHERE score = "3–6, 6–3, 6–0"
On 27 July 2003 what was the outcome of the game that resulted in a score of 7–5, 6–3?
CREATE TABLE table_name_77 (outcome VARCHAR, score VARCHAR, date VARCHAR)
SELECT outcome FROM table_name_77 WHERE score = "7–5, 6–3" AND date = "27 july 2003"
### Context: CREATE TABLE table_name_77 (outcome VARCHAR, score VARCHAR, date VARCHAR) ### Question: On 27 July 2003 what was the outcome of the game that resulted in a score of 7–5, 6–3? ### Answer: SELECT outcome FROM table_name_77 WHERE score = "7–5, 6–3" AND date = "27 july 2003"
What was the final score of the game against Lenka Novotná?
CREATE TABLE table_name_29 (score VARCHAR, opponent_in_the_final VARCHAR)
SELECT score FROM table_name_29 WHERE opponent_in_the_final = "lenka novotná"
### Context: CREATE TABLE table_name_29 (score VARCHAR, opponent_in_the_final VARCHAR) ### Question: What was the final score of the game against Lenka Novotná? ### Answer: SELECT score FROM table_name_29 WHERE opponent_in_the_final = "lenka novotná"
In the surface of clay who was the opponent in the game resulting in a score of 6–4, 6–4?
CREATE TABLE table_name_23 (opponent_in_the_final VARCHAR, surface VARCHAR, score VARCHAR)
SELECT opponent_in_the_final FROM table_name_23 WHERE surface = "clay" AND score = "6–4, 6–4"
### Context: CREATE TABLE table_name_23 (opponent_in_the_final VARCHAR, surface VARCHAR, score VARCHAR) ### Question: In the surface of clay who was the opponent in the game resulting in a score of 6–4, 6–4? ### Answer: SELECT opponent_in_the_final FROM table_name_23 WHERE surface = "clay" AND score = "6–4, 6–4"
What was the final score of the game against opponent Ana Ivanovic?
CREATE TABLE table_name_75 (score VARCHAR, opponent_in_the_final VARCHAR)
SELECT score FROM table_name_75 WHERE opponent_in_the_final = "ana ivanovic"
### Context: CREATE TABLE table_name_75 (score VARCHAR, opponent_in_the_final VARCHAR) ### Question: What was the final score of the game against opponent Ana Ivanovic? ### Answer: SELECT score FROM table_name_75 WHERE opponent_in_the_final = "ana ivanovic"
What is the total grid number where the time/retired is +58.182 and the lap number is less than 67?
CREATE TABLE table_name_12 (grid INTEGER, time_retired VARCHAR, laps VARCHAR)
SELECT SUM(grid) FROM table_name_12 WHERE time_retired = "+58.182" AND laps < 67
### Context: CREATE TABLE table_name_12 (grid INTEGER, time_retired VARCHAR, laps VARCHAR) ### Question: What is the total grid number where the time/retired is +58.182 and the lap number is less than 67? ### Answer: SELECT SUM(grid) FROM table_name_12 WHERE time_retired = "+58.182" AND laps < 67
What horse was induced in 2011 with a sire of cowboy p-12?
CREATE TABLE table_name_77 (name_of_horse VARCHAR, year_inducted VARCHAR, broodmare_sire VARCHAR)
SELECT name_of_horse FROM table_name_77 WHERE year_inducted = 2011 AND broodmare_sire = "cowboy p-12"
### Context: CREATE TABLE table_name_77 (name_of_horse VARCHAR, year_inducted VARCHAR, broodmare_sire VARCHAR) ### Question: What horse was induced in 2011 with a sire of cowboy p-12? ### Answer: SELECT name_of_horse FROM table_name_77 WHERE year_inducted = 2011 AND broodmare_sire = "cowboy p-12"
Who was the home team that played against hawthorn?
CREATE TABLE table_name_65 (home_team VARCHAR, away_team VARCHAR)
SELECT home_team FROM table_name_65 WHERE away_team = "hawthorn"
### Context: CREATE TABLE table_name_65 (home_team VARCHAR, away_team VARCHAR) ### Question: Who was the home team that played against hawthorn? ### Answer: SELECT home_team FROM table_name_65 WHERE away_team = "hawthorn"
Who was the away team playing against collingwood?
CREATE TABLE table_name_15 (away_team VARCHAR, home_team VARCHAR)
SELECT away_team FROM table_name_15 WHERE home_team = "collingwood"
### Context: CREATE TABLE table_name_15 (away_team VARCHAR, home_team VARCHAR) ### Question: Who was the away team playing against collingwood? ### Answer: SELECT away_team FROM table_name_15 WHERE home_team = "collingwood"
What was the biggest crowd at punt road oval?
CREATE TABLE table_name_65 (crowd INTEGER, venue VARCHAR)
SELECT MAX(crowd) FROM table_name_65 WHERE venue = "punt road oval"
### Context: CREATE TABLE table_name_65 (crowd INTEGER, venue VARCHAR) ### Question: What was the biggest crowd at punt road oval? ### Answer: SELECT MAX(crowd) FROM table_name_65 WHERE venue = "punt road oval"
Who is the home team based at windy hill?
CREATE TABLE table_name_56 (home_team VARCHAR, venue VARCHAR)
SELECT home_team FROM table_name_56 WHERE venue = "windy hill"
### Context: CREATE TABLE table_name_56 (home_team VARCHAR, venue VARCHAR) ### Question: Who is the home team based at windy hill? ### Answer: SELECT home_team FROM table_name_56 WHERE venue = "windy hill"
What is the low gold total for nations with under 23 silvers, ranked beloe 5, and 6 bronzes?
CREATE TABLE table_name_45 (gold INTEGER, bronze VARCHAR, silver VARCHAR, rank VARCHAR)
SELECT MIN(gold) FROM table_name_45 WHERE silver < 23 AND rank > 5 AND bronze = 6
### Context: CREATE TABLE table_name_45 (gold INTEGER, bronze VARCHAR, silver VARCHAR, rank VARCHAR) ### Question: What is the low gold total for nations with under 23 silvers, ranked beloe 5, and 6 bronzes? ### Answer: SELECT MIN(gold) FROM table_name_45 WHERE silver < 23 AND rank > 5 AND bronze = 6
What is the high silver total for nations with 3 golds and under 5 bronzes?
CREATE TABLE table_name_61 (silver INTEGER, gold VARCHAR, bronze VARCHAR)
SELECT MAX(silver) FROM table_name_61 WHERE gold = 3 AND bronze < 5
### Context: CREATE TABLE table_name_61 (silver INTEGER, gold VARCHAR, bronze VARCHAR) ### Question: What is the high silver total for nations with 3 golds and under 5 bronzes? ### Answer: SELECT MAX(silver) FROM table_name_61 WHERE gold = 3 AND bronze < 5
How many silvers for nations with over 3 golds and under 6 bronzes?
CREATE TABLE table_name_60 (silver VARCHAR, bronze VARCHAR, gold VARCHAR)
SELECT COUNT(silver) FROM table_name_60 WHERE bronze < 6 AND gold > 3
### Context: CREATE TABLE table_name_60 (silver VARCHAR, bronze VARCHAR, gold VARCHAR) ### Question: How many silvers for nations with over 3 golds and under 6 bronzes? ### Answer: SELECT COUNT(silver) FROM table_name_60 WHERE bronze < 6 AND gold > 3
What was the smallest crowd in games at the corio oval?
CREATE TABLE table_name_13 (crowd INTEGER, venue VARCHAR)
SELECT MIN(crowd) FROM table_name_13 WHERE venue = "corio oval"
### Context: CREATE TABLE table_name_13 (crowd INTEGER, venue VARCHAR) ### Question: What was the smallest crowd in games at the corio oval? ### Answer: SELECT MIN(crowd) FROM table_name_13 WHERE venue = "corio oval"
In the match where Melbourne was the away team, how much did they score?
CREATE TABLE table_name_52 (away_team VARCHAR)
SELECT away_team AS score FROM table_name_52 WHERE away_team = "melbourne"
### Context: CREATE TABLE table_name_52 (away_team VARCHAR) ### Question: In the match where Melbourne was the away team, how much did they score? ### Answer: SELECT away_team AS score FROM table_name_52 WHERE away_team = "melbourne"
Who had the decision when buffalo was the visitor?
CREATE TABLE table_name_99 (decision VARCHAR, visitor VARCHAR)
SELECT decision FROM table_name_99 WHERE visitor = "buffalo"
### Context: CREATE TABLE table_name_99 (decision VARCHAR, visitor VARCHAR) ### Question: Who had the decision when buffalo was the visitor? ### Answer: SELECT decision FROM table_name_99 WHERE visitor = "buffalo"
Tell me the venue for north melbourne
CREATE TABLE table_name_85 (venue VARCHAR, away_team VARCHAR)
SELECT venue FROM table_name_85 WHERE away_team = "north melbourne"
### Context: CREATE TABLE table_name_85 (venue VARCHAR, away_team VARCHAR) ### Question: Tell me the venue for north melbourne ### Answer: SELECT venue FROM table_name_85 WHERE away_team = "north melbourne"
What name has a listed of 03/31/1989 in spartanburg county?
CREATE TABLE table_name_19 (name VARCHAR, listed VARCHAR, county VARCHAR)
SELECT name FROM table_name_19 WHERE listed = "03/31/1989" AND county = "spartanburg"
### Context: CREATE TABLE table_name_19 (name VARCHAR, listed VARCHAR, county VARCHAR) ### Question: What name has a listed of 03/31/1989 in spartanburg county? ### Answer: SELECT name FROM table_name_19 WHERE listed = "03/31/1989" AND county = "spartanburg"
What date was proposed when the listed date was 12/16/1994 in the County of beaufort?
CREATE TABLE table_name_65 (proposed VARCHAR, listed VARCHAR, county VARCHAR)
SELECT proposed FROM table_name_65 WHERE listed = "12/16/1994" AND county = "beaufort"
### Context: CREATE TABLE table_name_65 (proposed VARCHAR, listed VARCHAR, county VARCHAR) ### Question: What date was proposed when the listed date was 12/16/1994 in the County of beaufort? ### Answer: SELECT proposed FROM table_name_65 WHERE listed = "12/16/1994" AND county = "beaufort"
What name was listed 02/21/1990, and a CERCLIS ID of scd980844005?
CREATE TABLE table_name_97 (name VARCHAR, listed VARCHAR, cerclis_id VARCHAR)
SELECT name FROM table_name_97 WHERE listed = "02/21/1990" AND cerclis_id = "scd980844005"
### Context: CREATE TABLE table_name_97 (name VARCHAR, listed VARCHAR, cerclis_id VARCHAR) ### Question: What name was listed 02/21/1990, and a CERCLIS ID of scd980844005? ### Answer: SELECT name FROM table_name_97 WHERE listed = "02/21/1990" AND cerclis_id = "scd980844005"
What county has a CERCLIS ID of scd037405362?
CREATE TABLE table_name_64 (county VARCHAR, cerclis_id VARCHAR)
SELECT county FROM table_name_64 WHERE cerclis_id = "scd037405362"
### Context: CREATE TABLE table_name_64 (county VARCHAR, cerclis_id VARCHAR) ### Question: What county has a CERCLIS ID of scd037405362? ### Answer: SELECT county FROM table_name_64 WHERE cerclis_id = "scd037405362"
What is the name for Charleston County with a CERCLIS ID of scd980711279?
CREATE TABLE table_name_44 (name VARCHAR, county VARCHAR, cerclis_id VARCHAR)
SELECT name FROM table_name_44 WHERE county = "charleston" AND cerclis_id = "scd980711279"
### Context: CREATE TABLE table_name_44 (name VARCHAR, county VARCHAR, cerclis_id VARCHAR) ### Question: What is the name for Charleston County with a CERCLIS ID of scd980711279? ### Answer: SELECT name FROM table_name_44 WHERE county = "charleston" AND cerclis_id = "scd980711279"
What is the name for the listed date of 11/21/1989?
CREATE TABLE table_name_42 (name VARCHAR, listed VARCHAR)
SELECT name FROM table_name_42 WHERE listed = "11/21/1989"
### Context: CREATE TABLE table_name_42 (name VARCHAR, listed VARCHAR) ### Question: What is the name for the listed date of 11/21/1989? ### Answer: SELECT name FROM table_name_42 WHERE listed = "11/21/1989"
Which category was Gene Barry nominated in?
CREATE TABLE table_name_54 (category VARCHAR, result VARCHAR, nominee VARCHAR)
SELECT category FROM table_name_54 WHERE result = "nominated" AND nominee = "gene barry"
### Context: CREATE TABLE table_name_54 (category VARCHAR, result VARCHAR, nominee VARCHAR) ### Question: Which category was Gene Barry nominated in? ### Answer: SELECT category FROM table_name_54 WHERE result = "nominated" AND nominee = "gene barry"
What year was the Drama Desk award won by nominee George Hearn?
CREATE TABLE table_name_44 (year VARCHAR, nominee VARCHAR, award VARCHAR, result VARCHAR)
SELECT year FROM table_name_44 WHERE award = "drama desk award" AND result = "won" AND nominee = "george hearn"
### Context: CREATE TABLE table_name_44 (year VARCHAR, nominee VARCHAR, award VARCHAR, result VARCHAR) ### Question: What year was the Drama Desk award won by nominee George Hearn? ### Answer: SELECT year FROM table_name_44 WHERE award = "drama desk award" AND result = "won" AND nominee = "george hearn"
What is the time/retired for grid 5?
CREATE TABLE table_name_8 (time_retired VARCHAR, grid VARCHAR)
SELECT time_retired FROM table_name_8 WHERE grid = 5
### Context: CREATE TABLE table_name_8 (time_retired VARCHAR, grid VARCHAR) ### Question: What is the time/retired for grid 5? ### Answer: SELECT time_retired FROM table_name_8 WHERE grid = 5
When was the event that had Liberia as an opponent and resulted in a 1-0 score?
CREATE TABLE table_name_75 (date VARCHAR, opponent VARCHAR, score VARCHAR)
SELECT date FROM table_name_75 WHERE opponent = "liberia" AND score = "1-0"
### Context: CREATE TABLE table_name_75 (date VARCHAR, opponent VARCHAR, score VARCHAR) ### Question: When was the event that had Liberia as an opponent and resulted in a 1-0 score? ### Answer: SELECT date FROM table_name_75 WHERE opponent = "liberia" AND score = "1-0"
When was the 2014 World Cup Qualification in Kampala that had Angola as an opponent
CREATE TABLE table_name_60 (date VARCHAR, opponent VARCHAR, competition VARCHAR, location VARCHAR)
SELECT date FROM table_name_60 WHERE competition = "2014 world cup qualification" AND location = "kampala" AND opponent = "angola"
### Context: CREATE TABLE table_name_60 (date VARCHAR, opponent VARCHAR, competition VARCHAR, location VARCHAR) ### Question: When was the 2014 World Cup Qualification in Kampala that had Angola as an opponent ### Answer: SELECT date FROM table_name_60 WHERE competition = "2014 world cup qualification" AND location = "kampala" AND opponent = "angola"
Who was the Europe/Africa group i's opponent?
CREATE TABLE table_name_61 (opponent VARCHAR, zone VARCHAR)
SELECT opponent FROM table_name_61 WHERE zone = "europe/africa group i"
### Context: CREATE TABLE table_name_61 (opponent VARCHAR, zone VARCHAR) ### Question: Who was the Europe/Africa group i's opponent? ### Answer: SELECT opponent FROM table_name_61 WHERE zone = "europe/africa group i"
What zone was the Semifinal game played against Israel with Anna Smashnova as the opponent?
CREATE TABLE table_name_42 (zone VARCHAR, opponent VARCHAR, round VARCHAR, against VARCHAR)
SELECT zone FROM table_name_42 WHERE round = "semifinal" AND against = "israel" AND opponent = "anna smashnova"
### Context: CREATE TABLE table_name_42 (zone VARCHAR, opponent VARCHAR, round VARCHAR, against VARCHAR) ### Question: What zone was the Semifinal game played against Israel with Anna Smashnova as the opponent? ### Answer: SELECT zone FROM table_name_42 WHERE round = "semifinal" AND against = "israel" AND opponent = "anna smashnova"
What surface was played on against Shahar Pe'er?
CREATE TABLE table_name_61 (surface VARCHAR, opponent VARCHAR)
SELECT surface FROM table_name_61 WHERE opponent = "shahar pe'er"
### Context: CREATE TABLE table_name_61 (surface VARCHAR, opponent VARCHAR) ### Question: What surface was played on against Shahar Pe'er? ### Answer: SELECT surface FROM table_name_61 WHERE opponent = "shahar pe'er"
I want the years for marathon distance and wins of 3
CREATE TABLE table_name_15 (years VARCHAR, distance VARCHAR, wins VARCHAR)
SELECT years FROM table_name_15 WHERE distance = "marathon" AND wins = 3
### Context: CREATE TABLE table_name_15 (years VARCHAR, distance VARCHAR, wins VARCHAR) ### Question: I want the years for marathon distance and wins of 3 ### Answer: SELECT years FROM table_name_15 WHERE distance = "marathon" AND wins = 3
Name the country for athlete of ziedonis zaļkalns
CREATE TABLE table_name_72 (country VARCHAR, athlete VARCHAR)
SELECT country FROM table_name_72 WHERE athlete = "ziedonis zaļkalns"
### Context: CREATE TABLE table_name_72 (country VARCHAR, athlete VARCHAR) ### Question: Name the country for athlete of ziedonis zaļkalns ### Answer: SELECT country FROM table_name_72 WHERE athlete = "ziedonis zaļkalns"
I want the attendance which has a result of l 49–21
CREATE TABLE table_name_12 (attendance VARCHAR, result VARCHAR)
SELECT attendance FROM table_name_12 WHERE result = "l 49–21"
### Context: CREATE TABLE table_name_12 (attendance VARCHAR, result VARCHAR) ### Question: I want the attendance which has a result of l 49–21 ### Answer: SELECT attendance FROM table_name_12 WHERE result = "l 49–21"
Tell me the attendance with a result of l 26–3
CREATE TABLE table_name_12 (attendance VARCHAR, result VARCHAR)
SELECT attendance FROM table_name_12 WHERE result = "l 26–3"
### Context: CREATE TABLE table_name_12 (attendance VARCHAR, result VARCHAR) ### Question: Tell me the attendance with a result of l 26–3 ### Answer: SELECT attendance FROM table_name_12 WHERE result = "l 26–3"
I want to know the lowest week with a date of december 19, 2004
CREATE TABLE table_name_26 (week INTEGER, date VARCHAR)
SELECT MIN(week) FROM table_name_26 WHERE date = "december 19, 2004"
### Context: CREATE TABLE table_name_26 (week INTEGER, date VARCHAR) ### Question: I want to know the lowest week with a date of december 19, 2004 ### Answer: SELECT MIN(week) FROM table_name_26 WHERE date = "december 19, 2004"
What is the attendance of the location where New Orleans's team plays?
CREATE TABLE table_name_81 (location_attendance VARCHAR, team VARCHAR)
SELECT location_attendance FROM table_name_81 WHERE team = "new orleans"
### Context: CREATE TABLE table_name_81 (location_attendance VARCHAR, team VARCHAR) ### Question: What is the attendance of the location where New Orleans's team plays? ### Answer: SELECT location_attendance FROM table_name_81 WHERE team = "new orleans"
Which team has the high points of Raymond Felton (26)?
CREATE TABLE table_name_30 (team VARCHAR, high_points VARCHAR)
SELECT team FROM table_name_30 WHERE high_points = "raymond felton (26)"
### Context: CREATE TABLE table_name_30 (team VARCHAR, high_points VARCHAR) ### Question: Which team has the high points of Raymond Felton (26)? ### Answer: SELECT team FROM table_name_30 WHERE high_points = "raymond felton (26)"
What is the time of the driver on grid 7?
CREATE TABLE table_name_48 (time_retired VARCHAR, grid VARCHAR)
SELECT time_retired FROM table_name_48 WHERE grid = 7
### Context: CREATE TABLE table_name_48 (time_retired VARCHAR, grid VARCHAR) ### Question: What is the time of the driver on grid 7? ### Answer: SELECT time_retired FROM table_name_48 WHERE grid = 7
Which Constructor has grid 2?
CREATE TABLE table_name_75 (constructor VARCHAR, grid VARCHAR)
SELECT constructor FROM table_name_75 WHERE grid = 2
### Context: CREATE TABLE table_name_75 (constructor VARCHAR, grid VARCHAR) ### Question: Which Constructor has grid 2? ### Answer: SELECT constructor FROM table_name_75 WHERE grid = 2
What is the highest grid that has 55 laps?
CREATE TABLE table_name_1 (grid INTEGER, laps VARCHAR)
SELECT MAX(grid) FROM table_name_1 WHERE laps = 55
### Context: CREATE TABLE table_name_1 (grid INTEGER, laps VARCHAR) ### Question: What is the highest grid that has 55 laps? ### Answer: SELECT MAX(grid) FROM table_name_1 WHERE laps = 55
Who was Richmond's away team opponent?
CREATE TABLE table_name_53 (away_team VARCHAR, home_team VARCHAR)
SELECT away_team AS score FROM table_name_53 WHERE home_team = "richmond"
### Context: CREATE TABLE table_name_53 (away_team VARCHAR, home_team VARCHAR) ### Question: Who was Richmond's away team opponent? ### Answer: SELECT away_team AS score FROM table_name_53 WHERE home_team = "richmond"
What was the away score at VFL Park?
CREATE TABLE table_name_78 (away_team VARCHAR, venue VARCHAR)
SELECT away_team AS score FROM table_name_78 WHERE venue = "vfl park"
### Context: CREATE TABLE table_name_78 (away_team VARCHAR, venue VARCHAR) ### Question: What was the away score at VFL Park? ### Answer: SELECT away_team AS score FROM table_name_78 WHERE venue = "vfl park"
Tell me the home team score for richmond home team
CREATE TABLE table_name_87 (home_team VARCHAR)
SELECT home_team AS score FROM table_name_87 WHERE home_team = "richmond"
### Context: CREATE TABLE table_name_87 (home_team VARCHAR) ### Question: Tell me the home team score for richmond home team ### Answer: SELECT home_team AS score FROM table_name_87 WHERE home_team = "richmond"
Tell me the venue for 8 june 1931 for st kilda away team
CREATE TABLE table_name_6 (venue VARCHAR, date VARCHAR, away_team VARCHAR)
SELECT venue FROM table_name_6 WHERE date = "8 june 1931" AND away_team = "st kilda"
### Context: CREATE TABLE table_name_6 (venue VARCHAR, date VARCHAR, away_team VARCHAR) ### Question: Tell me the venue for 8 june 1931 for st kilda away team ### Answer: SELECT venue FROM table_name_6 WHERE date = "8 june 1931" AND away_team = "st kilda"
When fitzroy was the home team, how much did the away team score?
CREATE TABLE table_name_76 (away_team VARCHAR, home_team VARCHAR)
SELECT away_team AS score FROM table_name_76 WHERE home_team = "fitzroy"
### Context: CREATE TABLE table_name_76 (away_team VARCHAR, home_team VARCHAR) ### Question: When fitzroy was the home team, how much did the away team score? ### Answer: SELECT away_team AS score FROM table_name_76 WHERE home_team = "fitzroy"
When essendon was the home team, how much did they score?
CREATE TABLE table_name_56 (home_team VARCHAR)
SELECT home_team AS score FROM table_name_56 WHERE home_team = "essendon"
### Context: CREATE TABLE table_name_56 (home_team VARCHAR) ### Question: When essendon was the home team, how much did they score? ### Answer: SELECT home_team AS score FROM table_name_56 WHERE home_team = "essendon"
What is shintaro ishiwatari's time?
CREATE TABLE table_name_6 (time VARCHAR, opponent VARCHAR)
SELECT time FROM table_name_6 WHERE opponent = "shintaro ishiwatari"
### Context: CREATE TABLE table_name_6 (time VARCHAR, opponent VARCHAR) ### Question: What is shintaro ishiwatari's time? ### Answer: SELECT time FROM table_name_6 WHERE opponent = "shintaro ishiwatari"
How many rounds have an Opponent of sakae kasuya?
CREATE TABLE table_name_90 (round VARCHAR, opponent VARCHAR)
SELECT COUNT(round) FROM table_name_90 WHERE opponent = "sakae kasuya"
### Context: CREATE TABLE table_name_90 (round VARCHAR, opponent VARCHAR) ### Question: How many rounds have an Opponent of sakae kasuya? ### Answer: SELECT COUNT(round) FROM table_name_90 WHERE opponent = "sakae kasuya"
Which time has a Method of decision(majority), and an Opponent of keisuke yamada?
CREATE TABLE table_name_55 (time VARCHAR, method VARCHAR, opponent VARCHAR)
SELECT time FROM table_name_55 WHERE method = "decision(majority)" AND opponent = "keisuke yamada"
### Context: CREATE TABLE table_name_55 (time VARCHAR, method VARCHAR, opponent VARCHAR) ### Question: Which time has a Method of decision(majority), and an Opponent of keisuke yamada? ### Answer: SELECT time FROM table_name_55 WHERE method = "decision(majority)" AND opponent = "keisuke yamada"
Which method has an Event of shooto, a Round of 2, and an Opponent of issei tamura?
CREATE TABLE table_name_33 (method VARCHAR, opponent VARCHAR, event VARCHAR, round VARCHAR)
SELECT method FROM table_name_33 WHERE event = "shooto" AND round = 2 AND opponent = "issei tamura"
### Context: CREATE TABLE table_name_33 (method VARCHAR, opponent VARCHAR, event VARCHAR, round VARCHAR) ### Question: Which method has an Event of shooto, a Round of 2, and an Opponent of issei tamura? ### Answer: SELECT method FROM table_name_33 WHERE event = "shooto" AND round = 2 AND opponent = "issei tamura"
What is the away team that played at punt road oval?
CREATE TABLE table_name_24 (away_team VARCHAR, venue VARCHAR)
SELECT away_team FROM table_name_24 WHERE venue = "punt road oval"
### Context: CREATE TABLE table_name_24 (away_team VARCHAR, venue VARCHAR) ### Question: What is the away team that played at punt road oval? ### Answer: SELECT away_team FROM table_name_24 WHERE venue = "punt road oval"
What is the home team score that played at windy hill?
CREATE TABLE table_name_81 (home_team VARCHAR, venue VARCHAR)
SELECT home_team AS score FROM table_name_81 WHERE venue = "windy hill"
### Context: CREATE TABLE table_name_81 (home_team VARCHAR, venue VARCHAR) ### Question: What is the home team score that played at windy hill? ### Answer: SELECT home_team AS score FROM table_name_81 WHERE venue = "windy hill"
How big was the crowd at the game the away team geelong played at?
CREATE TABLE table_name_31 (crowd INTEGER, away_team VARCHAR)
SELECT SUM(crowd) FROM table_name_31 WHERE away_team = "geelong"
### Context: CREATE TABLE table_name_31 (crowd INTEGER, away_team VARCHAR) ### Question: How big was the crowd at the game the away team geelong played at? ### Answer: SELECT SUM(crowd) FROM table_name_31 WHERE away_team = "geelong"
Which constructor has a race called I News of the World Trophy?
CREATE TABLE table_name_91 (constructor VARCHAR, race_name VARCHAR)
SELECT constructor FROM table_name_91 WHERE race_name = "i news of the world trophy"
### Context: CREATE TABLE table_name_91 (constructor VARCHAR, race_name VARCHAR) ### Question: Which constructor has a race called I News of the World Trophy? ### Answer: SELECT constructor FROM table_name_91 WHERE race_name = "i news of the world trophy"
Which Constructor has the goodwood circuit?
CREATE TABLE table_name_53 (constructor VARCHAR, circuit VARCHAR)
SELECT constructor FROM table_name_53 WHERE circuit = "goodwood"
### Context: CREATE TABLE table_name_53 (constructor VARCHAR, circuit VARCHAR) ### Question: Which Constructor has the goodwood circuit? ### Answer: SELECT constructor FROM table_name_53 WHERE circuit = "goodwood"
What driver won the VII Rand Grand Prix?
CREATE TABLE table_name_26 (winning_driver VARCHAR, race_name VARCHAR)
SELECT winning_driver FROM table_name_26 WHERE race_name = "vii rand grand prix"
### Context: CREATE TABLE table_name_26 (winning_driver VARCHAR, race_name VARCHAR) ### Question: What driver won the VII Rand Grand Prix? ### Answer: SELECT winning_driver FROM table_name_26 WHERE race_name = "vii rand grand prix"
What is the name of the race that has the pergusa Circuit?
CREATE TABLE table_name_50 (race_name VARCHAR, circuit VARCHAR)
SELECT race_name FROM table_name_50 WHERE circuit = "pergusa"
### Context: CREATE TABLE table_name_50 (race_name VARCHAR, circuit VARCHAR) ### Question: What is the name of the race that has the pergusa Circuit? ### Answer: SELECT race_name FROM table_name_50 WHERE circuit = "pergusa"
What is the scoreof the away team Collingwood?
CREATE TABLE table_name_83 (away_team VARCHAR)
SELECT away_team AS score FROM table_name_83 WHERE away_team = "collingwood"
### Context: CREATE TABLE table_name_83 (away_team VARCHAR) ### Question: What is the scoreof the away team Collingwood? ### Answer: SELECT away_team AS score FROM table_name_83 WHERE away_team = "collingwood"
Jean Alesi, drives the Acer 01A engine for which team?
CREATE TABLE table_name_68 (team VARCHAR, driver VARCHAR, engine_† VARCHAR)
SELECT team FROM table_name_68 WHERE driver = "jean alesi" AND engine_† = "acer 01a"
### Context: CREATE TABLE table_name_68 (team VARCHAR, driver VARCHAR, engine_† VARCHAR) ### Question: Jean Alesi, drives the Acer 01A engine for which team? ### Answer: SELECT team FROM table_name_68 WHERE driver = "jean alesi" AND engine_† = "acer 01a"
Who built Alex Yoong's car?
CREATE TABLE table_name_84 (constructor VARCHAR, driver VARCHAR)
SELECT constructor FROM table_name_84 WHERE driver = "alex yoong"
### Context: CREATE TABLE table_name_84 (constructor VARCHAR, driver VARCHAR) ### Question: Who built Alex Yoong's car? ### Answer: SELECT constructor FROM table_name_84 WHERE driver = "alex yoong"
What's jim colbert's highest rank?
CREATE TABLE table_name_60 (rank INTEGER, player VARCHAR)
SELECT MAX(rank) FROM table_name_60 WHERE player = "jim colbert"
### Context: CREATE TABLE table_name_60 (rank INTEGER, player VARCHAR) ### Question: What's jim colbert's highest rank? ### Answer: SELECT MAX(rank) FROM table_name_60 WHERE player = "jim colbert"
What's hale irwin's average rank?
CREATE TABLE table_name_7 (rank INTEGER, player VARCHAR)
SELECT AVG(rank) FROM table_name_7 WHERE player = "hale irwin"
### Context: CREATE TABLE table_name_7 (rank INTEGER, player VARCHAR) ### Question: What's hale irwin's average rank? ### Answer: SELECT AVG(rank) FROM table_name_7 WHERE player = "hale irwin"
What is the sum of averages with a long value of 32?
CREATE TABLE table_name_70 (avg INTEGER, long VARCHAR)
SELECT SUM(avg) FROM table_name_70 WHERE long = 32
### Context: CREATE TABLE table_name_70 (avg INTEGER, long VARCHAR) ### Question: What is the sum of averages with a long value of 32? ### Answer: SELECT SUM(avg) FROM table_name_70 WHERE long = 32
Which Track time has a Disc larger than 2, a Track smaller than 22, and an English title of younger girl?
CREATE TABLE table_name_80 (track VARCHAR, english_title VARCHAR, disc VARCHAR)
SELECT track AS time FROM table_name_80 WHERE disc > 2 AND track < 22 AND english_title = "younger girl"
### Context: CREATE TABLE table_name_80 (track VARCHAR, english_title VARCHAR, disc VARCHAR) ### Question: Which Track time has a Disc larger than 2, a Track smaller than 22, and an English title of younger girl? ### Answer: SELECT track AS time FROM table_name_80 WHERE disc > 2 AND track < 22 AND english_title = "younger girl"
Which Japanese title has a Disc smaller than 12, and an Artist of kōzō murashita?
CREATE TABLE table_name_44 (japanese_title VARCHAR, disc VARCHAR, artist VARCHAR)
SELECT japanese_title FROM table_name_44 WHERE disc < 12 AND artist = "kōzō murashita"
### Context: CREATE TABLE table_name_44 (japanese_title VARCHAR, disc VARCHAR, artist VARCHAR) ### Question: Which Japanese title has a Disc smaller than 12, and an Artist of kōzō murashita? ### Answer: SELECT japanese_title FROM table_name_44 WHERE disc < 12 AND artist = "kōzō murashita"
Which track has a Japanese title of メロディー?
CREATE TABLE table_name_12 (track INTEGER, japanese_title VARCHAR)
SELECT MAX(track) FROM table_name_12 WHERE japanese_title = "メロディー"
### Context: CREATE TABLE table_name_12 (track INTEGER, japanese_title VARCHAR) ### Question: Which track has a Japanese title of メロディー? ### Answer: SELECT MAX(track) FROM table_name_12 WHERE japanese_title = "メロディー"
What Grid has a Time/Retired of clutch?
CREATE TABLE table_name_2 (grid INTEGER, time_retired VARCHAR)
SELECT SUM(grid) FROM table_name_2 WHERE time_retired = "clutch"
### Context: CREATE TABLE table_name_2 (grid INTEGER, time_retired VARCHAR) ### Question: What Grid has a Time/Retired of clutch? ### Answer: SELECT SUM(grid) FROM table_name_2 WHERE time_retired = "clutch"
What is the Time/Retired with more Laps than 34, a Grid smaller than 15, and Driver Damon Hill?
CREATE TABLE table_name_88 (time_retired VARCHAR, driver VARCHAR, laps VARCHAR, grid VARCHAR)
SELECT time_retired FROM table_name_88 WHERE laps > 34 AND grid < 15 AND driver = "damon hill"
### Context: CREATE TABLE table_name_88 (time_retired VARCHAR, driver VARCHAR, laps VARCHAR, grid VARCHAR) ### Question: What is the Time/Retired with more Laps than 34, a Grid smaller than 15, and Driver Damon Hill? ### Answer: SELECT time_retired FROM table_name_88 WHERE laps > 34 AND grid < 15 AND driver = "damon hill"
How many Laps Did Driver David Coulthard have on a Grid smaller than 11?
CREATE TABLE table_name_89 (laps VARCHAR, grid VARCHAR, driver VARCHAR)
SELECT laps FROM table_name_89 WHERE grid < 11 AND driver = "david coulthard"
### Context: CREATE TABLE table_name_89 (laps VARCHAR, grid VARCHAR, driver VARCHAR) ### Question: How many Laps Did Driver David Coulthard have on a Grid smaller than 11? ### Answer: SELECT laps FROM table_name_89 WHERE grid < 11 AND driver = "david coulthard"
What type of race took place on the course Orta San Giulio to Milan?
CREATE TABLE table_name_14 (type VARCHAR, course VARCHAR)
SELECT type FROM table_name_14 WHERE course = "orta san giulio to milan"
### Context: CREATE TABLE table_name_14 (type VARCHAR, course VARCHAR) ### Question: What type of race took place on the course Orta San Giulio to Milan? ### Answer: SELECT type FROM table_name_14 WHERE course = "orta san giulio to milan"
When did the course Vasto to Campitello Matese took place?
CREATE TABLE table_name_25 (date VARCHAR, course VARCHAR)
SELECT date FROM table_name_25 WHERE course = "vasto to campitello matese"
### Context: CREATE TABLE table_name_25 (date VARCHAR, course VARCHAR) ### Question: When did the course Vasto to Campitello Matese took place? ### Answer: SELECT date FROM table_name_25 WHERE course = "vasto to campitello matese"
Who won the course Brescia?
CREATE TABLE table_name_49 (winner VARCHAR, course VARCHAR)
SELECT winner FROM table_name_49 WHERE course = "brescia"
### Context: CREATE TABLE table_name_49 (winner VARCHAR, course VARCHAR) ### Question: Who won the course Brescia? ### Answer: SELECT winner FROM table_name_49 WHERE course = "brescia"
Name the league for 1996
CREATE TABLE table_name_90 (league VARCHAR, year VARCHAR)
SELECT league FROM table_name_90 WHERE year = "1996"
### Context: CREATE TABLE table_name_90 (league VARCHAR, year VARCHAR) ### Question: Name the league for 1996 ### Answer: SELECT league FROM table_name_90 WHERE year = "1996"
Name the league for 1994
CREATE TABLE table_name_16 (league VARCHAR, year VARCHAR)
SELECT league FROM table_name_16 WHERE year = "1994"
### Context: CREATE TABLE table_name_16 (league VARCHAR, year VARCHAR) ### Question: Name the league for 1994 ### Answer: SELECT league FROM table_name_16 WHERE year = "1994"
Tell me the league with a regular 1st season
CREATE TABLE table_name_2 (league VARCHAR, reg_season VARCHAR)
SELECT league FROM table_name_2 WHERE reg_season = "1st"
### Context: CREATE TABLE table_name_2 (league VARCHAR, reg_season VARCHAR) ### Question: Tell me the league with a regular 1st season ### Answer: SELECT league FROM table_name_2 WHERE reg_season = "1st"
What LNER Class has a Class of 6db?
CREATE TABLE table_name_31 (LNER VARCHAR, class VARCHAR)
SELECT LNER AS class FROM table_name_31 WHERE class = "6db"
### Context: CREATE TABLE table_name_31 (LNER VARCHAR, class VARCHAR) ### Question: What LNER Class has a Class of 6db? ### Answer: SELECT LNER AS class FROM table_name_31 WHERE class = "6db"
What LNER Class has a Class of 3?
CREATE TABLE table_name_86 (LNER VARCHAR, class VARCHAR)
SELECT LNER AS class FROM table_name_86 WHERE class = "3"
### Context: CREATE TABLE table_name_86 (LNER VARCHAR, class VARCHAR) ### Question: What LNER Class has a Class of 3? ### Answer: SELECT LNER AS class FROM table_name_86 WHERE class = "3"
Which mean pick number had a Reg GP of 0, and a Pl GP that was bigger than 0?
CREATE TABLE table_name_95 (pick__number INTEGER, reg_gp VARCHAR, pl_gp VARCHAR)
SELECT AVG(pick__number) FROM table_name_95 WHERE reg_gp = 0 AND pl_gp > 0
### Context: CREATE TABLE table_name_95 (pick__number INTEGER, reg_gp VARCHAR, pl_gp VARCHAR) ### Question: Which mean pick number had a Reg GP of 0, and a Pl GP that was bigger than 0? ### Answer: SELECT AVG(pick__number) FROM table_name_95 WHERE reg_gp = 0 AND pl_gp > 0
What is the highest Pick number that had a road number that was less than 6, featured Bob Dailey as a player, and which had a Reg GP bigger than 257?
CREATE TABLE table_name_43 (pick__number INTEGER, reg_gp VARCHAR, rd__number VARCHAR, player VARCHAR)
SELECT MAX(pick__number) FROM table_name_43 WHERE rd__number < 6 AND player = "bob dailey" AND reg_gp > 257
### Context: CREATE TABLE table_name_43 (pick__number INTEGER, reg_gp VARCHAR, rd__number VARCHAR, player VARCHAR) ### Question: What is the highest Pick number that had a road number that was less than 6, featured Bob Dailey as a player, and which had a Reg GP bigger than 257? ### Answer: SELECT MAX(pick__number) FROM table_name_43 WHERE rd__number < 6 AND player = "bob dailey" AND reg_gp > 257
What is the sum number of Pl GP when the Reg GP was 0, the Rd number was bigger than 8, and the pick number was bigger than 146?
CREATE TABLE table_name_90 (pl_gp VARCHAR, pick__number VARCHAR, reg_gp VARCHAR, rd__number VARCHAR)
SELECT COUNT(pl_gp) FROM table_name_90 WHERE reg_gp = 0 AND rd__number > 8 AND pick__number > 146
### Context: CREATE TABLE table_name_90 (pl_gp VARCHAR, pick__number VARCHAR, reg_gp VARCHAR, rd__number VARCHAR) ### Question: What is the sum number of Pl GP when the Reg GP was 0, the Rd number was bigger than 8, and the pick number was bigger than 146? ### Answer: SELECT COUNT(pl_gp) FROM table_name_90 WHERE reg_gp = 0 AND rd__number > 8 AND pick__number > 146
What was the birth state of Charles Cotesworth Pinckney who was elected in 1808?
CREATE TABLE table_name_74 (birth_state VARCHAR, name VARCHAR, election_year VARCHAR)
SELECT birth_state FROM table_name_74 WHERE name = "charles cotesworth pinckney" AND election_year = 1808
### Context: CREATE TABLE table_name_74 (birth_state VARCHAR, name VARCHAR, election_year VARCHAR) ### Question: What was the birth state of Charles Cotesworth Pinckney who was elected in 1808? ### Answer: SELECT birth_state FROM table_name_74 WHERE name = "charles cotesworth pinckney" AND election_year = 1808
How many postseason titles has Nebraska received?
CREATE TABLE table_name_20 (postseason VARCHAR, team VARCHAR)
SELECT postseason FROM table_name_20 WHERE team = "nebraska"
### Context: CREATE TABLE table_name_20 (postseason VARCHAR, team VARCHAR) ### Question: How many postseason titles has Nebraska received? ### Answer: SELECT postseason FROM table_name_20 WHERE team = "nebraska"
What is the lost On August 20
CREATE TABLE table_name_3 (loss VARCHAR, date VARCHAR)
SELECT loss FROM table_name_3 WHERE date = "august 20"
### Context: CREATE TABLE table_name_3 (loss VARCHAR, date VARCHAR) ### Question: What is the lost On August 20 ### Answer: SELECT loss FROM table_name_3 WHERE date = "august 20"
WHAT IS THE NUMBER OF Attendance WITH A RECORD 94–36
CREATE TABLE table_name_70 (attendance INTEGER, save VARCHAR, record VARCHAR)
SELECT AVG(attendance) FROM table_name_70 WHERE save = "–" AND record = "94–36"
### Context: CREATE TABLE table_name_70 (attendance INTEGER, save VARCHAR, record VARCHAR) ### Question: WHAT IS THE NUMBER OF Attendance WITH A RECORD 94–36 ### Answer: SELECT AVG(attendance) FROM table_name_70 WHERE save = "–" AND record = "94–36"
WHICH Attendance that has a Loss of paniagua (3–3)?
CREATE TABLE table_name_99 (attendance INTEGER, loss VARCHAR)
SELECT MAX(attendance) FROM table_name_99 WHERE loss = "paniagua (3–3)"
### Context: CREATE TABLE table_name_99 (attendance INTEGER, loss VARCHAR) ### Question: WHICH Attendance that has a Loss of paniagua (3–3)? ### Answer: SELECT MAX(attendance) FROM table_name_99 WHERE loss = "paniagua (3–3)"
How many points did the away team score at Arden Street Oval?
CREATE TABLE table_name_59 (away_team VARCHAR, venue VARCHAR)
SELECT away_team AS score FROM table_name_59 WHERE venue = "arden street oval"
### Context: CREATE TABLE table_name_59 (away_team VARCHAR, venue VARCHAR) ### Question: How many points did the away team score at Arden Street Oval? ### Answer: SELECT away_team AS score FROM table_name_59 WHERE venue = "arden street oval"
In what venue does Footscray play?
CREATE TABLE table_name_16 (venue VARCHAR, home_team VARCHAR)
SELECT venue FROM table_name_16 WHERE home_team = "footscray"
### Context: CREATE TABLE table_name_16 (venue VARCHAR, home_team VARCHAR) ### Question: In what venue does Footscray play? ### Answer: SELECT venue FROM table_name_16 WHERE home_team = "footscray"
What position did Co-driver Jackie Oliver finish in the 24 hours of Le Mans?
CREATE TABLE table_name_39 (pos VARCHAR, race VARCHAR, co_driver VARCHAR)
SELECT pos FROM table_name_39 WHERE race = "24 hours of le mans" AND co_driver = "jackie oliver"
### Context: CREATE TABLE table_name_39 (pos VARCHAR, race VARCHAR, co_driver VARCHAR) ### Question: What position did Co-driver Jackie Oliver finish in the 24 hours of Le Mans? ### Answer: SELECT pos FROM table_name_39 WHERE race = "24 hours of le mans" AND co_driver = "jackie oliver"
Who was the co-driver in 1970 for the race of Targa Florio?
CREATE TABLE table_name_46 (co_driver VARCHAR, year VARCHAR, race VARCHAR)
SELECT co_driver FROM table_name_46 WHERE year = 1970 AND race = "targa florio"
### Context: CREATE TABLE table_name_46 (co_driver VARCHAR, year VARCHAR, race VARCHAR) ### Question: Who was the co-driver in 1970 for the race of Targa Florio? ### Answer: SELECT co_driver FROM table_name_46 WHERE year = 1970 AND race = "targa florio"
Which vehicle has a Grid of 13?
CREATE TABLE table_name_5 (constructor VARCHAR, grid VARCHAR)
SELECT constructor FROM table_name_5 WHERE grid = 13
### Context: CREATE TABLE table_name_5 (constructor VARCHAR, grid VARCHAR) ### Question: Which vehicle has a Grid of 13? ### Answer: SELECT constructor FROM table_name_5 WHERE grid = 13
What's the Time/Retired of 80 laps with a Grid larger than 2?
CREATE TABLE table_name_51 (time_retired VARCHAR, laps VARCHAR, grid VARCHAR)
SELECT time_retired FROM table_name_51 WHERE laps = 80 AND grid > 2
### Context: CREATE TABLE table_name_51 (time_retired VARCHAR, laps VARCHAR, grid VARCHAR) ### Question: What's the Time/Retired of 80 laps with a Grid larger than 2? ### Answer: SELECT time_retired FROM table_name_51 WHERE laps = 80 AND grid > 2
Tell me the date for detroit and game more than 3
CREATE TABLE table_name_53 (date VARCHAR, team VARCHAR, game VARCHAR)
SELECT date FROM table_name_53 WHERE team = "detroit" AND game > 3
### Context: CREATE TABLE table_name_53 (date VARCHAR, team VARCHAR, game VARCHAR) ### Question: Tell me the date for detroit and game more than 3 ### Answer: SELECT date FROM table_name_53 WHERE team = "detroit" AND game > 3