combined_text
stringlengths
106
1.05k
###question:What was the date of the game at Princes Park?###answer:SELECT date FROM table_name_83 WHERE venue = "princes park"###context:CREATE TABLE table_name_83 (date VARCHAR, venue VARCHAR)
###question:Who was the home team at the game with a crowd larger than 32,576?###answer:SELECT home_team AS score FROM table_name_20 WHERE crowd > 32 OFFSET 576###context:CREATE TABLE table_name_20 (home_team VARCHAR, crowd INTEGER)
###question:Where did Melbourne play as the home team?###answer:SELECT venue FROM table_name_38 WHERE home_team = "melbourne"###context:CREATE TABLE table_name_38 (venue VARCHAR, home_team VARCHAR)
###question:In what rounds did Scuderia Milano participate?###answer:SELECT rounds FROM table_name_48 WHERE entrant = "scuderia milano"###context:CREATE TABLE table_name_48 (rounds VARCHAR, entrant VARCHAR)
###question:Who was the entrant for Louis Chiron with a Chassis of T26C?###answer:SELECT entrant FROM table_name_95 WHERE driver = "louis chiron" AND chassis = "t26c"###context:CREATE TABLE table_name_95 (entrant VARCHAR, driver VARCHAR, chassis VARCHAR)
###question:In what rounds did Luigi Fagioli drive for Alfa Romeo SPA?###answer:SELECT rounds FROM table_name_69 WHERE entrant = "alfa romeo spa" AND driver = "luigi fagioli"###context:CREATE TABLE table_name_69 (rounds VARCHAR, entrant VARCHAR, driver VARCHAR)
###question:In what rounds did the P15 Chassis and tyre D participate?###answer:SELECT rounds FROM table_name_10 WHERE tyre = "d" AND chassis = "p15"###context:CREATE TABLE table_name_10 (rounds VARCHAR, tyre VARCHAR, chassis VARCHAR)
###question:Where did Hawthorn play an away game?###answer:SELECT venue FROM table_name_6 WHERE away_team = "hawthorn"###context:CREATE TABLE table_name_6 (venue VARCHAR, away_team VARCHAR)
###question:Where does Melbourne play home games?###answer:SELECT venue FROM table_name_13 WHERE home_team = "melbourne"###context:CREATE TABLE table_name_13 (venue VARCHAR, home_team VARCHAR)
###question:What was the score for the opponent against Richmond?###answer:SELECT away_team AS score FROM table_name_48 WHERE home_team = "richmond"###context:CREATE TABLE table_name_48 (away_team VARCHAR, home_team VARCHAR)
###question:I want to know the total number of national university of ireland with agricultural panel of 0 and labour panel more than 0###answer:SELECT COUNT(national_university_of_ireland) FROM table_name_34 WHERE agricultural_panel = 0 AND labour_panel > 0###context:CREATE TABLE table_name_34 (national_university_of_...
###question:Tell me the total number of administrative panel with labour panel more than 2, nominated by taoiseach more than 6 and total of 28###answer:SELECT COUNT(administrative_panel) FROM table_name_59 WHERE labour_panel > 2 AND total = 28 AND nominated_by_the_taoiseach > 6###context:CREATE TABLE table_name_59 (adm...
###question:What was the away team score at Western Oval?###answer:SELECT away_team AS score FROM table_name_64 WHERE venue = "western oval"###context:CREATE TABLE table_name_64 (away_team VARCHAR, venue VARCHAR)
###question:What is the name of Richmond's home venue?###answer:SELECT venue FROM table_name_45 WHERE home_team = "richmond"###context:CREATE TABLE table_name_45 (venue VARCHAR, home_team VARCHAR)
###question:What was the away team score at Hawthorn's home game?###answer:SELECT away_team AS score FROM table_name_28 WHERE home_team = "hawthorn"###context:CREATE TABLE table_name_28 (away_team VARCHAR, home_team VARCHAR)
###question:What score occurred on February 6?###answer:SELECT score FROM table_name_31 WHERE date = "february 6"###context:CREATE TABLE table_name_31 (score VARCHAR, date VARCHAR)
###question:What is the lowest game number on February 20?###answer:SELECT MIN(game) FROM table_name_69 WHERE date = "february 20"###context:CREATE TABLE table_name_69 (game INTEGER, date VARCHAR)
###question:Who had the high rebounds when the score was l 122–93?###answer:SELECT high_rebounds FROM table_name_7 WHERE score = "l 122–93"###context:CREATE TABLE table_name_7 (high_rebounds VARCHAR, score VARCHAR)
###question:Which home team played at Princes Park?###answer:SELECT home_team FROM table_name_67 WHERE venue = "princes park"###context:CREATE TABLE table_name_67 (home_team VARCHAR, venue VARCHAR)
###question:What date was Richmond the home team?###answer:SELECT date FROM table_name_17 WHERE home_team = "richmond"###context:CREATE TABLE table_name_17 (date VARCHAR, home_team VARCHAR)
###question:What was the largest crowd when Melbourne was the away team?###answer:SELECT MAX(crowd) FROM table_name_37 WHERE away_team = "melbourne"###context:CREATE TABLE table_name_37 (crowd INTEGER, away_team VARCHAR)
###question:Which gymnast had a balance beam larger than 8.687, had a total less than 38.049, had a floor exercise less than 9.462, and a vault less than 9.275?###answer:SELECT gymnast FROM table_name_91 WHERE balance_beam > 8.687 AND total < 38.049 AND floor_exercise < 9.462 AND vault < 9.275###context:CREATE TABLE ta...
###question:Which country is ranked 24?###answer:SELECT country FROM table_name_57 WHERE rank = "24"###context:CREATE TABLE table_name_57 (country VARCHAR, rank VARCHAR)
###question:Name the highest year with rank of 22 and accolade of singles of 1999###answer:SELECT MAX(year) FROM table_name_89 WHERE accolade = "singles of 1999" AND rank = "22"###context:CREATE TABLE table_name_89 (year INTEGER, accolade VARCHAR, rank VARCHAR)
###question:What is the largest Grid with a Driver of piers courage?###answer:SELECT MAX(grid) FROM table_name_31 WHERE driver = "piers courage"###context:CREATE TABLE table_name_31 (grid INTEGER, driver VARCHAR)
###question:Name the winner for majorca###answer:SELECT winner FROM table_name_50 WHERE tournament = "majorca"###context:CREATE TABLE table_name_50 (winner VARCHAR, tournament VARCHAR)
###question:Name the third place for anders jΓ€rryd###answer:SELECT third_place FROM table_name_75 WHERE runner_up = "anders jΓ€rryd"###context:CREATE TABLE table_name_75 (third_place VARCHAR, runner_up VARCHAR)
###question:Name the score for henri leconte and runner-up of michael stich###answer:SELECT score FROM table_name_85 WHERE third_place = "henri leconte" AND runner_up = "michael stich"###context:CREATE TABLE table_name_85 (score VARCHAR, third_place VARCHAR, runner_up VARCHAR)
###question:Name the winner for london tournament###answer:SELECT winner FROM table_name_93 WHERE tournament = "london"###context:CREATE TABLE table_name_93 (winner VARCHAR, tournament VARCHAR)
###question:Tell me the runner-up for majorca###answer:SELECT runner_up FROM table_name_30 WHERE tournament = "majorca"###context:CREATE TABLE table_name_30 (runner_up VARCHAR, tournament VARCHAR)
###question:How many laps did BRM have with a grid of 11?###answer:SELECT COUNT(laps) FROM table_name_33 WHERE constructor = "brm" AND grid = 11###context:CREATE TABLE table_name_33 (laps VARCHAR, constructor VARCHAR, grid VARCHAR)
###question:What's the total grid of Bruce Mclaren?###answer:SELECT COUNT(grid) FROM table_name_79 WHERE driver = "bruce mclaren"###context:CREATE TABLE table_name_79 (grid VARCHAR, driver VARCHAR)
###question:What's the least amount of laps that George Eaton completed that has a time/retired engine and a grid larger than 8?###answer:SELECT MIN(laps) FROM table_name_20 WHERE time_retired = "engine" AND grid > 8 AND driver = "george eaton"###context:CREATE TABLE table_name_20 (laps INTEGER, driver VARCHAR, time_re...
###question:Who was the home team on 1 April 2008?###answer:SELECT home FROM table_name_52 WHERE date = "1 april 2008"###context:CREATE TABLE table_name_52 (home VARCHAR, date VARCHAR)
###question:What was the record on 6 April 2008?###answer:SELECT record FROM table_name_20 WHERE date = "6 april 2008"###context:CREATE TABLE table_name_20 (record VARCHAR, date VARCHAR)
###question:Tell me the Grantee for san ysidro###answer:SELECT grantee FROM table_name_34 WHERE concession = "san ysidro"###context:CREATE TABLE table_name_34 (grantee VARCHAR, concession VARCHAR)
###question:Tell me the county for mariano castro###answer:SELECT county FROM table_name_48 WHERE grantee = "mariano castro"###context:CREATE TABLE table_name_48 (county VARCHAR, grantee VARCHAR)
###question:Tell me the grantee for las pulgas in 1795###answer:SELECT grantee FROM table_name_6 WHERE date = 1795 AND concession = "las pulgas"###context:CREATE TABLE table_name_6 (grantee VARCHAR, date VARCHAR, concession VARCHAR)
###question:A round of 4 is in what position?###answer:SELECT position FROM table_name_38 WHERE round = 4###context:CREATE TABLE table_name_38 (position VARCHAR, round VARCHAR)
###question:What Club team with a Round larger than 5 have a defense position?###answer:SELECT club_team FROM table_name_9 WHERE round > 5 AND position = "defense"###context:CREATE TABLE table_name_9 (club_team VARCHAR, round VARCHAR, position VARCHAR)
###question:What Player Club Team is Indiana Ice (ushl)?###answer:SELECT player FROM table_name_10 WHERE club_team = "indiana ice (ushl)"###context:CREATE TABLE table_name_10 (player VARCHAR, club_team VARCHAR)
###question:What is the Nationality Club Team of Quebec remparts (qmjhl)?###answer:SELECT nationality FROM table_name_53 WHERE club_team = "quebec remparts (qmjhl)"###context:CREATE TABLE table_name_53 (nationality VARCHAR, club_team VARCHAR)
###question:The Position of Centre is what Player?###answer:SELECT player FROM table_name_4 WHERE position = "centre"###context:CREATE TABLE table_name_4 (player VARCHAR, position VARCHAR)
###question:What is the Overall of 15 Club team with a Nationality of Canada?###answer:SELECT club_team FROM table_name_37 WHERE nationality = "canada" AND overall = "15"###context:CREATE TABLE table_name_37 (club_team VARCHAR, nationality VARCHAR, overall VARCHAR)
###question:What are the additional major sponsors which correspond to the additional color black and a year 1984?###answer:SELECT additional_major_sponsor_s_ FROM table_name_58 WHERE additional_colour_s_ = "black" AND year = 1984###context:CREATE TABLE table_name_58 (additional_major_sponsor_s_ VARCHAR, additional_col...
###question:What is the average year of entries with additional color black?###answer:SELECT AVG(year) FROM table_name_9 WHERE additional_colour_s_ = "black"###context:CREATE TABLE table_name_9 (year INTEGER, additional_colour_s_ VARCHAR)
###question:What is the Time/Retired for Grid 6?###answer:SELECT time_retired FROM table_name_4 WHERE grid = 6###context:CREATE TABLE table_name_4 (time_retired VARCHAR, grid VARCHAR)
###question:What is the lowest Laps for mike spence, with a Grid smaller than 8?###answer:SELECT MIN(laps) FROM table_name_36 WHERE driver = "mike spence" AND grid < 8###context:CREATE TABLE table_name_36 (laps INTEGER, driver VARCHAR, grid VARCHAR)
###question:how many laps have a time/retired of +1 lap and mark blundell is the driver?###answer:SELECT AVG(laps) FROM table_name_85 WHERE time_retired = "+1 lap" AND driver = "mark blundell"###context:CREATE TABLE table_name_85 (laps INTEGER, time_retired VARCHAR, driver VARCHAR)
###question:what is the highest grid when the time/retired is fuel pump and the laps is more than 26?###answer:SELECT MAX(grid) FROM table_name_95 WHERE time_retired = "fuel pump" AND laps > 26###context:CREATE TABLE table_name_95 (grid INTEGER, time_retired VARCHAR, laps VARCHAR)
###question:what is the least laps for driver gerhard berger with a grid more than 6?###answer:SELECT MIN(laps) FROM table_name_35 WHERE driver = "gerhard berger" AND grid > 6###context:CREATE TABLE table_name_35 (laps INTEGER, driver VARCHAR, grid VARCHAR)
###question:What is the Kapampangan word for the Malay word aku?###answer:SELECT kapampangan FROM table_name_8 WHERE malay = "aku"###context:CREATE TABLE table_name_8 (kapampangan VARCHAR, malay VARCHAR)
###question:What is the Lundu (Salako) word for the Siburan-Pandawan word Δ›ku?###answer:SELECT lundu__salako_ FROM table_name_36 WHERE siburan_padawan = "Δ›ku"###context:CREATE TABLE table_name_36 (lundu__salako_ VARCHAR, siburan_padawan VARCHAR)
###question:What is the Lundu (Salako) word for the Tagalog word pagkain?###answer:SELECT lundu__salako_ FROM table_name_65 WHERE tagalog = "pagkain"###context:CREATE TABLE table_name_65 (lundu__salako_ VARCHAR, tagalog VARCHAR)
###question:What is the Siburan-Padawan word for the Tagalog word kanin?###answer:SELECT siburan_padawan FROM table_name_98 WHERE tagalog = "kanin"###context:CREATE TABLE table_name_98 (siburan_padawan VARCHAR, tagalog VARCHAR)
###question:What were the total games in the Big Ten conference when Nebraska lost fewer than 488 games and had a Pct less than 0.7014?###answer:SELECT SUM(total_games) FROM table_name_68 WHERE conference = "big ten" AND lost < 488 AND team = "nebraska" AND pct < 0.7014###context:CREATE TABLE table_name_68 (total_games...
###question:What is Akron's highest Pct in 100 years?###answer:SELECT COUNT(pct) FROM table_name_5 WHERE years > 100 AND team = "akron"###context:CREATE TABLE table_name_5 (pct VARCHAR, years VARCHAR, team VARCHAR)
###question:How many people attended the game at Lake Oval?###answer:SELECT SUM(crowd) FROM table_name_42 WHERE venue = "lake oval"###context:CREATE TABLE table_name_42 (crowd INTEGER, venue VARCHAR)
###question:What was the away score at the Princes Park game?###answer:SELECT away_team AS score FROM table_name_28 WHERE venue = "princes park"###context:CREATE TABLE table_name_28 (away_team VARCHAR, venue VARCHAR)
###question:What was the home score at the Princes Park game?###answer:SELECT home_team AS score FROM table_name_95 WHERE venue = "princes park"###context:CREATE TABLE table_name_95 (home_team VARCHAR, venue VARCHAR)
###question:What is the total number of stations with a line that is u 6?###answer:SELECT SUM(stations) FROM table_name_86 WHERE line = "u 6"###context:CREATE TABLE table_name_86 (stations INTEGER, line VARCHAR)
###question:Which route has 21 stations?###answer:SELECT route FROM table_name_31 WHERE stations = 21###context:CREATE TABLE table_name_31 (route VARCHAR, stations VARCHAR)
###question:Which line was green?###answer:SELECT line FROM table_name_95 WHERE colour = "green"###context:CREATE TABLE table_name_95 (line VARCHAR, colour VARCHAR)
###question:What was the away team that played against Melbourne?###answer:SELECT away_team FROM table_name_96 WHERE home_team = "melbourne"###context:CREATE TABLE table_name_96 (away_team VARCHAR, home_team VARCHAR)
###question:Who was the opponent when the score was 6–4, 6–7 (2–7) , 7–5?###answer:SELECT opponent FROM table_name_53 WHERE score = "6–4, 6–7 (2–7) , 7–5"###context:CREATE TABLE table_name_53 (opponent VARCHAR, score VARCHAR)
###question:Which tournament was andreas haider-maurer the opponent in?###answer:SELECT tournament FROM table_name_94 WHERE opponent = "andreas haider-maurer"###context:CREATE TABLE table_name_94 (tournament VARCHAR, opponent VARCHAR)
###question:How many people have a vl type in a region greater than 3?###answer:SELECT SUM(population) FROM table_name_49 WHERE type = "vl" AND region > 3###context:CREATE TABLE table_name_49 (population INTEGER, type VARCHAR, region VARCHAR)
###question:How many people are in regions greater than 3?###answer:SELECT SUM(population) FROM table_name_18 WHERE region > 3###context:CREATE TABLE table_name_18 (population INTEGER, region INTEGER)
###question:What is the average region that has an Area (km 2 ) of 451.79, and a Population under 496,257?###answer:SELECT AVG(region) FROM table_name_43 WHERE area__km_2__ = 451.79 AND population < 496 OFFSET 257###context:CREATE TABLE table_name_43 (region INTEGER, area__km_2__ VARCHAR, population VARCHAR)
###question:What is the attendance on location for a record of 40–40?###answer:SELECT location_attendance FROM table_name_67 WHERE record = "40–40"###context:CREATE TABLE table_name_67 (location_attendance VARCHAR, record VARCHAR)
###question:Who had the high assist in a game number above 77 for Milwaukee?###answer:SELECT high_assists FROM table_name_24 WHERE game > 77 AND team = "milwaukee"###context:CREATE TABLE table_name_24 (high_assists VARCHAR, game VARCHAR, team VARCHAR)
###question:Who had the high assists in game 77?###answer:SELECT high_assists FROM table_name_3 WHERE game = 77###context:CREATE TABLE table_name_3 (high_assists VARCHAR, game VARCHAR)
###question:I want the time/retired for Grid of 13###answer:SELECT time_retired FROM table_name_59 WHERE grid = 13###context:CREATE TABLE table_name_59 (time_retired VARCHAR, grid VARCHAR)
###question:Tell me the highest Grid for Maurice Trintignant and laps less than 87###answer:SELECT MAX(grid) FROM table_name_14 WHERE driver = "maurice trintignant" AND laps < 87###context:CREATE TABLE table_name_14 (grid INTEGER, driver VARCHAR, laps VARCHAR)
###question:I want the lowest Laps for time/retired of engine and driver of charles de tornaco###answer:SELECT MIN(laps) FROM table_name_22 WHERE time_retired = "engine" AND driver = "charles de tornaco"###context:CREATE TABLE table_name_22 (laps INTEGER, time_retired VARCHAR, driver VARCHAR)
###question:In May 2010, which party had a turnout of less than 3, but also the hightest turnout in May 2012?###answer:SELECT MAX(may_2012) FROM table_name_26 WHERE may_2010 < 3###context:CREATE TABLE table_name_26 (may_2012 INTEGER, may_2010 INTEGER)
###question:I want the location for round of 3 and time of 4:40###answer:SELECT location FROM table_name_4 WHERE round = 3 AND time = "4:40"###context:CREATE TABLE table_name_4 (location VARCHAR, round VARCHAR, time VARCHAR)
###question:How many people were in attendance for the game with a score of 98–111?###answer:SELECT SUM(attendance) FROM table_name_12 WHERE score = "98–111"###context:CREATE TABLE table_name_12 (attendance INTEGER, score VARCHAR)
###question:What is the record of the game with a score of 101–92?###answer:SELECT record FROM table_name_29 WHERE score = "101–92"###context:CREATE TABLE table_name_29 (record VARCHAR, score VARCHAR)
###question:What is the date when the Lakers were the home team?###answer:SELECT date FROM table_name_1 WHERE home = "lakers"###context:CREATE TABLE table_name_1 (date VARCHAR, home VARCHAR)
###question:How many people were in attendance when the home shows as Bulls?###answer:SELECT COUNT(attendance) FROM table_name_89 WHERE home = "bulls"###context:CREATE TABLE table_name_89 (attendance VARCHAR, home VARCHAR)
###question:What is the lowest number of people in attendance when the record was 9–26?###answer:SELECT MIN(attendance) FROM table_name_7 WHERE record = "9–26"###context:CREATE TABLE table_name_7 (attendance INTEGER, record VARCHAR)
###question:What is the name of the First Class Team in which the player has a bowling style of left arm orthodox spin?###answer:SELECT first_class_team FROM table_name_15 WHERE bowling_style = "left arm orthodox spin"###context:CREATE TABLE table_name_15 (first_class_team VARCHAR, bowling_style VARCHAR)
###question:What is the bowling style of the player whose first class team is Islamabad and has a date of birth of 28 February 1975?###answer:SELECT bowling_style FROM table_name_72 WHERE first_class_team = "islamabad" AND date_of_birth = "28 february 1975"###context:CREATE TABLE table_name_72 (bowling_style VARCHAR, f...
###question:What batting style does player Shahid Afridi have?###answer:SELECT batting_style FROM table_name_88 WHERE player = "shahid afridi"###context:CREATE TABLE table_name_88 (batting_style VARCHAR, player VARCHAR)
###question:Who was the away team at Victoria Park?###answer:SELECT away_team FROM table_name_85 WHERE venue = "victoria park"###context:CREATE TABLE table_name_85 (away_team VARCHAR, venue VARCHAR)
###question:What was the crowd size when Geelong played at home?###answer:SELECT AVG(crowd) FROM table_name_58 WHERE home_team = "geelong"###context:CREATE TABLE table_name_58 (crowd INTEGER, home_team VARCHAR)
###question:What was the home score for the Home team Melbourne?###answer:SELECT home_team AS score FROM table_name_63 WHERE home_team = "melbourne"###context:CREATE TABLE table_name_63 (home_team VARCHAR)
###question:Which studio analyst has Scott Oake for the ice level reporter?###answer:SELECT studio_analysts FROM table_name_52 WHERE ice_level_reporters = "scott oake"###context:CREATE TABLE table_name_52 (studio_analysts VARCHAR, ice_level_reporters VARCHAR)
###question:Which ice level reporter has Harry Neale for the colour commentator after the year 2004?###answer:SELECT ice_level_reporters FROM table_name_92 WHERE colour_commentator_s_ = "harry neale" AND year > 2004###context:CREATE TABLE table_name_92 (ice_level_reporters VARCHAR, colour_commentator_s_ VARCHAR, year V...
###question:How long was his fight against kim kyoung-suk?###answer:SELECT time FROM table_name_27 WHERE opponent = "kim kyoung-suk"###context:CREATE TABLE table_name_27 (time VARCHAR, opponent VARCHAR)
###question:What was the score for the away team at Collingwood?###answer:SELECT home_team AS score FROM table_name_75 WHERE away_team = "collingwood"###context:CREATE TABLE table_name_75 (home_team VARCHAR, away_team VARCHAR)
###question:Who is the home team of South Melbourne?###answer:SELECT away_team FROM table_name_12 WHERE home_team = "south melbourne"###context:CREATE TABLE table_name_12 (away_team VARCHAR, home_team VARCHAR)
###question:Who built michael schumacher's car that went under 31 laps?###answer:SELECT constructor FROM table_name_24 WHERE laps < 31 AND driver = "michael schumacher"###context:CREATE TABLE table_name_24 (constructor VARCHAR, laps VARCHAR, driver VARCHAR)
###question:How many grids for heinz-harald frentzen with 61 laps?###answer:SELECT COUNT(grid) FROM table_name_12 WHERE laps = 61 AND driver = "heinz-harald frentzen"###context:CREATE TABLE table_name_12 (grid VARCHAR, laps VARCHAR, driver VARCHAR)
###question:What did the home team score at Lake Oval?###answer:SELECT home_team AS score FROM table_name_2 WHERE venue = "lake oval"###context:CREATE TABLE table_name_2 (home_team VARCHAR, venue VARCHAR)
###question:What did Footscray score at the home game?###answer:SELECT home_team AS score FROM table_name_23 WHERE home_team = "footscray"###context:CREATE TABLE table_name_23 (home_team VARCHAR)
###question:What did Essendon score as the Away team?###answer:SELECT away_team AS score FROM table_name_7 WHERE away_team = "essendon"###context:CREATE TABLE table_name_7 (away_team VARCHAR)
###question:Name the Trofeo Fast team for roberto visentini###answer:SELECT trofeo_fast_team FROM table_name_58 WHERE winner = "roberto visentini"###context:CREATE TABLE table_name_58 (trofeo_fast_team VARCHAR, winner VARCHAR)
###question:Name the young rider classification for giuseppe saronni at stage 6###answer:SELECT young_rider_classification FROM table_name_16 WHERE general_classification = "giuseppe saronni" AND stage = "6"###context:CREATE TABLE table_name_16 (young_rider_classification VARCHAR, general_classification VARCHAR, stage ...