question stringlengths 12 244 | context stringlengths 27 489 | answer stringlengths 18 557 | text stringlengths 114 1.06k |
|---|---|---|---|
Which home team's venue is Windy Hill? | CREATE TABLE table_name_86 (home_team VARCHAR, venue VARCHAR) | SELECT home_team FROM table_name_86 WHERE venue = "windy hill" | ### Context: CREATE TABLE table_name_86 (home_team VARCHAR, venue VARCHAR) ### Question: Which home team's venue is Windy Hill? ### Answer: SELECT home_team FROM table_name_86 WHERE venue = "windy hill" |
What is the score for Hawthorn as an away team? | CREATE TABLE table_name_7 (away_team VARCHAR) | SELECT away_team AS score FROM table_name_7 WHERE away_team = "hawthorn" | ### Context: CREATE TABLE table_name_7 (away_team VARCHAR) ### Question: What is the score for Hawthorn as an away team? ### Answer: SELECT away_team AS score FROM table_name_7 WHERE away_team = "hawthorn" |
What is the score of the away team when the home team is Essendon? | CREATE TABLE table_name_12 (away_team VARCHAR, home_team VARCHAR) | SELECT away_team AS score FROM table_name_12 WHERE home_team = "essendon" | ### Context: CREATE TABLE table_name_12 (away_team VARCHAR, home_team VARCHAR) ### Question: What is the score of the away team when the home team is Essendon? ### Answer: SELECT away_team AS score FROM table_name_12 WHERE home_team = "essendon" |
What date was the Home team fitzroy? | CREATE TABLE table_name_18 (date VARCHAR, home_team VARCHAR) | SELECT date FROM table_name_18 WHERE home_team = "fitzroy" | ### Context: CREATE TABLE table_name_18 (date VARCHAR, home_team VARCHAR) ### Question: What date was the Home team fitzroy? ### Answer: SELECT date FROM table_name_18 WHERE home_team = "fitzroy" |
What is the largest crowd when st kilda was the away team? | CREATE TABLE table_name_60 (crowd INTEGER, away_team VARCHAR) | SELECT MAX(crowd) FROM table_name_60 WHERE away_team = "st kilda" | ### Context: CREATE TABLE table_name_60 (crowd INTEGER, away_team VARCHAR) ### Question: What is the largest crowd when st kilda was the away team? ### Answer: SELECT MAX(crowd) FROM table_name_60 WHERE away_team = "st kilda" |
What was the score of essendon when they were the away team? | CREATE TABLE table_name_15 (away_team VARCHAR) | SELECT away_team AS score FROM table_name_15 WHERE away_team = "essendon" | ### Context: CREATE TABLE table_name_15 (away_team VARCHAR) ### Question: What was the score of essendon when they were the away team? ### Answer: SELECT away_team AS score FROM table_name_15 WHERE away_team = "essendon" |
What home team played at the western oval? | CREATE TABLE table_name_93 (home_team VARCHAR, venue VARCHAR) | SELECT home_team FROM table_name_93 WHERE venue = "western oval" | ### Context: CREATE TABLE table_name_93 (home_team VARCHAR, venue VARCHAR) ### Question: What home team played at the western oval? ### Answer: SELECT home_team FROM table_name_93 WHERE venue = "western oval" |
Which mid-hill zone has a slightly warm temperature? | CREATE TABLE table_name_87 (high_hill_zone VARCHAR, mid_hill_zone VARCHAR) | SELECT high_hill_zone FROM table_name_87 WHERE mid_hill_zone = "slightly warm temperature" | ### Context: CREATE TABLE table_name_87 (high_hill_zone VARCHAR, mid_hill_zone VARCHAR) ### Question: Which mid-hill zone has a slightly warm temperature? ### Answer: SELECT high_hill_zone FROM table_name_87 WHERE mid_hill_zone = "slightly warm temperature" |
Which one took place on December 3, 1995? | CREATE TABLE table_name_60 (result VARCHAR, date VARCHAR) | SELECT result FROM table_name_60 WHERE date = "december 3, 1995" | ### Context: CREATE TABLE table_name_60 (result VARCHAR, date VARCHAR) ### Question: Which one took place on December 3, 1995? ### Answer: SELECT result FROM table_name_60 WHERE date = "december 3, 1995" |
Who was the opponent of the New Orleans Saints? | CREATE TABLE table_name_79 (result VARCHAR, opponent VARCHAR) | SELECT result FROM table_name_79 WHERE opponent = "new orleans saints" | ### Context: CREATE TABLE table_name_79 (result VARCHAR, opponent VARCHAR) ### Question: Who was the opponent of the New Orleans Saints? ### Answer: SELECT result FROM table_name_79 WHERE opponent = "new orleans saints" |
What grid has 23 laps done by Josh Brookes? | CREATE TABLE table_name_1 (grid VARCHAR, laps VARCHAR, rider VARCHAR) | SELECT grid FROM table_name_1 WHERE laps = 23 AND rider = "josh brookes" | ### Context: CREATE TABLE table_name_1 (grid VARCHAR, laps VARCHAR, rider VARCHAR) ### Question: What grid has 23 laps done by Josh Brookes? ### Answer: SELECT grid FROM table_name_1 WHERE laps = 23 AND rider = "josh brookes" |
What is noriyuki haga's time? | CREATE TABLE table_name_69 (time VARCHAR, rider VARCHAR) | SELECT time FROM table_name_69 WHERE rider = "noriyuki haga" | ### Context: CREATE TABLE table_name_69 (time VARCHAR, rider VARCHAR) ### Question: What is noriyuki haga's time? ### Answer: SELECT time FROM table_name_69 WHERE rider = "noriyuki haga" |
What laps have a Time of +28.778? | CREATE TABLE table_name_37 (laps VARCHAR, time VARCHAR) | SELECT laps FROM table_name_37 WHERE time = "+28.778" | ### Context: CREATE TABLE table_name_37 (laps VARCHAR, time VARCHAR) ### Question: What laps have a Time of +28.778? ### Answer: SELECT laps FROM table_name_37 WHERE time = "+28.778" |
Where was the game held where Hawthorn was the away team? | CREATE TABLE table_name_46 (venue VARCHAR, away_team VARCHAR) | SELECT venue FROM table_name_46 WHERE away_team = "hawthorn" | ### Context: CREATE TABLE table_name_46 (venue VARCHAR, away_team VARCHAR) ### Question: Where was the game held where Hawthorn was the away team? ### Answer: SELECT venue FROM table_name_46 WHERE away_team = "hawthorn" |
What was the date of the game when Richmond was the home team? | CREATE TABLE table_name_42 (date VARCHAR, home_team VARCHAR) | SELECT date FROM table_name_42 WHERE home_team = "richmond" | ### Context: CREATE TABLE table_name_42 (date VARCHAR, home_team VARCHAR) ### Question: What was the date of the game when Richmond was the home team? ### Answer: SELECT date FROM table_name_42 WHERE home_team = "richmond" |
Who was the home team at the game played at Kardinia Park? | CREATE TABLE table_name_44 (home_team VARCHAR, venue VARCHAR) | SELECT home_team FROM table_name_44 WHERE venue = "kardinia park" | ### Context: CREATE TABLE table_name_44 (home_team VARCHAR, venue VARCHAR) ### Question: Who was the home team at the game played at Kardinia Park? ### Answer: SELECT home_team FROM table_name_44 WHERE venue = "kardinia park" |
What is the date of the game when the venue is MCG? | CREATE TABLE table_name_31 (date VARCHAR, venue VARCHAR) | SELECT date FROM table_name_31 WHERE venue = "mcg" | ### Context: CREATE TABLE table_name_31 (date VARCHAR, venue VARCHAR) ### Question: What is the date of the game when the venue is MCG? ### Answer: SELECT date FROM table_name_31 WHERE venue = "mcg" |
What is the home team score when the away team is Essendon? | CREATE TABLE table_name_77 (home_team VARCHAR, away_team VARCHAR) | SELECT home_team AS score FROM table_name_77 WHERE away_team = "essendon" | ### Context: CREATE TABLE table_name_77 (home_team VARCHAR, away_team VARCHAR) ### Question: What is the home team score when the away team is Essendon? ### Answer: SELECT home_team AS score FROM table_name_77 WHERE away_team = "essendon" |
What is the name of the away team whose venue is Kardinia Park? | CREATE TABLE table_name_73 (away_team VARCHAR, venue VARCHAR) | SELECT away_team FROM table_name_73 WHERE venue = "kardinia park" | ### Context: CREATE TABLE table_name_73 (away_team VARCHAR, venue VARCHAR) ### Question: What is the name of the away team whose venue is Kardinia Park? ### Answer: SELECT away_team FROM table_name_73 WHERE venue = "kardinia park" |
What was the result when they were on a bye week? | CREATE TABLE table_name_33 (result VARCHAR, stadium VARCHAR) | SELECT result FROM table_name_33 WHERE stadium = "bye week" | ### Context: CREATE TABLE table_name_33 (result VARCHAR, stadium VARCHAR) ### Question: What was the result when they were on a bye week? ### Answer: SELECT result FROM table_name_33 WHERE stadium = "bye week" |
What was the result when the attendance was 25,418? | CREATE TABLE table_name_99 (result VARCHAR, attendance VARCHAR) | SELECT result FROM table_name_99 WHERE attendance = "25,418" | ### Context: CREATE TABLE table_name_99 (result VARCHAR, attendance VARCHAR) ### Question: What was the result when the attendance was 25,418? ### Answer: SELECT result FROM table_name_99 WHERE attendance = "25,418" |
Which of the Latest version was released on Release date 1987-12-09? | CREATE TABLE table_name_24 (latest_version VARCHAR, release_date VARCHAR) | SELECT latest_version FROM table_name_24 WHERE release_date = "1987-12-09" | ### Context: CREATE TABLE table_name_24 (latest_version VARCHAR, release_date VARCHAR) ### Question: Which of the Latest version was released on Release date 1987-12-09? ### Answer: SELECT latest_version FROM table_name_24 WHERE release_date = "1987-12-09" |
Which Source model has a 16-bit* Architecture? | CREATE TABLE table_name_27 (source_model VARCHAR, architecture VARCHAR) | SELECT source_model FROM table_name_27 WHERE architecture = "16-bit*" | ### Context: CREATE TABLE table_name_27 (source_model VARCHAR, architecture VARCHAR) ### Question: Which Source model has a 16-bit* Architecture? ### Answer: SELECT source_model FROM table_name_27 WHERE architecture = "16-bit*" |
Which of the Latest version had a 16-bit Architecture and was released on Release date 1985-11-20? | CREATE TABLE table_name_29 (latest_version VARCHAR, architecture VARCHAR, release_date VARCHAR) | SELECT latest_version FROM table_name_29 WHERE architecture = "16-bit" AND release_date = "1985-11-20" | ### Context: CREATE TABLE table_name_29 (latest_version VARCHAR, architecture VARCHAR, release_date VARCHAR) ### Question: Which of the Latest version had a 16-bit Architecture and was released on Release date 1985-11-20? ### Answer: SELECT latest_version FROM table_name_29 WHERE architecture = "16-bit" AND release_date = "1985-11-20" |
Which Architecture was released on Release date 1988-05-27? | CREATE TABLE table_name_69 (architecture VARCHAR, release_date VARCHAR) | SELECT architecture FROM table_name_69 WHERE release_date = "1988-05-27" | ### Context: CREATE TABLE table_name_69 (architecture VARCHAR, release_date VARCHAR) ### Question: Which Architecture was released on Release date 1988-05-27? ### Answer: SELECT architecture FROM table_name_69 WHERE release_date = "1988-05-27" |
Which Source model has a Release date of 1992-04-06? | CREATE TABLE table_name_97 (source_model VARCHAR, release_date VARCHAR) | SELECT source_model FROM table_name_97 WHERE release_date = "1992-04-06" | ### Context: CREATE TABLE table_name_97 (source_model VARCHAR, release_date VARCHAR) ### Question: Which Source model has a Release date of 1992-04-06? ### Answer: SELECT source_model FROM table_name_97 WHERE release_date = "1992-04-06" |
Who is the away side when collingwood is at home? | CREATE TABLE table_name_34 (away_team VARCHAR, home_team VARCHAR) | SELECT away_team FROM table_name_34 WHERE home_team = "collingwood" | ### Context: CREATE TABLE table_name_34 (away_team VARCHAR, home_team VARCHAR) ### Question: Who is the away side when collingwood is at home? ### Answer: SELECT away_team FROM table_name_34 WHERE home_team = "collingwood" |
Who is the home team at arden street oval? | CREATE TABLE table_name_63 (home_team VARCHAR, venue VARCHAR) | SELECT home_team FROM table_name_63 WHERE venue = "arden street oval" | ### Context: CREATE TABLE table_name_63 (home_team VARCHAR, venue VARCHAR) ### Question: Who is the home team at arden street oval? ### Answer: SELECT home_team FROM table_name_63 WHERE venue = "arden street oval" |
What is the WPW freq with a day power of 250? | CREATE TABLE table_name_55 (freq INTEGER, owner VARCHAR, day_power___w__ VARCHAR) | SELECT SUM(freq) FROM table_name_55 WHERE owner = "wpw" AND day_power___w__ > 250 | ### Context: CREATE TABLE table_name_55 (freq INTEGER, owner VARCHAR, day_power___w__ VARCHAR) ### Question: What is the WPW freq with a day power of 250? ### Answer: SELECT SUM(freq) FROM table_name_55 WHERE owner = "wpw" AND day_power___w__ > 250 |
Is WPEO in stereo? | CREATE TABLE table_name_37 (stereo VARCHAR, call VARCHAR) | SELECT stereo FROM table_name_37 WHERE call = "wpeo" | ### Context: CREATE TABLE table_name_37 (stereo VARCHAR, call VARCHAR) ### Question: Is WPEO in stereo? ### Answer: SELECT stereo FROM table_name_37 WHERE call = "wpeo" |
What is Park Tae-Hwan's final time? | CREATE TABLE table_name_3 (time VARCHAR, name VARCHAR) | SELECT time FROM table_name_3 WHERE name = "park tae-hwan" | ### Context: CREATE TABLE table_name_3 (time VARCHAR, name VARCHAR) ### Question: What is Park Tae-Hwan's final time? ### Answer: SELECT time FROM table_name_3 WHERE name = "park tae-hwan" |
What was the largest crowd for an away Carlton game? | CREATE TABLE table_name_54 (crowd INTEGER, away_team VARCHAR) | SELECT MAX(crowd) FROM table_name_54 WHERE away_team = "carlton" | ### Context: CREATE TABLE table_name_54 (crowd INTEGER, away_team VARCHAR) ### Question: What was the largest crowd for an away Carlton game? ### Answer: SELECT MAX(crowd) FROM table_name_54 WHERE away_team = "carlton" |
Who was the home team for the game played at Corio Oval? | CREATE TABLE table_name_20 (home_team VARCHAR, venue VARCHAR) | SELECT home_team FROM table_name_20 WHERE venue = "corio oval" | ### Context: CREATE TABLE table_name_20 (home_team VARCHAR, venue VARCHAR) ### Question: Who was the home team for the game played at Corio Oval? ### Answer: SELECT home_team FROM table_name_20 WHERE venue = "corio oval" |
The safety position is represented in the draft by which colleges? | CREATE TABLE table_name_62 (college VARCHAR, position VARCHAR) | SELECT college FROM table_name_62 WHERE position = "safety" | ### Context: CREATE TABLE table_name_62 (college VARCHAR, position VARCHAR) ### Question: The safety position is represented in the draft by which colleges? ### Answer: SELECT college FROM table_name_62 WHERE position = "safety" |
In how many rounds of the draft was there a college from Georgia involved? | CREATE TABLE table_name_94 (round VARCHAR, college VARCHAR) | SELECT COUNT(round) FROM table_name_94 WHERE college = "georgia" | ### Context: CREATE TABLE table_name_94 (round VARCHAR, college VARCHAR) ### Question: In how many rounds of the draft was there a college from Georgia involved? ### Answer: SELECT COUNT(round) FROM table_name_94 WHERE college = "georgia" |
What is the Time of Driver Jan Heylen (r)? | CREATE TABLE table_name_44 (time_retired VARCHAR, driver VARCHAR) | SELECT time_retired FROM table_name_44 WHERE driver = "jan heylen (r)" | ### Context: CREATE TABLE table_name_44 (time_retired VARCHAR, driver VARCHAR) ### Question: What is the Time of Driver Jan Heylen (r)? ### Answer: SELECT time_retired FROM table_name_44 WHERE driver = "jan heylen (r)" |
What Grid has Driver Cristiano da Matta? | CREATE TABLE table_name_10 (grid VARCHAR, driver VARCHAR) | SELECT grid FROM table_name_10 WHERE driver = "cristiano da matta" | ### Context: CREATE TABLE table_name_10 (grid VARCHAR, driver VARCHAR) ### Question: What Grid has Driver Cristiano da Matta? ### Answer: SELECT grid FROM table_name_10 WHERE driver = "cristiano da matta" |
Which Driver has less than 84 laps, more than 9 points and is on Rocketsports Racing Team? | CREATE TABLE table_name_68 (driver VARCHAR, team VARCHAR, laps VARCHAR, points VARCHAR) | SELECT driver FROM table_name_68 WHERE laps < 84 AND points > 9 AND team = "rocketsports racing" | ### Context: CREATE TABLE table_name_68 (driver VARCHAR, team VARCHAR, laps VARCHAR, points VARCHAR) ### Question: Which Driver has less than 84 laps, more than 9 points and is on Rocketsports Racing Team? ### Answer: SELECT driver FROM table_name_68 WHERE laps < 84 AND points > 9 AND team = "rocketsports racing" |
Which team has less than 73 laps and a gearbox time? | CREATE TABLE table_name_56 (team VARCHAR, laps VARCHAR, time_retired VARCHAR) | SELECT team FROM table_name_56 WHERE laps < 73 AND time_retired = "gearbox" | ### Context: CREATE TABLE table_name_56 (team VARCHAR, laps VARCHAR, time_retired VARCHAR) ### Question: Which team has less than 73 laps and a gearbox time? ### Answer: SELECT team FROM table_name_56 WHERE laps < 73 AND time_retired = "gearbox" |
What is the car with the lowest extinct year that has a NBR class of 32? | CREATE TABLE table_name_21 (extinct INTEGER, nbr_class VARCHAR) | SELECT MIN(extinct) FROM table_name_21 WHERE nbr_class = 32 | ### Context: CREATE TABLE table_name_21 (extinct INTEGER, nbr_class VARCHAR) ### Question: What is the car with the lowest extinct year that has a NBR class of 32? ### Answer: SELECT MIN(extinct) FROM table_name_21 WHERE nbr_class = 32 |
What is the home team that played at Corio Oval? | CREATE TABLE table_name_54 (home_team VARCHAR, venue VARCHAR) | SELECT home_team FROM table_name_54 WHERE venue = "corio oval" | ### Context: CREATE TABLE table_name_54 (home_team VARCHAR, venue VARCHAR) ### Question: What is the home team that played at Corio Oval? ### Answer: SELECT home_team FROM table_name_54 WHERE venue = "corio oval" |
On which date was St Kilda the home team? | CREATE TABLE table_name_2 (date VARCHAR, home_team VARCHAR) | SELECT date FROM table_name_2 WHERE home_team = "st kilda" | ### Context: CREATE TABLE table_name_2 (date VARCHAR, home_team VARCHAR) ### Question: On which date was St Kilda the home team? ### Answer: SELECT date FROM table_name_2 WHERE home_team = "st kilda" |
What is the Austin record of Kansas State? | CREATE TABLE table_name_21 (at_austin VARCHAR, texas_vs VARCHAR) | SELECT at_austin FROM table_name_21 WHERE texas_vs = "kansas state" | ### Context: CREATE TABLE table_name_21 (at_austin VARCHAR, texas_vs VARCHAR) ### Question: What is the Austin record of Kansas State? ### Answer: SELECT at_austin FROM table_name_21 WHERE texas_vs = "kansas state" |
What was the result of the last 5 meetings for a team with an L 1 streak? | CREATE TABLE table_name_85 (last_5_meetings VARCHAR, current_streak VARCHAR) | SELECT last_5_meetings FROM table_name_85 WHERE current_streak = "l 1" | ### Context: CREATE TABLE table_name_85 (last_5_meetings VARCHAR, current_streak VARCHAR) ### Question: What was the result of the last 5 meetings for a team with an L 1 streak? ### Answer: SELECT last_5_meetings FROM table_name_85 WHERE current_streak = "l 1" |
Who is the partner on a date later than 1971 who is the runner-up with a score of 3–6, 3–6? | CREATE TABLE table_name_33 (partner VARCHAR, score_in_the_final VARCHAR, date VARCHAR, outcome VARCHAR) | SELECT partner FROM table_name_33 WHERE date > 1971 AND outcome = "runner-up" AND score_in_the_final = "3–6, 3–6" | ### Context: CREATE TABLE table_name_33 (partner VARCHAR, score_in_the_final VARCHAR, date VARCHAR, outcome VARCHAR) ### Question: Who is the partner on a date later than 1971 who is the runner-up with a score of 3–6, 3–6? ### Answer: SELECT partner FROM table_name_33 WHERE date > 1971 AND outcome = "runner-up" AND score_in_the_final = "3–6, 3–6" |
What is the first year that Mario Lemieux from Canada won playing center? | CREATE TABLE table_name_21 (year INTEGER, player VARCHAR, country VARCHAR, position VARCHAR) | SELECT MIN(year) FROM table_name_21 WHERE country = "canada" AND position = "center" AND player = "mario lemieux" | ### Context: CREATE TABLE table_name_21 (year INTEGER, player VARCHAR, country VARCHAR, position VARCHAR) ### Question: What is the first year that Mario Lemieux from Canada won playing center? ### Answer: SELECT MIN(year) FROM table_name_21 WHERE country = "canada" AND position = "center" AND player = "mario lemieux" |
What country did mario lemieux play for in 1994? | CREATE TABLE table_name_17 (country VARCHAR, player VARCHAR, year VARCHAR) | SELECT country FROM table_name_17 WHERE player = "mario lemieux" AND year = 1994 | ### Context: CREATE TABLE table_name_17 (country VARCHAR, player VARCHAR, year VARCHAR) ### Question: What country did mario lemieux play for in 1994? ### Answer: SELECT country FROM table_name_17 WHERE player = "mario lemieux" AND year = 1994 |
What player played center in 2010? | CREATE TABLE table_name_9 (player VARCHAR, position VARCHAR, year VARCHAR) | SELECT player FROM table_name_9 WHERE position = "center" AND year = 2010 | ### Context: CREATE TABLE table_name_9 (player VARCHAR, position VARCHAR, year VARCHAR) ### Question: What player played center in 2010? ### Answer: SELECT player FROM table_name_9 WHERE position = "center" AND year = 2010 |
Who is the player associated with the Esher venue? | CREATE TABLE table_name_63 (player VARCHAR, venue VARCHAR) | SELECT player FROM table_name_63 WHERE venue = "esher" | ### Context: CREATE TABLE table_name_63 (player VARCHAR, venue VARCHAR) ### Question: Who is the player associated with the Esher venue? ### Answer: SELECT player FROM table_name_63 WHERE venue = "esher" |
In which venue did 0 pens and 1 try occur? | CREATE TABLE table_name_70 (venue VARCHAR, pens VARCHAR, tries VARCHAR) | SELECT venue FROM table_name_70 WHERE pens = "0" AND tries = "1" | ### Context: CREATE TABLE table_name_70 (venue VARCHAR, pens VARCHAR, tries VARCHAR) ### Question: In which venue did 0 pens and 1 try occur? ### Answer: SELECT venue FROM table_name_70 WHERE pens = "0" AND tries = "1" |
What was the score of the game against the St. Louis Cardinals? | CREATE TABLE table_name_82 (result VARCHAR, opponent VARCHAR) | SELECT result FROM table_name_82 WHERE opponent = "st. louis cardinals" | ### Context: CREATE TABLE table_name_82 (result VARCHAR, opponent VARCHAR) ### Question: What was the score of the game against the St. Louis Cardinals? ### Answer: SELECT result FROM table_name_82 WHERE opponent = "st. louis cardinals" |
Which model has a CPU speed of 133mhz? | CREATE TABLE table_name_52 (model VARCHAR, cpu_speed VARCHAR) | SELECT model FROM table_name_52 WHERE cpu_speed = "133mhz" | ### Context: CREATE TABLE table_name_52 (model VARCHAR, cpu_speed VARCHAR) ### Question: Which model has a CPU speed of 133mhz? ### Answer: SELECT model FROM table_name_52 WHERE cpu_speed = "133mhz" |
Which model has a maximum memory of 512 mb? | CREATE TABLE table_name_92 (model INTEGER, maximum_memory VARCHAR) | SELECT MAX(model) FROM table_name_92 WHERE maximum_memory = "512 mb" | ### Context: CREATE TABLE table_name_92 (model INTEGER, maximum_memory VARCHAR) ### Question: Which model has a maximum memory of 512 mb? ### Answer: SELECT MAX(model) FROM table_name_92 WHERE maximum_memory = "512 mb" |
What is the maximum memory of the model that has a standard memory of 16 mb? | CREATE TABLE table_name_10 (maximum_memory VARCHAR, standard_memory VARCHAR) | SELECT maximum_memory FROM table_name_10 WHERE standard_memory = "16 mb" | ### Context: CREATE TABLE table_name_10 (maximum_memory VARCHAR, standard_memory VARCHAR) ### Question: What is the maximum memory of the model that has a standard memory of 16 mb? ### Answer: SELECT maximum_memory FROM table_name_10 WHERE standard_memory = "16 mb" |
What is the largest crowd for a Melbourne away team? | CREATE TABLE table_name_35 (crowd INTEGER, away_team VARCHAR) | SELECT MAX(crowd) FROM table_name_35 WHERE away_team = "melbourne" | ### Context: CREATE TABLE table_name_35 (crowd INTEGER, away_team VARCHAR) ### Question: What is the largest crowd for a Melbourne away team? ### Answer: SELECT MAX(crowd) FROM table_name_35 WHERE away_team = "melbourne" |
What is the home team score when the home team is Essendon? | CREATE TABLE table_name_80 (home_team VARCHAR) | SELECT home_team AS score FROM table_name_80 WHERE home_team = "essendon" | ### Context: CREATE TABLE table_name_80 (home_team VARCHAR) ### Question: What is the home team score when the home team is Essendon? ### Answer: SELECT home_team AS score FROM table_name_80 WHERE home_team = "essendon" |
Which opponent was playing on December 20, 1998? | CREATE TABLE table_name_63 (opponent VARCHAR, date VARCHAR) | SELECT opponent FROM table_name_63 WHERE date = "december 20, 1998" | ### Context: CREATE TABLE table_name_63 (opponent VARCHAR, date VARCHAR) ### Question: Which opponent was playing on December 20, 1998? ### Answer: SELECT opponent FROM table_name_63 WHERE date = "december 20, 1998" |
When was the game that was held at the Princes Park? | CREATE TABLE table_name_85 (date VARCHAR, venue VARCHAR) | SELECT date FROM table_name_85 WHERE venue = "princes park" | ### Context: CREATE TABLE table_name_85 (date VARCHAR, venue VARCHAR) ### Question: When was the game that was held at the Princes Park? ### Answer: SELECT date FROM table_name_85 WHERE venue = "princes park" |
What was the smallest crowd size at a home game for Footscray? | CREATE TABLE table_name_93 (crowd INTEGER, home_team VARCHAR) | SELECT MIN(crowd) FROM table_name_93 WHERE home_team = "footscray" | ### Context: CREATE TABLE table_name_93 (crowd INTEGER, home_team VARCHAR) ### Question: What was the smallest crowd size at a home game for Footscray? ### Answer: SELECT MIN(crowd) FROM table_name_93 WHERE home_team = "footscray" |
What was Melbourne's score as the home team? | CREATE TABLE table_name_91 (home_team VARCHAR) | SELECT home_team AS score FROM table_name_91 WHERE home_team = "melbourne" | ### Context: CREATE TABLE table_name_91 (home_team VARCHAR) ### Question: What was Melbourne's score as the home team? ### Answer: SELECT home_team AS score FROM table_name_91 WHERE home_team = "melbourne" |
What was the away team that played Fitzroy? | CREATE TABLE table_name_96 (away_team VARCHAR, home_team VARCHAR) | SELECT away_team FROM table_name_96 WHERE home_team = "fitzroy" | ### Context: CREATE TABLE table_name_96 (away_team VARCHAR, home_team VARCHAR) ### Question: What was the away team that played Fitzroy? ### Answer: SELECT away_team FROM table_name_96 WHERE home_team = "fitzroy" |
What was the sum of the crowds at Western Oval? | CREATE TABLE table_name_65 (crowd INTEGER, venue VARCHAR) | SELECT SUM(crowd) FROM table_name_65 WHERE venue = "western oval" | ### Context: CREATE TABLE table_name_65 (crowd INTEGER, venue VARCHAR) ### Question: What was the sum of the crowds at Western Oval? ### Answer: SELECT SUM(crowd) FROM table_name_65 WHERE venue = "western oval" |
What country had a winner in 1907? | CREATE TABLE table_name_55 (country VARCHAR, year VARCHAR) | SELECT country FROM table_name_55 WHERE year = 1907 | ### Context: CREATE TABLE table_name_55 (country VARCHAR, year VARCHAR) ### Question: What country had a winner in 1907? ### Answer: SELECT country FROM table_name_55 WHERE year = 1907 |
What velodrome took place earlier than 1950 with a winner from France in tandem paced over a distance of 951.750 km? | CREATE TABLE table_name_6 (velodrome VARCHAR, distance VARCHAR, pacing VARCHAR, year VARCHAR, country VARCHAR) | SELECT velodrome FROM table_name_6 WHERE year < 1950 AND country = "france" AND pacing = "tandem paced" AND distance = "951.750 km" | ### Context: CREATE TABLE table_name_6 (velodrome VARCHAR, distance VARCHAR, pacing VARCHAR, year VARCHAR, country VARCHAR) ### Question: What velodrome took place earlier than 1950 with a winner from France in tandem paced over a distance of 951.750 km? ### Answer: SELECT velodrome FROM table_name_6 WHERE year < 1950 AND country = "france" AND pacing = "tandem paced" AND distance = "951.750 km" |
Where was the game played when they kickoff was 12:00 p.m., and a Record of 8-5? | CREATE TABLE table_name_48 (game_site VARCHAR, kickoff VARCHAR, record VARCHAR) | SELECT game_site FROM table_name_48 WHERE kickoff = "12:00 p.m." AND record = "8-5" | ### Context: CREATE TABLE table_name_48 (game_site VARCHAR, kickoff VARCHAR, record VARCHAR) ### Question: Where was the game played when they kickoff was 12:00 p.m., and a Record of 8-5? ### Answer: SELECT game_site FROM table_name_48 WHERE kickoff = "12:00 p.m." AND record = "8-5" |
What date has a Game site of bye? | CREATE TABLE table_name_77 (date VARCHAR, game_site VARCHAR) | SELECT date FROM table_name_77 WHERE game_site = "bye" | ### Context: CREATE TABLE table_name_77 (date VARCHAR, game_site VARCHAR) ### Question: What date has a Game site of bye? ### Answer: SELECT date FROM table_name_77 WHERE game_site = "bye" |
What is the record which shows Kickoff as kickoff? | CREATE TABLE table_name_75 (record VARCHAR) | SELECT record FROM table_name_75 WHERE "kickoff" = "kickoff" | ### Context: CREATE TABLE table_name_75 (record VARCHAR) ### Question: What is the record which shows Kickoff as kickoff? ### Answer: SELECT record FROM table_name_75 WHERE "kickoff" = "kickoff" |
What is the record when the game was played at raymond james stadium? | CREATE TABLE table_name_46 (record VARCHAR, game_site VARCHAR) | SELECT record FROM table_name_46 WHERE game_site = "raymond james stadium" | ### Context: CREATE TABLE table_name_46 (record VARCHAR, game_site VARCHAR) ### Question: What is the record when the game was played at raymond james stadium? ### Answer: SELECT record FROM table_name_46 WHERE game_site = "raymond james stadium" |
What is the kickoff for the game on october 22, 2000? | CREATE TABLE table_name_30 (kickoff VARCHAR, date VARCHAR) | SELECT kickoff FROM table_name_30 WHERE date = "october 22, 2000" | ### Context: CREATE TABLE table_name_30 (kickoff VARCHAR, date VARCHAR) ### Question: What is the kickoff for the game on october 22, 2000? ### Answer: SELECT kickoff FROM table_name_30 WHERE date = "october 22, 2000" |
Which Hindi network is based in India and uses dish service and shows general programming? | CREATE TABLE table_name_93 (network VARCHAR, genre VARCHAR, origin_of_programming VARCHAR, service VARCHAR, language VARCHAR) | SELECT network FROM table_name_93 WHERE service = "dish" AND language = "hindi" AND origin_of_programming = "india" AND genre = "general" | ### Context: CREATE TABLE table_name_93 (network VARCHAR, genre VARCHAR, origin_of_programming VARCHAR, service VARCHAR, language VARCHAR) ### Question: Which Hindi network is based in India and uses dish service and shows general programming? ### Answer: SELECT network FROM table_name_93 WHERE service = "dish" AND language = "hindi" AND origin_of_programming = "india" AND genre = "general" |
Which language is used by the optimum TV service that shows cricket and is based in the United States? | CREATE TABLE table_name_43 (language VARCHAR, genre VARCHAR, service VARCHAR, origin_of_programming VARCHAR) | SELECT language FROM table_name_43 WHERE service = "optimum tv" AND origin_of_programming = "united states" AND genre = "cricket" | ### Context: CREATE TABLE table_name_43 (language VARCHAR, genre VARCHAR, service VARCHAR, origin_of_programming VARCHAR) ### Question: Which language is used by the optimum TV service that shows cricket and is based in the United States? ### Answer: SELECT language FROM table_name_43 WHERE service = "optimum tv" AND origin_of_programming = "united states" AND genre = "cricket" |
What is the origin of the Malayalam Dish Service that shows general programming on the Asianet Plus network? | CREATE TABLE table_name_11 (origin_of_programming VARCHAR, network VARCHAR, genre VARCHAR, service VARCHAR, language VARCHAR) | SELECT origin_of_programming FROM table_name_11 WHERE service = "dish" AND language = "malayalam" AND genre = "general" AND network = "asianet plus" | ### Context: CREATE TABLE table_name_11 (origin_of_programming VARCHAR, network VARCHAR, genre VARCHAR, service VARCHAR, language VARCHAR) ### Question: What is the origin of the Malayalam Dish Service that shows general programming on the Asianet Plus network? ### Answer: SELECT origin_of_programming FROM table_name_11 WHERE service = "dish" AND language = "malayalam" AND genre = "general" AND network = "asianet plus" |
What is the average grid number with a ferrari and a time or retired time of 1:32:35.101? | CREATE TABLE table_name_10 (grid INTEGER, constructor VARCHAR, time_retired VARCHAR) | SELECT AVG(grid) FROM table_name_10 WHERE constructor = "ferrari" AND time_retired = "1:32:35.101" | ### Context: CREATE TABLE table_name_10 (grid INTEGER, constructor VARCHAR, time_retired VARCHAR) ### Question: What is the average grid number with a ferrari and a time or retired time of 1:32:35.101? ### Answer: SELECT AVG(grid) FROM table_name_10 WHERE constructor = "ferrari" AND time_retired = "1:32:35.101" |
What week of the season was November 24, 1957? | CREATE TABLE table_name_74 (week VARCHAR, date VARCHAR) | SELECT week FROM table_name_74 WHERE date = "november 24, 1957" | ### Context: CREATE TABLE table_name_74 (week VARCHAR, date VARCHAR) ### Question: What week of the season was November 24, 1957? ### Answer: SELECT week FROM table_name_74 WHERE date = "november 24, 1957" |
What was the score of the game against the San Diego Chargers? | CREATE TABLE table_name_41 (score VARCHAR, opponent VARCHAR) | SELECT score FROM table_name_41 WHERE opponent = "san diego chargers" | ### Context: CREATE TABLE table_name_41 (score VARCHAR, opponent VARCHAR) ### Question: What was the score of the game against the San Diego Chargers? ### Answer: SELECT score FROM table_name_41 WHERE opponent = "san diego chargers" |
What is the latest week with the date of november 5, 1995? | CREATE TABLE table_name_40 (week INTEGER, date VARCHAR) | SELECT MAX(week) FROM table_name_40 WHERE date = "november 5, 1995" | ### Context: CREATE TABLE table_name_40 (week INTEGER, date VARCHAR) ### Question: What is the latest week with the date of november 5, 1995? ### Answer: SELECT MAX(week) FROM table_name_40 WHERE date = "november 5, 1995" |
What was the outcome of the Tournament in Buenos Aires? | CREATE TABLE table_name_30 (outcome VARCHAR, tournament VARCHAR) | SELECT outcome FROM table_name_30 WHERE tournament = "buenos aires" | ### Context: CREATE TABLE table_name_30 (outcome VARCHAR, tournament VARCHAR) ### Question: What was the outcome of the Tournament in Buenos Aires? ### Answer: SELECT outcome FROM table_name_30 WHERE tournament = "buenos aires" |
In the match played with partner Andres Molteni, with the outcome of winner, who was the opponent? | CREATE TABLE table_name_45 (opponent VARCHAR, outcome VARCHAR, partner VARCHAR) | SELECT opponent FROM table_name_45 WHERE outcome = "winner" AND partner = "andres molteni" | ### Context: CREATE TABLE table_name_45 (opponent VARCHAR, outcome VARCHAR, partner VARCHAR) ### Question: In the match played with partner Andres Molteni, with the outcome of winner, who was the opponent? ### Answer: SELECT opponent FROM table_name_45 WHERE outcome = "winner" AND partner = "andres molteni" |
What is the player with a Span of 1998-2009? | CREATE TABLE table_name_8 (player VARCHAR, span VARCHAR) | SELECT player FROM table_name_8 WHERE span = "1998-2009" | ### Context: CREATE TABLE table_name_8 (player VARCHAR, span VARCHAR) ### Question: What is the player with a Span of 1998-2009? ### Answer: SELECT player FROM table_name_8 WHERE span = "1998-2009" |
What draw has a Span of 1987-1999? | CREATE TABLE table_name_85 (draw VARCHAR, span VARCHAR) | SELECT draw FROM table_name_85 WHERE span = "1987-1999" | ### Context: CREATE TABLE table_name_85 (draw VARCHAR, span VARCHAR) ### Question: What draw has a Span of 1987-1999? ### Answer: SELECT draw FROM table_name_85 WHERE span = "1987-1999" |
What player has a span of 1997-2009? | CREATE TABLE table_name_54 (player VARCHAR, span VARCHAR) | SELECT player FROM table_name_54 WHERE span = "1997-2009" | ### Context: CREATE TABLE table_name_54 (player VARCHAR, span VARCHAR) ### Question: What player has a span of 1997-2009? ### Answer: SELECT player FROM table_name_54 WHERE span = "1997-2009" |
What round did Takayo Hashi face Yoko Hattori? | CREATE TABLE table_name_14 (round INTEGER, opponent VARCHAR) | SELECT SUM(round) FROM table_name_14 WHERE opponent = "yoko hattori" | ### Context: CREATE TABLE table_name_14 (round INTEGER, opponent VARCHAR) ### Question: What round did Takayo Hashi face Yoko Hattori? ### Answer: SELECT SUM(round) FROM table_name_14 WHERE opponent = "yoko hattori" |
What was the away team that played at Princes Park? | CREATE TABLE table_name_51 (away_team VARCHAR, venue VARCHAR) | SELECT away_team FROM table_name_51 WHERE venue = "princes park" | ### Context: CREATE TABLE table_name_51 (away_team VARCHAR, venue VARCHAR) ### Question: What was the away team that played at Princes Park? ### Answer: SELECT away_team FROM table_name_51 WHERE venue = "princes park" |
What was the date when Footscray was the away team? | CREATE TABLE table_name_5 (date VARCHAR, away_team VARCHAR) | SELECT date FROM table_name_5 WHERE away_team = "footscray" | ### Context: CREATE TABLE table_name_5 (date VARCHAR, away_team VARCHAR) ### Question: What was the date when Footscray was the away team? ### Answer: SELECT date FROM table_name_5 WHERE away_team = "footscray" |
What was the home team's score in the match at Victoria Park? | CREATE TABLE table_name_6 (home_team VARCHAR, venue VARCHAR) | SELECT home_team AS score FROM table_name_6 WHERE venue = "victoria park" | ### Context: CREATE TABLE table_name_6 (home_team VARCHAR, venue VARCHAR) ### Question: What was the home team's score in the match at Victoria Park? ### Answer: SELECT home_team AS score FROM table_name_6 WHERE venue = "victoria park" |
On what date was South Melbourne the away team? | CREATE TABLE table_name_61 (date VARCHAR, away_team VARCHAR) | SELECT date FROM table_name_61 WHERE away_team = "south melbourne" | ### Context: CREATE TABLE table_name_61 (date VARCHAR, away_team VARCHAR) ### Question: On what date was South Melbourne the away team? ### Answer: SELECT date FROM table_name_61 WHERE away_team = "south melbourne" |
What away team did Carlton play? | CREATE TABLE table_name_77 (away_team VARCHAR, home_team VARCHAR) | SELECT away_team FROM table_name_77 WHERE home_team = "carlton" | ### Context: CREATE TABLE table_name_77 (away_team VARCHAR, home_team VARCHAR) ### Question: What away team did Carlton play? ### Answer: SELECT away_team FROM table_name_77 WHERE home_team = "carlton" |
What is the sum of bronze when silver is greater than 3? | CREATE TABLE table_name_45 (bronze INTEGER, silver INTEGER) | SELECT SUM(bronze) FROM table_name_45 WHERE silver > 3 | ### Context: CREATE TABLE table_name_45 (bronze INTEGER, silver INTEGER) ### Question: What is the sum of bronze when silver is greater than 3? ### Answer: SELECT SUM(bronze) FROM table_name_45 WHERE silver > 3 |
What is the average total when gold is 0, bronze is 0, and silver is smaller than 1? | CREATE TABLE table_name_54 (total INTEGER, silver VARCHAR, gold VARCHAR, bronze VARCHAR) | SELECT AVG(total) FROM table_name_54 WHERE gold = 0 AND bronze = 0 AND silver < 1 | ### Context: CREATE TABLE table_name_54 (total INTEGER, silver VARCHAR, gold VARCHAR, bronze VARCHAR) ### Question: What is the average total when gold is 0, bronze is 0, and silver is smaller than 1? ### Answer: SELECT AVG(total) FROM table_name_54 WHERE gold = 0 AND bronze = 0 AND silver < 1 |
What was the total attendance in week 8? | CREATE TABLE table_name_96 (attendance VARCHAR, week VARCHAR) | SELECT COUNT(attendance) FROM table_name_96 WHERE week = 8 | ### Context: CREATE TABLE table_name_96 (attendance VARCHAR, week VARCHAR) ### Question: What was the total attendance in week 8? ### Answer: SELECT COUNT(attendance) FROM table_name_96 WHERE week = 8 |
Who was the winner in 2007? | CREATE TABLE table_name_49 (winner VARCHAR, date VARCHAR) | SELECT winner FROM table_name_49 WHERE date = 2007 | ### Context: CREATE TABLE table_name_49 (winner VARCHAR, date VARCHAR) ### Question: Who was the winner in 2007? ### Answer: SELECT winner FROM table_name_49 WHERE date = 2007 |
What sport was played before 2006 with a loser of france b? | CREATE TABLE table_name_93 (sport VARCHAR, date VARCHAR, loser VARCHAR) | SELECT sport FROM table_name_93 WHERE date < 2006 AND loser = "france b" | ### Context: CREATE TABLE table_name_93 (sport VARCHAR, date VARCHAR, loser VARCHAR) ### Question: What sport was played before 2006 with a loser of france b? ### Answer: SELECT sport FROM table_name_93 WHERE date < 2006 AND loser = "france b" |
Who was the winner with the loser being russia-2? | CREATE TABLE table_name_66 (winner VARCHAR, loser VARCHAR) | SELECT winner FROM table_name_66 WHERE loser = "russia-2" | ### Context: CREATE TABLE table_name_66 (winner VARCHAR, loser VARCHAR) ### Question: Who was the winner with the loser being russia-2? ### Answer: SELECT winner FROM table_name_66 WHERE loser = "russia-2" |
Who was the loser playing football with england b as a winner after 1992? | CREATE TABLE table_name_55 (loser VARCHAR, date VARCHAR, sport VARCHAR, winner VARCHAR) | SELECT loser FROM table_name_55 WHERE sport = "football" AND winner = "england b" AND date > 1992 | ### Context: CREATE TABLE table_name_55 (loser VARCHAR, date VARCHAR, sport VARCHAR, winner VARCHAR) ### Question: Who was the loser playing football with england b as a winner after 1992? ### Answer: SELECT loser FROM table_name_55 WHERE sport = "football" AND winner = "england b" AND date > 1992 |
What was the name of the race that occurred in Brooklyn, Michigan with a sanctioning of cart? | CREATE TABLE table_name_36 (race_name VARCHAR, sanctioning VARCHAR, city_location VARCHAR) | SELECT race_name FROM table_name_36 WHERE sanctioning = "cart" AND city_location = "brooklyn, michigan" | ### Context: CREATE TABLE table_name_36 (race_name VARCHAR, sanctioning VARCHAR, city_location VARCHAR) ### Question: What was the name of the race that occurred in Brooklyn, Michigan with a sanctioning of cart? ### Answer: SELECT race_name FROM table_name_36 WHERE sanctioning = "cart" AND city_location = "brooklyn, michigan" |
Where did the Gould Rex Mays Classic 150 occur? | CREATE TABLE table_name_38 (city_location VARCHAR, race_name VARCHAR) | SELECT city_location FROM table_name_38 WHERE race_name = "gould rex mays classic 150" | ### Context: CREATE TABLE table_name_38 (city_location VARCHAR, race_name VARCHAR) ### Question: Where did the Gould Rex Mays Classic 150 occur? ### Answer: SELECT city_location FROM table_name_38 WHERE race_name = "gould rex mays classic 150" |
What is the date for the race that has a circuit of Milwaukee Mile and the sanctioning of cart? | CREATE TABLE table_name_10 (date VARCHAR, circuit VARCHAR, sanctioning VARCHAR) | SELECT date FROM table_name_10 WHERE circuit = "milwaukee mile" AND sanctioning = "cart" | ### Context: CREATE TABLE table_name_10 (date VARCHAR, circuit VARCHAR, sanctioning VARCHAR) ### Question: What is the date for the race that has a circuit of Milwaukee Mile and the sanctioning of cart? ### Answer: SELECT date FROM table_name_10 WHERE circuit = "milwaukee mile" AND sanctioning = "cart" |
15 albums were released in the UK during which year? | CREATE TABLE table_name_25 (year VARCHAR, uk_albums VARCHAR) | SELECT year FROM table_name_25 WHERE uk_albums = "15" | ### Context: CREATE TABLE table_name_25 (year VARCHAR, uk_albums VARCHAR) ### Question: 15 albums were released in the UK during which year? ### Answer: SELECT year FROM table_name_25 WHERE uk_albums = "15" |
What is the venue where Collingwood played as the home team? | CREATE TABLE table_name_60 (venue VARCHAR, home_team VARCHAR) | SELECT venue FROM table_name_60 WHERE home_team = "collingwood" | ### Context: CREATE TABLE table_name_60 (venue VARCHAR, home_team VARCHAR) ### Question: What is the venue where Collingwood played as the home team? ### Answer: SELECT venue FROM table_name_60 WHERE home_team = "collingwood" |
What is the size of the crowd for the game with Footscray as the home team? | CREATE TABLE table_name_59 (crowd INTEGER, home_team VARCHAR) | SELECT AVG(crowd) FROM table_name_59 WHERE home_team = "footscray" | ### Context: CREATE TABLE table_name_59 (crowd INTEGER, home_team VARCHAR) ### Question: What is the size of the crowd for the game with Footscray as the home team? ### Answer: SELECT AVG(crowd) FROM table_name_59 WHERE home_team = "footscray" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.