combined_text
stringlengths
106
1.05k
###question:Name the average DDR3 speed for model e-350###answer:SELECT AVG(ddr3_speed) FROM table_name_15 WHERE model = "e-350"###context:CREATE TABLE table_name_15 (ddr3_speed INTEGER, model VARCHAR)
###question:who lost on august 21?###answer:SELECT loss FROM table_name_10 WHERE date = "august 21"###context:CREATE TABLE table_name_10 (loss VARCHAR, date VARCHAR)
###question:On August 10, what was the record against the Expos?###answer:SELECT record FROM table_name_21 WHERE opponent = "expos" AND date = "august 10"###context:CREATE TABLE table_name_21 (record VARCHAR, opponent VARCHAR, date VARCHAR)
###question:What is the average laps for lorenzo bandini with a grid under 3?###answer:SELECT AVG(laps) FROM table_name_91 WHERE driver = "lorenzo bandini" AND grid < 3###context:CREATE TABLE table_name_91 (laps INTEGER, driver VARCHAR, grid VARCHAR)
###question:What driver has under 53 laps, a grid smaller than 14, and a time/retired of differential?###answer:SELECT driver FROM table_name_28 WHERE laps < 53 AND grid < 14 AND time_retired = "differential"###context:CREATE TABLE table_name_28 (driver VARCHAR, time_retired VARCHAR, laps VARCHAR, grid VARCHAR)
###question:What music is in the film with an Uncut run time of 95 minutes?###answer:SELECT music FROM table_name_63 WHERE uncut_run_time = "95 minutes"###context:CREATE TABLE table_name_63 (music VARCHAR, uncut_run_time VARCHAR)
###question:What country is the film that has music of nino oliviero?###answer:SELECT country FROM table_name_10 WHERE music = "nino oliviero"###context:CREATE TABLE table_name_10 (country VARCHAR, music VARCHAR)
###question:What music is in the film before 1963?###answer:SELECT music FROM table_name_53 WHERE year < 1963###context:CREATE TABLE table_name_53 (music VARCHAR, year INTEGER)
###question:What music is in the film before 1962?###answer:SELECT music FROM table_name_23 WHERE year = 1962###context:CREATE TABLE table_name_23 (music VARCHAR, year VARCHAR)
###question:Which team played as the home team when north melbourne played as away?###answer:SELECT home_team FROM table_name_75 WHERE away_team = "north melbourne"###context:CREATE TABLE table_name_75 (home_team VARCHAR, away_team VARCHAR)
###question:what is the position of pick #53?###answer:SELECT position FROM table_name_37 WHERE pick__number = 53###context:CREATE TABLE table_name_37 (position VARCHAR, pick__number VARCHAR)
###question:what is the position for andrew paopao?###answer:SELECT position FROM table_name_54 WHERE player = "andrew paopao"###context:CREATE TABLE table_name_54 (position VARCHAR, player VARCHAR)
###question:In which venue is South Melbourne the home team?###answer:SELECT venue FROM table_name_11 WHERE home_team = "south melbourne"###context:CREATE TABLE table_name_11 (venue VARCHAR, home_team VARCHAR)
###question:When South Melbourne was the home team, who was the away team?###answer:SELECT away_team FROM table_name_80 WHERE home_team = "south melbourne"###context:CREATE TABLE table_name_80 (away_team VARCHAR, home_team VARCHAR)
###question:What venue is Hawthorn the home team at?###answer:SELECT venue FROM table_name_16 WHERE home_team = "hawthorn"###context:CREATE TABLE table_name_16 (venue VARCHAR, home_team VARCHAR)
###question:What is the capacity for the arena in Chester?###answer:SELECT capacity FROM table_name_97 WHERE city_area = "chester"###context:CREATE TABLE table_name_97 (capacity VARCHAR, city_area VARCHAR)
###question:Which arena has a capactiy of 1,100?###answer:SELECT arena FROM table_name_8 WHERE capacity = "1,100"###context:CREATE TABLE table_name_8 (arena VARCHAR, capacity VARCHAR)
###question:What is the last season that the Scottish Rocks played?###answer:SELECT last_season FROM table_name_90 WHERE team = "scottish rocks"###context:CREATE TABLE table_name_90 (last_season VARCHAR, team VARCHAR)
###question:Which arena has the Milton Keynes Lions and a capacity of 800?###answer:SELECT arena FROM table_name_32 WHERE capacity = "800" AND team = "milton keynes lions"###context:CREATE TABLE table_name_32 (arena VARCHAR, capacity VARCHAR, team VARCHAR)
###question:What is the last season the Worcester Wolves played?###answer:SELECT last_season FROM table_name_65 WHERE team = "worcester wolves"###context:CREATE TABLE table_name_65 (last_season VARCHAR, team VARCHAR)
###question:Which team is from Birmingham & Telford?###answer:SELECT team FROM table_name_17 WHERE city_area = "birmingham & telford"###context:CREATE TABLE table_name_17 (team VARCHAR, city_area VARCHAR)
###question:Who has the least wins when ranked above 3 with over 10 events?###answer:SELECT MIN(wins) FROM table_name_5 WHERE rank < 3 AND events > 10###context:CREATE TABLE table_name_5 (wins INTEGER, rank VARCHAR, events VARCHAR)
###question:How many wins for billy casper over 8 events and uner $71,979 in earnings?###answer:SELECT MIN(wins) FROM table_name_62 WHERE events = 8 AND player = "billy casper" AND earnings___$__ < 71 OFFSET 979###context:CREATE TABLE table_name_62 (wins INTEGER, earnings___$__ VARCHAR, events VARCHAR, player VARCHAR)
###question:What is the lowest rank for a player earning $71,979?###answer:SELECT MIN(rank) FROM table_name_11 WHERE earnings___$__ < 71 OFFSET 979###context:CREATE TABLE table_name_11 (rank INTEGER, earnings___$__ INTEGER)
###question:What was the Gdp (bn) for the region that has ioannina as its Capital?###answer:SELECT gdp___bn__ FROM table_name_67 WHERE capital = "ioannina"###context:CREATE TABLE table_name_67 (gdp___bn__ VARCHAR, capital VARCHAR)
###question:Which Region has an Area of 9,451km²?###answer:SELECT region FROM table_name_65 WHERE area__km²_ = "9,451"###context:CREATE TABLE table_name_65 (region VARCHAR, area__km²_ VARCHAR)
###question:Which capital has a population of 308,610?###answer:SELECT capital FROM table_name_73 WHERE population = "308,610"###context:CREATE TABLE table_name_73 (capital VARCHAR, population VARCHAR)
###question:Which Region has an area of 14,037km²?###answer:SELECT region FROM table_name_70 WHERE area__km²_ = "14,037"###context:CREATE TABLE table_name_70 (region VARCHAR, area__km²_ VARCHAR)
###question:What is the GDP for the region with an area of 7,263 sq. mi.?###answer:SELECT gdp___bn__ FROM table_name_74 WHERE area__sq_mi_ = "7,263"###context:CREATE TABLE table_name_74 (gdp___bn__ VARCHAR, area__sq_mi_ VARCHAR)
###question:What is the population for the region with an area of 6,004 sq. Mi.?###answer:SELECT population FROM table_name_43 WHERE area__sq_mi_ = "6,004"###context:CREATE TABLE table_name_43 (population VARCHAR, area__sq_mi_ VARCHAR)
###question:What is the lowest episode # with an air date of October 31, 2001?###answer:SELECT MIN(episode__number) FROM table_name_42 WHERE airdate = "october 31, 2001"###context:CREATE TABLE table_name_42 (episode__number INTEGER, airdate VARCHAR)
###question:What is the average episode # located in Tanzania and whose # in season is larger than 5?###answer:SELECT AVG(episode__number) FROM table_name_65 WHERE location = "tanzania" AND _number_in_season > 5###context:CREATE TABLE table_name_65 (episode__number INTEGER, location VARCHAR, _number_in_season VARCHAR)
###question:What is the average episode # with a name of the origin of Donnie (part 1)?###answer:SELECT AVG(episode__number) FROM table_name_75 WHERE episode_name = "the origin of donnie (part 1)"###context:CREATE TABLE table_name_75 (episode__number INTEGER, episode_name VARCHAR)
###question:Which air date has 5 for # in season?###answer:SELECT airdate FROM table_name_50 WHERE _number_in_season = 5###context:CREATE TABLE table_name_50 (airdate VARCHAR, _number_in_season VARCHAR)
###question:What venue is home for the Melbourne team?###answer:SELECT venue FROM table_name_60 WHERE home_team = "melbourne"###context:CREATE TABLE table_name_60 (venue VARCHAR, home_team VARCHAR)
###question:Which License has a System of amiga, and a Name of pocketuae?###answer:SELECT license FROM table_name_83 WHERE system = "amiga" AND name = "pocketuae"###context:CREATE TABLE table_name_83 (license VARCHAR, system VARCHAR, name VARCHAR)
###question:What name has a License of gpl, and an Actual version of 0.8.29wip4?###answer:SELECT name FROM table_name_46 WHERE license = "gpl" AND actual_version = "0.8.29wip4"###context:CREATE TABLE table_name_46 (name VARCHAR, license VARCHAR, actual_version VARCHAR)
###question:Which platform has an Actual version of 0.147?###answer:SELECT platform FROM table_name_38 WHERE actual_version = "0.147"###context:CREATE TABLE table_name_38 (platform VARCHAR, actual_version VARCHAR)
###question:Which name has a License of gpl, and a Platform of windows?###answer:SELECT name FROM table_name_47 WHERE license = "gpl" AND platform = "windows"###context:CREATE TABLE table_name_47 (name VARCHAR, license VARCHAR, platform VARCHAR)
###question:Which system is named mess?###answer:SELECT system FROM table_name_80 WHERE name = "mess"###context:CREATE TABLE table_name_80 (system VARCHAR, name VARCHAR)
###question:Which Platform has an Actual version of 0.8.29?###answer:SELECT platform FROM table_name_96 WHERE actual_version = "0.8.29"###context:CREATE TABLE table_name_96 (platform VARCHAR, actual_version VARCHAR)
###question:What's the earliest year that had a category of best supporting actress at the asian film awards?###answer:SELECT MIN(year) FROM table_name_46 WHERE category = "best supporting actress" AND award = "asian film awards"###context:CREATE TABLE table_name_46 (year INTEGER, category VARCHAR, award VARCHAR)
###question:Which award show had the category of best supporting actress?###answer:SELECT award FROM table_name_22 WHERE category = "best supporting actress"###context:CREATE TABLE table_name_22 (award VARCHAR, category VARCHAR)
###question:Did the nominated work of white valentine win an award?###answer:SELECT result FROM table_name_61 WHERE nominated_work = "white valentine"###context:CREATE TABLE table_name_61 (result VARCHAR, nominated_work VARCHAR)
###question:Which category was the berlin file up to win in 2013?###answer:SELECT category FROM table_name_9 WHERE year = 2013 AND nominated_work = "the berlin file"###context:CREATE TABLE table_name_9 (category VARCHAR, year VARCHAR, nominated_work VARCHAR)
###question:What is the final position/round of the UEFA cup?###answer:SELECT final_position___round FROM table_name_88 WHERE competition = "uefa cup"###context:CREATE TABLE table_name_88 (final_position___round VARCHAR, competition VARCHAR)
###question:When the final position/round is group stage, when is the last match?###answer:SELECT last_match FROM table_name_60 WHERE final_position___round = "group stage"###context:CREATE TABLE table_name_60 (last_match VARCHAR, final_position___round VARCHAR)
###question:When did the DC Comics title that debuted in 1937 end?###answer:SELECT last_year FROM table_name_65 WHERE first_year = "1937" AND publisher = "dc comics"###context:CREATE TABLE table_name_65 (last_year VARCHAR, first_year VARCHAR, publisher VARCHAR)
###question:Who published Weird War Tales?###answer:SELECT publisher FROM table_name_13 WHERE title = "weird war tales"###context:CREATE TABLE table_name_13 (publisher VARCHAR, title VARCHAR)
###question:When did the comic which came out in 1982 end?###answer:SELECT last_year FROM table_name_75 WHERE first_year = "1982"###context:CREATE TABLE table_name_75 (last_year VARCHAR, first_year VARCHAR)
###question:Which EC Comics title ran from 1950 to 1953?###answer:SELECT title FROM table_name_61 WHERE first_year = "1950" AND publisher = "ec comics" AND last_year = "1953"###context:CREATE TABLE table_name_61 (title VARCHAR, last_year VARCHAR, first_year VARCHAR, publisher VARCHAR)
###question:What is the first year for Popgun?###answer:SELECT first_year FROM table_name_41 WHERE title = "popgun"###context:CREATE TABLE table_name_41 (first_year VARCHAR, title VARCHAR)
###question:What's the region for an item on November 10, 2007 that's a cd?###answer:SELECT region FROM table_name_91 WHERE date = "november 10, 2007" AND format = "cd"###context:CREATE TABLE table_name_91 (region VARCHAR, date VARCHAR, format VARCHAR)
###question:What's the catalog number for a record from columbia formatted in a cd/dvd that's from the United States region?###answer:SELECT catalog FROM table_name_97 WHERE label = "columbia" AND region = "united states" AND format = "cd/dvd"###context:CREATE TABLE table_name_97 (catalog VARCHAR, format VARCHAR, label...
###question:What's the catalog number for a December 11, 2007 record from columbia formatted in a that's from Canada?###answer:SELECT catalog FROM table_name_1 WHERE label = "columbia" AND date = "december 11, 2007" AND region = "canada"###context:CREATE TABLE table_name_1 (catalog VARCHAR, region VARCHAR, label VARCHA...
###question:What is the average crowd size at Princes Park?###answer:SELECT SUM(crowd) FROM table_name_84 WHERE venue = "princes park"###context:CREATE TABLE table_name_84 (crowd INTEGER, venue VARCHAR)
###question:who is the constructor when the free practice driver(s) is n/a, the chassis is 005 and the driver is takuma sato?###answer:SELECT constructor FROM table_name_42 WHERE free_practice_driver_s_ = "n/a" AND chassis = "005" AND driver = "takuma sato"###context:CREATE TABLE table_name_42 (constructor VARCHAR, dri...
###question:what is the rounds when the entrant is scuderia ferrari marlboro?###answer:SELECT rounds FROM table_name_57 WHERE entrant = "scuderia ferrari marlboro"###context:CREATE TABLE table_name_57 (rounds VARCHAR, entrant VARCHAR)
###question:what is the chassis when the entrant is mild seven renault f1 team and the driver is jarno trulli?###answer:SELECT chassis FROM table_name_3 WHERE entrant = "mild seven renault f1 team" AND driver = "jarno trulli"###context:CREATE TABLE table_name_3 (chassis VARCHAR, entrant VARCHAR, driver VARCHAR)
###question:what is the engine when the tyre is m and the driver is fernando alonso?###answer:SELECT engine_† FROM table_name_34 WHERE tyre = "m" AND driver = "fernando alonso"###context:CREATE TABLE table_name_34 (engine_† VARCHAR, tyre VARCHAR, driver VARCHAR)
###question:who is the constructor when the driver is juan pablo montoya?###answer:SELECT constructor FROM table_name_41 WHERE driver = "juan pablo montoya"###context:CREATE TABLE table_name_41 (constructor VARCHAR, driver VARCHAR)
###question:How many people attended the game with a record of 86-56###answer:SELECT COUNT(attendance) FROM table_name_39 WHERE record = "86-56"###context:CREATE TABLE table_name_39 (attendance VARCHAR, record VARCHAR)
###question:Name the date that had a record of 90-60###answer:SELECT date FROM table_name_31 WHERE record = "90-60"###context:CREATE TABLE table_name_31 (date VARCHAR, record VARCHAR)
###question:What was the highest Sinclair Total that had a rank of 3, but a World Record smaller than 217?###answer:SELECT MAX(sinclair_total) FROM table_name_5 WHERE rank = 3 AND world_record__kg_ < 217###context:CREATE TABLE table_name_5 (sinclair_total INTEGER, rank VARCHAR, world_record__kg_ VARCHAR)
###question:What is the name of the venue that they away team Collingwood played at?###answer:SELECT venue FROM table_name_95 WHERE away_team = "collingwood"###context:CREATE TABLE table_name_95 (venue VARCHAR, away_team VARCHAR)
###question:What date did Carlton play as the away team?###answer:SELECT date FROM table_name_54 WHERE away_team = "carlton"###context:CREATE TABLE table_name_54 (date VARCHAR, away_team VARCHAR)
###question:What was the home team's score at Windy Hill?###answer:SELECT home_team AS score FROM table_name_76 WHERE venue = "windy hill"###context:CREATE TABLE table_name_76 (home_team VARCHAR, venue VARCHAR)
###question:What is the lowest grid value with fewer than 17 laps and constructor Sauber - Petronas?###answer:SELECT MIN(grid) FROM table_name_48 WHERE laps < 17 AND constructor = "sauber - petronas"###context:CREATE TABLE table_name_48 (grid INTEGER, laps VARCHAR, constructor VARCHAR)
###question:Which Time/Retired entry has greater than 51 laps and driver Cristiano da Matta?###answer:SELECT time_retired FROM table_name_79 WHERE laps > 51 AND driver = "cristiano da matta"###context:CREATE TABLE table_name_79 (time_retired VARCHAR, laps VARCHAR, driver VARCHAR)
###question:How many ties did the Montreal Victorias have with a GA of less than 24?###answer:SELECT MAX(ties) FROM table_name_57 WHERE team = "montreal victorias" AND goals_against < 24###context:CREATE TABLE table_name_57 (ties INTEGER, team VARCHAR, goals_against VARCHAR)
###question:How many years was the record 3:40.8?###answer:SELECT COUNT(year) FROM table_name_28 WHERE record = "3:40.8"###context:CREATE TABLE table_name_28 (year VARCHAR, record VARCHAR)
###question:What event is before 1964 and has an athlete of lászló tábori gunnar nielsen?###answer:SELECT event FROM table_name_79 WHERE year < 1964 AND athlete = "lászló tábori gunnar nielsen"###context:CREATE TABLE table_name_79 (event VARCHAR, year VARCHAR, athlete VARCHAR)
###question:Who is the leading scorer of the game where the Kings is the home team?###answer:SELECT leading_scorer FROM table_name_27 WHERE home = "kings"###context:CREATE TABLE table_name_27 (leading_scorer VARCHAR, home VARCHAR)
###question:Who is the visitor team of the game on March 2, 2008?###answer:SELECT visitor FROM table_name_19 WHERE date = "march 2, 2008"###context:CREATE TABLE table_name_19 (visitor VARCHAR, date VARCHAR)
###question:What is the attendance total of the game with the Lakers as the home team?###answer:SELECT COUNT(attendance) FROM table_name_67 WHERE home = "lakers"###context:CREATE TABLE table_name_67 (attendance VARCHAR, home VARCHAR)
###question:Which week had 39,056 people in attendance?###answer:SELECT week FROM table_name_89 WHERE attendance = "39,056"###context:CREATE TABLE table_name_89 (week VARCHAR, attendance VARCHAR)
###question:What is the kickoff time for week 3?###answer:SELECT kickoff_[a_] FROM table_name_25 WHERE week = "3"###context:CREATE TABLE table_name_25 (kickoff_ VARCHAR, a_ VARCHAR, week VARCHAR)
###question:What is the kickoff time for the Hubert H. Humphrey Metrodome?###answer:SELECT kickoff_[a_] FROM table_name_12 WHERE game_site = "hubert h. humphrey metrodome"###context:CREATE TABLE table_name_12 (kickoff_ VARCHAR, a_ VARCHAR, game_site VARCHAR)
###question:Who was the opponent on September 13, 1992?###answer:SELECT opponent FROM table_name_10 WHERE date = "september 13, 1992"###context:CREATE TABLE table_name_10 (opponent VARCHAR, date VARCHAR)
###question:What is the result on November 1, 1992?###answer:SELECT result FROM table_name_53 WHERE date = "november 1, 1992"###context:CREATE TABLE table_name_53 (result VARCHAR, date VARCHAR)
###question:What was the away score when the home team was Melbourne?###answer:SELECT away_team AS score FROM table_name_84 WHERE home_team = "melbourne"###context:CREATE TABLE table_name_84 (away_team VARCHAR, home_team VARCHAR)
###question:Who played Collingwood?###answer:SELECT away_team FROM table_name_72 WHERE home_team = "collingwood"###context:CREATE TABLE table_name_72 (away_team VARCHAR, home_team VARCHAR)
###question:How big was the crowd for Essendon?###answer:SELECT SUM(crowd) FROM table_name_78 WHERE home_team = "essendon"###context:CREATE TABLE table_name_78 (crowd INTEGER, home_team VARCHAR)
###question:Which team played against North Melbourne as the home team?###answer:SELECT home_team FROM table_name_5 WHERE away_team = "north melbourne"###context:CREATE TABLE table_name_5 (home_team VARCHAR, away_team VARCHAR)
###question:Which home team plays at Punt Road Oval?###answer:SELECT home_team FROM table_name_40 WHERE venue = "punt road oval"###context:CREATE TABLE table_name_40 (home_team VARCHAR, venue VARCHAR)
###question:Which team plays at Punt Road Oval?###answer:SELECT home_team FROM table_name_75 WHERE venue = "punt road oval"###context:CREATE TABLE table_name_75 (home_team VARCHAR, venue VARCHAR)
###question:What did the away team score at corio oval?###answer:SELECT away_team AS score FROM table_name_58 WHERE venue = "corio oval"###context:CREATE TABLE table_name_58 (away_team VARCHAR, venue VARCHAR)
###question:Who did the cowboys play when 65,537 attended?###answer:SELECT opponent FROM table_name_54 WHERE attendance = "65,537"###context:CREATE TABLE table_name_54 (opponent VARCHAR, attendance VARCHAR)
###question:What is the name of the tournament when antonia xenia tout nataša zorić was the opponenet?###answer:SELECT tournament FROM table_name_13 WHERE opponents = "antonia xenia tout nataša zorić"###context:CREATE TABLE table_name_13 (tournament VARCHAR, opponents VARCHAR)
###question:What date was georgie stoop emily webley-smith the opponent?###answer:SELECT date FROM table_name_33 WHERE opponents = "georgie stoop emily webley-smith"###context:CREATE TABLE table_name_33 (date VARCHAR, opponents VARCHAR)
###question:What is the surface of the match when the opponent was iryna bremond valeria savinykh?###answer:SELECT surface FROM table_name_44 WHERE opponents = "iryna bremond valeria savinykh"###context:CREATE TABLE table_name_44 (surface VARCHAR, opponents VARCHAR)
###question:What is the name of the opponent for the Sutton tournament?###answer:SELECT opponents FROM table_name_19 WHERE tournament = "sutton"###context:CREATE TABLE table_name_19 (opponents VARCHAR, tournament VARCHAR)
###question:What is the name of the opponent when anastasia pivovarova was the partner?###answer:SELECT opponents FROM table_name_15 WHERE partner = "anastasia pivovarova"###context:CREATE TABLE table_name_15 (opponents VARCHAR, partner VARCHAR)
###question:What is south melbourne's home side score?###answer:SELECT home_team AS score FROM table_name_53 WHERE home_team = "south melbourne"###context:CREATE TABLE table_name_53 (home_team VARCHAR)
###question:What rounds did Roy Salvadori drive for David Brown Corporation?###answer:SELECT rounds FROM table_name_98 WHERE entrant = "david brown corporation" AND driver = "roy salvadori"###context:CREATE TABLE table_name_98 (rounds VARCHAR, entrant VARCHAR, driver VARCHAR)
###question:What are the results for years after 2007?###answer:SELECT result FROM table_name_17 WHERE year > 2007###context:CREATE TABLE table_name_17 (result VARCHAR, year INTEGER)
###question:Which characters after 2003 won?###answer:SELECT character FROM table_name_1 WHERE result = "won" AND year > 2003###context:CREATE TABLE table_name_1 (character VARCHAR, result VARCHAR, year VARCHAR)
###question:For 2006 what category has the Show of kasautii zindagii kay?###answer:SELECT category FROM table_name_54 WHERE for_the_show = "kasautii zindagii kay" AND year = 2006###context:CREATE TABLE table_name_54 (category VARCHAR, for_the_show VARCHAR, year VARCHAR)
###question:What is the character for 2005?###answer:SELECT character FROM table_name_43 WHERE year = 2005###context:CREATE TABLE table_name_43 (character VARCHAR, year VARCHAR)
###question:What is a category before 2012?###answer:SELECT category FROM table_name_21 WHERE year < 2012###context:CREATE TABLE table_name_21 (category VARCHAR, year INTEGER)