text
stringlengths
150
1.06k
source
dict
### QUESTION When is the Competition of friendly match with a Result of 2–1? ### CONTEXT CREATE TABLE table_name_47 (date VARCHAR, competition VARCHAR, result VARCHAR) ### ANSWER SELECT date FROM table_name_47 WHERE competition = "friendly match" AND result = "2–1"</s>
{ "answer": "SELECT date FROM table_name_47 WHERE competition = \"friendly match\" AND result = \"2–1\"", "context": "CREATE TABLE table_name_47 (date VARCHAR, competition VARCHAR, result VARCHAR)", "question": "When is the Competition of friendly match with a Result of 2–1?" }
### QUESTION Which Constructor has a Grid smaller than 24, more than 77 laps, and a Driver of jean-pierre beltoise? ### CONTEXT CREATE TABLE table_name_53 (constructor VARCHAR, driver VARCHAR, grid VARCHAR, laps VARCHAR) ### ANSWER SELECT constructor FROM table_name_53 WHERE grid < 24 AND laps > 77 AND driver = "jean-pierre beltoise"</s>
{ "answer": "SELECT constructor FROM table_name_53 WHERE grid < 24 AND laps > 77 AND driver = \"jean-pierre beltoise\"", "context": "CREATE TABLE table_name_53 (constructor VARCHAR, driver VARCHAR, grid VARCHAR, laps VARCHAR)", "question": "Which Constructor has a Grid smaller than 24, more than 77 laps, and a Driver of jean-pierre beltoise?" }
### QUESTION Who drove the maserati under 18 laps with an oil leak that had a grid of under 14? ### CONTEXT CREATE TABLE table_name_34 (driver VARCHAR, time_retired VARCHAR, grid VARCHAR, constructor VARCHAR, laps VARCHAR) ### ANSWER SELECT driver FROM table_name_34 WHERE constructor = "maserati" AND laps < 18 AND grid < 14 AND time_retired = "oil leak"</s>
{ "answer": "SELECT driver FROM table_name_34 WHERE constructor = \"maserati\" AND laps < 18 AND grid < 14 AND time_retired = \"oil leak\"", "context": "CREATE TABLE table_name_34 (driver VARCHAR, time_retired VARCHAR, grid VARCHAR, constructor VARCHAR, laps VARCHAR)", "question": "Who drove the maserati under 18 laps with an oil leak that had a grid of under 14?" }
### QUESTION Which HAAT has a Channels TV / RF of 31 (psip) 44 (uhf) ### CONTEXT CREATE TABLE table_name_17 (haat VARCHAR, channels_tv___rf VARCHAR) ### ANSWER SELECT haat FROM table_name_17 WHERE channels_tv___rf = "31 (psip) 44 (uhf)"</s>
{ "answer": "SELECT haat FROM table_name_17 WHERE channels_tv___rf = \"31 (psip) 44 (uhf)\"", "context": "CREATE TABLE table_name_17 (haat VARCHAR, channels_tv___rf VARCHAR)", "question": "Which HAAT has a Channels TV / RF of 31 (psip) 44 (uhf)" }
### QUESTION Who was the winner with a mountain stage type on 22 May? ### CONTEXT CREATE TABLE table_name_81 (winner VARCHAR, type VARCHAR, date VARCHAR) ### ANSWER SELECT winner FROM table_name_81 WHERE type = "mountain stage" AND date = "22 may"</s>
{ "answer": "SELECT winner FROM table_name_81 WHERE type = \"mountain stage\" AND date = \"22 may\"", "context": "CREATE TABLE table_name_81 (winner VARCHAR, type VARCHAR, date VARCHAR)", "question": "Who was the winner with a mountain stage type on 22 May?" }
### QUESTION What is the pick number of Jesse Alexander? ### CONTEXT CREATE TABLE table_name_39 (pick__number INTEGER, player VARCHAR) ### ANSWER SELECT MIN(pick__number) FROM table_name_39 WHERE player = "jesse alexander"</s>
{ "answer": "SELECT MIN(pick__number) FROM table_name_39 WHERE player = \"jesse alexander\"", "context": "CREATE TABLE table_name_39 (pick__number INTEGER, player VARCHAR)", "question": "What is the pick number of Jesse Alexander?" }
### QUESTION Which City of license has a Channels TV / RF of 36 (psip) 36 (uhf)? Question 5 ### CONTEXT CREATE TABLE table_name_3 (city_of_license VARCHAR, channels_tv___rf VARCHAR) ### ANSWER SELECT city_of_license FROM table_name_3 WHERE channels_tv___rf = "36 (psip) 36 (uhf)"</s>
{ "answer": "SELECT city_of_license FROM table_name_3 WHERE channels_tv___rf = \"36 (psip) 36 (uhf)\"", "context": "CREATE TABLE table_name_3 (city_of_license VARCHAR, channels_tv___rf VARCHAR)", "question": "Which City of license has a Channels TV / RF of 36 (psip) 36 (uhf)? Question 5" }
### QUESTION Which title aired on 18 dec 2006- 10 feb 2007? ### CONTEXT CREATE TABLE table_name_67 (english_title__chinese_title_ VARCHAR, airing_date VARCHAR) ### ANSWER SELECT english_title__chinese_title_ FROM table_name_67 WHERE airing_date = "18 dec 2006- 10 feb 2007"</s>
{ "answer": "SELECT english_title__chinese_title_ FROM table_name_67 WHERE airing_date = \"18 dec 2006- 10 feb 2007\"", "context": "CREATE TABLE table_name_67 (english_title__chinese_title_ VARCHAR, airing_date VARCHAR)", "question": "Which title aired on 18 dec 2006- 10 feb 2007?" }
### QUESTION What is the date for Hydra Head Records with a CD format? ### CONTEXT CREATE TABLE table_name_21 (date VARCHAR, label VARCHAR, format VARCHAR) ### ANSWER SELECT date FROM table_name_21 WHERE label = "hydra head records" AND format = "cd"</s>
{ "answer": "SELECT date FROM table_name_21 WHERE label = \"hydra head records\" AND format = \"cd\"", "context": "CREATE TABLE table_name_21 (date VARCHAR, label VARCHAR, format VARCHAR)", "question": "What is the date for Hydra Head Records with a CD format?" }
### QUESTION I want the displacement for version of db ### CONTEXT CREATE TABLE table_name_28 (displacement VARCHAR, version VARCHAR) ### ANSWER SELECT displacement FROM table_name_28 WHERE version = "db"</s>
{ "answer": "SELECT displacement FROM table_name_28 WHERE version = \"db\"", "context": "CREATE TABLE table_name_28 (displacement VARCHAR, version VARCHAR)", "question": "I want the displacement for version of db" }
### QUESTION After 1979, where was the European Indoor Championships held? ### CONTEXT CREATE TABLE table_name_27 (venue VARCHAR, competition VARCHAR, year VARCHAR) ### ANSWER SELECT venue FROM table_name_27 WHERE competition = "european indoor championships" AND year > 1979</s>
{ "answer": "SELECT venue FROM table_name_27 WHERE competition = \"european indoor championships\" AND year > 1979", "context": "CREATE TABLE table_name_27 (venue VARCHAR, competition VARCHAR, year VARCHAR)", "question": "After 1979, where was the European Indoor Championships held?" }
### QUESTION Before 1979, what position was the European Indoor Championships? ### CONTEXT CREATE TABLE table_name_78 (position VARCHAR, competition VARCHAR, year VARCHAR) ### ANSWER SELECT position FROM table_name_78 WHERE competition = "european indoor championships" AND year < 1979</s>
{ "answer": "SELECT position FROM table_name_78 WHERE competition = \"european indoor championships\" AND year < 1979", "context": "CREATE TABLE table_name_78 (position VARCHAR, competition VARCHAR, year VARCHAR)", "question": "Before 1979, what position was the European Indoor Championships?" }
### QUESTION What's the highest Played with a Scored of 15, and Draws that's less than 1? ### CONTEXT CREATE TABLE table_name_80 (played INTEGER, scored VARCHAR, draws VARCHAR) ### ANSWER SELECT MAX(played) FROM table_name_80 WHERE scored = 15 AND draws < 1</s>
{ "answer": "SELECT MAX(played) FROM table_name_80 WHERE scored = 15 AND draws < 1", "context": "CREATE TABLE table_name_80 (played INTEGER, scored VARCHAR, draws VARCHAR)", "question": "What's the highest Played with a Scored of 15, and Draws that's less than 1?" }
### QUESTION Which year was the film Rang Barse introduced? ### CONTEXT CREATE TABLE table_name_63 (year VARCHAR, film_name VARCHAR) ### ANSWER SELECT COUNT(year) FROM table_name_63 WHERE film_name = "rang barse"</s>
{ "answer": "SELECT COUNT(year) FROM table_name_63 WHERE film_name = \"rang barse\"", "context": "CREATE TABLE table_name_63 (year VARCHAR, film_name VARCHAR)", "question": "Which year was the film Rang Barse introduced?" }
### QUESTION What is the production code of the episode written by Gary Sturgis that is bigger than season number 23 and smaller than series number 126? ### CONTEXT CREATE TABLE table_name_75 (production_code VARCHAR, written_by VARCHAR, season__number VARCHAR, series__number VARCHAR) ### ANSWER SELECT production_code FROM table_name_75 WHERE season__number > 23 AND series__number < 126 AND written_by = "gary sturgis"</s>
{ "answer": "SELECT production_code FROM table_name_75 WHERE season__number > 23 AND series__number < 126 AND written_by = \"gary sturgis\"", "context": "CREATE TABLE table_name_75 (production_code VARCHAR, written_by VARCHAR, season__number VARCHAR, series__number VARCHAR)", "question": "What is the production code of the episode written by Gary Sturgis that is bigger than season number 23 and smaller than series number 126?" }
### QUESTION With the score of 6–3, 2–6, [10–8] and played on clay who was the opponent? ### CONTEXT CREATE TABLE table_name_69 (opponent VARCHAR, surface VARCHAR, score VARCHAR) ### ANSWER SELECT opponent FROM table_name_69 WHERE surface = "clay" AND score = "6–3, 2–6, [10–8]"</s>
{ "answer": "SELECT opponent FROM table_name_69 WHERE surface = \"clay\" AND score = \"6–3, 2–6, [10–8]\"", "context": "CREATE TABLE table_name_69 (opponent VARCHAR, surface VARCHAR, score VARCHAR)", "question": "With the score of 6–3, 2–6, [10–8] and played on clay who was the opponent?" }
### QUESTION Tell me the constructor for Grid more than 4 and drivers being heinz-harald frentzen ### CONTEXT CREATE TABLE table_name_57 (constructor VARCHAR, grid VARCHAR, driver VARCHAR) ### ANSWER SELECT constructor FROM table_name_57 WHERE grid > 4 AND driver = "heinz-harald frentzen"</s>
{ "answer": "SELECT constructor FROM table_name_57 WHERE grid > 4 AND driver = \"heinz-harald frentzen\"", "context": "CREATE TABLE table_name_57 (constructor VARCHAR, grid VARCHAR, driver VARCHAR)", "question": "Tell me the constructor for Grid more than 4 and drivers being heinz-harald frentzen" }
### QUESTION What building is in Shenzhen, have less than 115 floors, and was completed before 2017? ### CONTEXT CREATE TABLE table_name_79 (name VARCHAR, floors VARCHAR, city VARCHAR, completion VARCHAR) ### ANSWER SELECT name FROM table_name_79 WHERE city = "shenzhen" AND completion < 2017 AND floors < 115</s>
{ "answer": "SELECT name FROM table_name_79 WHERE city = \"shenzhen\" AND completion < 2017 AND floors < 115", "context": "CREATE TABLE table_name_79 (name VARCHAR, floors VARCHAR, city VARCHAR, completion VARCHAR)", "question": "What building is in Shenzhen, have less than 115 floors, and was completed before 2017?" }
### QUESTION What is the code for Saint-Damien in Matawinie with a type p? ### CONTEXT CREATE TABLE table_name_35 (code INTEGER, name VARCHAR, regional_county_municipality VARCHAR, type VARCHAR) ### ANSWER SELECT AVG(code) FROM table_name_35 WHERE regional_county_municipality = "matawinie" AND type = "p" AND name = "saint-damien"</s>
{ "answer": "SELECT AVG(code) FROM table_name_35 WHERE regional_county_municipality = \"matawinie\" AND type = \"p\" AND name = \"saint-damien\"", "context": "CREATE TABLE table_name_35 (code INTEGER, name VARCHAR, regional_county_municipality VARCHAR, type VARCHAR)", "question": "What is the code for Saint-Damien in Matawinie with a type p?" }
### QUESTION Which Purpose has an Elevation + Height of 0 + metres (ft), a Location of bikini, namu (charlie), and a Yield of 220 kt? ### CONTEXT CREATE TABLE table_name_37 (purpose VARCHAR, yield VARCHAR, location VARCHAR, elevation_ VARCHAR, _height VARCHAR) ### ANSWER SELECT purpose FROM table_name_37 WHERE elevation_ + _height = "0 + metres (ft)" AND location = "bikini, namu (charlie)" AND yield = "220 kt"</s>
{ "answer": "SELECT purpose FROM table_name_37 WHERE elevation_ + _height = \"0 + metres (ft)\" AND location = \"bikini, namu (charlie)\" AND yield = \"220 kt\"", "context": "CREATE TABLE table_name_37 (purpose VARCHAR, yield VARCHAR, location VARCHAR, elevation_ VARCHAR, _height VARCHAR)", "question": "Which Purpose has an Elevation + Height of 0 + metres (ft), a Location of bikini, namu (charlie), and a Yield of 220 kt?" }
### QUESTION Who was the colour commmentator that broadcasted along with the Play-by-play of bob cole? ### CONTEXT CREATE TABLE table_name_1 (colour_commentator_s_ VARCHAR, play_by_play VARCHAR) ### ANSWER SELECT colour_commentator_s_ FROM table_name_1 WHERE play_by_play = "bob cole"</s>
{ "answer": "SELECT colour_commentator_s_ FROM table_name_1 WHERE play_by_play = \"bob cole\"", "context": "CREATE TABLE table_name_1 (colour_commentator_s_ VARCHAR, play_by_play VARCHAR)", "question": "Who was the colour commmentator that broadcasted along with the Play-by-play of bob cole?" }
### QUESTION Which Score has a Game larger than 7, and Points smaller than 14? ### CONTEXT CREATE TABLE table_name_17 (score VARCHAR, game VARCHAR, points VARCHAR) ### ANSWER SELECT score FROM table_name_17 WHERE game > 7 AND points < 14</s>
{ "answer": "SELECT score FROM table_name_17 WHERE game > 7 AND points < 14", "context": "CREATE TABLE table_name_17 (score VARCHAR, game VARCHAR, points VARCHAR)", "question": "Which Score has a Game larger than 7, and Points smaller than 14?" }
### QUESTION What is the mean number of events where the rank is 1 and there are more than 3 wins? ### CONTEXT CREATE TABLE table_name_50 (events INTEGER, rank VARCHAR, wins VARCHAR) ### ANSWER SELECT AVG(events) FROM table_name_50 WHERE rank = 1 AND wins > 3</s>
{ "answer": "SELECT AVG(events) FROM table_name_50 WHERE rank = 1 AND wins > 3", "context": "CREATE TABLE table_name_50 (events INTEGER, rank VARCHAR, wins VARCHAR)", "question": "What is the mean number of events where the rank is 1 and there are more than 3 wins?" }
### QUESTION Which Recopa 1994 has a Supercopa 1994 of 1st round, and a Team of argentinos juniors? ### CONTEXT CREATE TABLE table_name_54 (recopa_1994 VARCHAR, supercopa_1994 VARCHAR, team VARCHAR) ### ANSWER SELECT recopa_1994 FROM table_name_54 WHERE supercopa_1994 = "1st round" AND team = "argentinos juniors"</s>
{ "answer": "SELECT recopa_1994 FROM table_name_54 WHERE supercopa_1994 = \"1st round\" AND team = \"argentinos juniors\"", "context": "CREATE TABLE table_name_54 (recopa_1994 VARCHAR, supercopa_1994 VARCHAR, team VARCHAR)", "question": "Which Recopa 1994 has a Supercopa 1994 of 1st round, and a Team of argentinos juniors?" }
### QUESTION What state was maria cantwell born in after 1955? ### CONTEXT CREATE TABLE table_name_50 (state VARCHAR, born VARCHAR, name VARCHAR) ### ANSWER SELECT state FROM table_name_50 WHERE born > 1955 AND name = "maria cantwell"</s>
{ "answer": "SELECT state FROM table_name_50 WHERE born > 1955 AND name = \"maria cantwell\"", "context": "CREATE TABLE table_name_50 (state VARCHAR, born VARCHAR, name VARCHAR)", "question": "What state was maria cantwell born in after 1955?" }
### QUESTION Which person has an expiring term of December 31, 2020, and has Terry Branstad as the appointing governor? ### CONTEXT CREATE TABLE table_name_8 (name VARCHAR, term_expires VARCHAR, appointing_governor VARCHAR) ### ANSWER SELECT name FROM table_name_8 WHERE term_expires = "december 31, 2020" AND appointing_governor = "terry branstad"</s>
{ "answer": "SELECT name FROM table_name_8 WHERE term_expires = \"december 31, 2020\" AND appointing_governor = \"terry branstad\"", "context": "CREATE TABLE table_name_8 (name VARCHAR, term_expires VARCHAR, appointing_governor VARCHAR)", "question": "Which person has an expiring term of December 31, 2020, and has Terry Branstad as the appointing governor?" }
### QUESTION Name the highest total for the tournament more than 0 and regular season after 8 ### CONTEXT CREATE TABLE table_name_15 (total INTEGER, tournament VARCHAR, regular_season VARCHAR) ### ANSWER SELECT MAX(total) FROM table_name_15 WHERE tournament > 0 AND regular_season > 8</s>
{ "answer": "SELECT MAX(total) FROM table_name_15 WHERE tournament > 0 AND regular_season > 8", "context": "CREATE TABLE table_name_15 (total INTEGER, tournament VARCHAR, regular_season VARCHAR)", "question": "Name the highest total for the tournament more than 0 and regular season after 8" }
### QUESTION What circuit did Juan Manuel Fangio have the fastest lap at the german grand prix? ### CONTEXT CREATE TABLE table_name_16 (circuit VARCHAR, fastest_lap VARCHAR, race VARCHAR) ### ANSWER SELECT circuit FROM table_name_16 WHERE fastest_lap = "juan manuel fangio" AND race = "german grand prix"</s>
{ "answer": "SELECT circuit FROM table_name_16 WHERE fastest_lap = \"juan manuel fangio\" AND race = \"german grand prix\"", "context": "CREATE TABLE table_name_16 (circuit VARCHAR, fastest_lap VARCHAR, race VARCHAR)", "question": "What circuit did Juan Manuel Fangio have the fastest lap at the german grand prix?" }
### QUESTION Who is the second when Mikkel Krause is the third? ### CONTEXT CREATE TABLE table_name_18 (second VARCHAR, third VARCHAR) ### ANSWER SELECT second FROM table_name_18 WHERE third = "mikkel krause"</s>
{ "answer": "SELECT second FROM table_name_18 WHERE third = \"mikkel krause\"", "context": "CREATE TABLE table_name_18 (second VARCHAR, third VARCHAR)", "question": "Who is the second when Mikkel Krause is the third?" }
### QUESTION Who is the Skip when Alasdair Guthrie is the third? ### CONTEXT CREATE TABLE table_name_83 (skip VARCHAR, third VARCHAR) ### ANSWER SELECT skip FROM table_name_83 WHERE third = "alasdair guthrie"</s>
{ "answer": "SELECT skip FROM table_name_83 WHERE third = \"alasdair guthrie\"", "context": "CREATE TABLE table_name_83 (skip VARCHAR, third VARCHAR)", "question": "Who is the Skip when Alasdair Guthrie is the third?" }
### QUESTION Who wins the clive churchill medal when the losing team is the sydney roosters in 2010? ### CONTEXT CREATE TABLE table_name_27 (clive_churchill_medal VARCHAR, losingteam VARCHAR, season VARCHAR) ### ANSWER SELECT clive_churchill_medal FROM table_name_27 WHERE losingteam = "sydney roosters" AND season = 2010</s>
{ "answer": "SELECT clive_churchill_medal FROM table_name_27 WHERE losingteam = \"sydney roosters\" AND season = 2010", "context": "CREATE TABLE table_name_27 (clive_churchill_medal VARCHAR, losingteam VARCHAR, season VARCHAR)", "question": "Who wins the clive churchill medal when the losing team is the sydney roosters in 2010?" }
### QUESTION What is the total attendance for Detroit on hasek? ### CONTEXT CREATE TABLE table_name_50 (attendance VARCHAR, home VARCHAR, decision VARCHAR) ### ANSWER SELECT COUNT(attendance) FROM table_name_50 WHERE home = "detroit" AND decision = "hasek"</s>
{ "answer": "SELECT COUNT(attendance) FROM table_name_50 WHERE home = \"detroit\" AND decision = \"hasek\"", "context": "CREATE TABLE table_name_50 (attendance VARCHAR, home VARCHAR, decision VARCHAR)", "question": "What is the total attendance for Detroit on hasek?" }
### QUESTION What is the score of a year less than 2008 with loss as the result, in Antalya and a Competition of europe/africa zone, group i, round robin? ### CONTEXT CREATE TABLE table_name_49 (score VARCHAR, competition VARCHAR, location VARCHAR, year VARCHAR, result VARCHAR) ### ANSWER SELECT score FROM table_name_49 WHERE year < 2008 AND result = "loss" AND location = "antalya" AND competition = "europe/africa zone, group i, round robin"</s>
{ "answer": "SELECT score FROM table_name_49 WHERE year < 2008 AND result = \"loss\" AND location = \"antalya\" AND competition = \"europe/africa zone, group i, round robin\"", "context": "CREATE TABLE table_name_49 (score VARCHAR, competition VARCHAR, location VARCHAR, year VARCHAR, result VARCHAR)", "question": "What is the score of a year less than 2008 with loss as the result, in Antalya and a Competition of europe/africa zone, group i, round robin?" }
### QUESTION What date was the Competition of europe/africa zone, group i, round robin, with a result of loss, in Antalya, and a Score of 1–2? ### CONTEXT CREATE TABLE table_name_19 (date VARCHAR, score VARCHAR, location VARCHAR, competition VARCHAR, result VARCHAR) ### ANSWER SELECT date FROM table_name_19 WHERE competition = "europe/africa zone, group i, round robin" AND result = "loss" AND location = "antalya" AND score = "1–2"</s>
{ "answer": "SELECT date FROM table_name_19 WHERE competition = \"europe/africa zone, group i, round robin\" AND result = \"loss\" AND location = \"antalya\" AND score = \"1–2\"", "context": "CREATE TABLE table_name_19 (date VARCHAR, score VARCHAR, location VARCHAR, competition VARCHAR, result VARCHAR)", "question": "What date was the Competition of europe/africa zone, group i, round robin, with a result of loss, in Antalya, and a Score of 1–2?" }
### QUESTION Where did Essendon play as the away team? ### CONTEXT CREATE TABLE table_name_69 (venue VARCHAR, away_team VARCHAR) ### ANSWER SELECT venue FROM table_name_69 WHERE away_team = "essendon"</s>
{ "answer": "SELECT venue FROM table_name_69 WHERE away_team = \"essendon\"", "context": "CREATE TABLE table_name_69 (venue VARCHAR, away_team VARCHAR)", "question": "Where did Essendon play as the away team?" }
### QUESTION What date was Montreal the visitor? ### CONTEXT CREATE TABLE table_name_50 (date VARCHAR, visitor VARCHAR) ### ANSWER SELECT date FROM table_name_50 WHERE visitor = "montreal"</s>
{ "answer": "SELECT date FROM table_name_50 WHERE visitor = \"montreal\"", "context": "CREATE TABLE table_name_50 (date VARCHAR, visitor VARCHAR)", "question": "What date was Montreal the visitor?" }
### QUESTION What is the preliminaries of the contestant with a swimsuit less than 8.948 and an interview of 8.997? ### CONTEXT CREATE TABLE table_name_99 (preliminaries VARCHAR, swimsuit VARCHAR, interview VARCHAR) ### ANSWER SELECT preliminaries FROM table_name_99 WHERE swimsuit < 8.948 AND interview = 8.997</s>
{ "answer": "SELECT preliminaries FROM table_name_99 WHERE swimsuit < 8.948 AND interview = 8.997", "context": "CREATE TABLE table_name_99 (preliminaries VARCHAR, swimsuit VARCHAR, interview VARCHAR)", "question": "What is the preliminaries of the contestant with a swimsuit less than 8.948 and an interview of 8.997?" }
### QUESTION What is the evening gown score of the contestant from the District of Columbia with preliminaries smaller than 8.647? ### CONTEXT CREATE TABLE table_name_79 (evening_gown VARCHAR, preliminaries VARCHAR, state VARCHAR) ### ANSWER SELECT COUNT(evening_gown) FROM table_name_79 WHERE preliminaries < 8.647 AND state = "district of columbia"</s>
{ "answer": "SELECT COUNT(evening_gown) FROM table_name_79 WHERE preliminaries < 8.647 AND state = \"district of columbia\"", "context": "CREATE TABLE table_name_79 (evening_gown VARCHAR, preliminaries VARCHAR, state VARCHAR)", "question": "What is the evening gown score of the contestant from the District of Columbia with preliminaries smaller than 8.647?" }
### QUESTION What is the Record with a Date with december 9? ### CONTEXT CREATE TABLE table_name_97 (record VARCHAR, date VARCHAR) ### ANSWER SELECT record FROM table_name_97 WHERE date = "december 9"</s>
{ "answer": "SELECT record FROM table_name_97 WHERE date = \"december 9\"", "context": "CREATE TABLE table_name_97 (record VARCHAR, date VARCHAR)", "question": "What is the Record with a Date with december 9?" }
### QUESTION What is the venue of teh carfax 250 race? ### CONTEXT CREATE TABLE table_name_62 (venue VARCHAR, race VARCHAR) ### ANSWER SELECT venue FROM table_name_62 WHERE race = "carfax 250"</s>
{ "answer": "SELECT venue FROM table_name_62 WHERE race = \"carfax 250\"", "context": "CREATE TABLE table_name_62 (venue VARCHAR, race VARCHAR)", "question": "What is the venue of teh carfax 250 race?" }
### QUESTION Which Mac OSX had no haiku and a client that was dc++? ### CONTEXT CREATE TABLE table_name_98 (mac_os_x VARCHAR, haiku VARCHAR, client VARCHAR) ### ANSWER SELECT mac_os_x FROM table_name_98 WHERE haiku = "no" AND client = "dc++"</s>
{ "answer": "SELECT mac_os_x FROM table_name_98 WHERE haiku = \"no\" AND client = \"dc++\"", "context": "CREATE TABLE table_name_98 (mac_os_x VARCHAR, haiku VARCHAR, client VARCHAR)", "question": "Which Mac OSX had no haiku and a client that was dc++?" }
### QUESTION What is the copa mercosur 1999 result for team grêmio, who did not qualify for the Copa Libertadores 1999 and Copa Conmebol 1999? ### CONTEXT CREATE TABLE table_name_51 (copa_mercosur_1999 VARCHAR, team VARCHAR, copa_libertadores_1999 VARCHAR, copa_conmebol_1999 VARCHAR) ### ANSWER SELECT copa_mercosur_1999 FROM table_name_51 WHERE copa_libertadores_1999 = "did not qualify" AND copa_conmebol_1999 = "did not qualify" AND team = "grêmio"</s>
{ "answer": "SELECT copa_mercosur_1999 FROM table_name_51 WHERE copa_libertadores_1999 = \"did not qualify\" AND copa_conmebol_1999 = \"did not qualify\" AND team = \"grêmio\"", "context": "CREATE TABLE table_name_51 (copa_mercosur_1999 VARCHAR, team VARCHAR, copa_libertadores_1999 VARCHAR, copa_conmebol_1999 VARCHAR)", "question": "What is the copa mercosur 1999 result for team grêmio, who did not qualify for the Copa Libertadores 1999 and Copa Conmebol 1999?" }
### QUESTION Which GNU/Linux had no haiku and a client of airdc++? ### CONTEXT CREATE TABLE table_name_60 (gnu_linux VARCHAR, haiku VARCHAR, client VARCHAR) ### ANSWER SELECT gnu_linux FROM table_name_60 WHERE haiku = "no" AND client = "airdc++"</s>
{ "answer": "SELECT gnu_linux FROM table_name_60 WHERE haiku = \"no\" AND client = \"airdc++\"", "context": "CREATE TABLE table_name_60 (gnu_linux VARCHAR, haiku VARCHAR, client VARCHAR)", "question": "Which GNU/Linux had no haiku and a client of airdc++?" }
### QUESTION How much has dave stockton earned? ### CONTEXT CREATE TABLE table_name_41 (earnings__ INTEGER, player VARCHAR) ### ANSWER SELECT MAX(earnings__) AS $__ FROM table_name_41 WHERE player = "dave stockton"</s>
{ "answer": "SELECT MAX(earnings__) AS $__ FROM table_name_41 WHERE player = \"dave stockton\"", "context": "CREATE TABLE table_name_41 (earnings__ INTEGER, player VARCHAR)", "question": "How much has dave stockton earned?" }
### QUESTION How many people attended the away league competition with a date of 22? ### CONTEXT CREATE TABLE table_name_61 (attendance VARCHAR, date VARCHAR, competition VARCHAR, venue VARCHAR) ### ANSWER SELECT attendance FROM table_name_61 WHERE competition = "league" AND venue = "away" AND date = 22</s>
{ "answer": "SELECT attendance FROM table_name_61 WHERE competition = \"league\" AND venue = \"away\" AND date = 22", "context": "CREATE TABLE table_name_61 (attendance VARCHAR, date VARCHAR, competition VARCHAR, venue VARCHAR)", "question": "How many people attended the away league competition with a date of 22?" }
### QUESTION Which Game has a Series of bruins lead 3–1? ### CONTEXT CREATE TABLE table_name_30 (game INTEGER, series VARCHAR) ### ANSWER SELECT SUM(game) FROM table_name_30 WHERE series = "bruins lead 3–1"</s>
{ "answer": "SELECT SUM(game) FROM table_name_30 WHERE series = \"bruins lead 3–1\"", "context": "CREATE TABLE table_name_30 (game INTEGER, series VARCHAR)", "question": "Which Game has a Series of bruins lead 3–1?" }
### QUESTION What is the Rank of industrial and commercial bank of china 277,236? ### CONTEXT CREATE TABLE table_name_1 (rank VARCHAR, first_quarter VARCHAR) ### ANSWER SELECT rank FROM table_name_1 WHERE first_quarter = "industrial and commercial bank of china 277,236"</s>
{ "answer": "SELECT rank FROM table_name_1 WHERE first_quarter = \"industrial and commercial bank of china 277,236\"", "context": "CREATE TABLE table_name_1 (rank VARCHAR, first_quarter VARCHAR)", "question": "What is the Rank of industrial and commercial bank of china 277,236?" }
### QUESTION What is the largest amount of wins that was before the 2007 season, as well as the Team being silverstone motorsport academy? ### CONTEXT CREATE TABLE table_name_92 (wins INTEGER, season VARCHAR, team VARCHAR) ### ANSWER SELECT MAX(wins) FROM table_name_92 WHERE season < 2007 AND team = "silverstone motorsport academy"</s>
{ "answer": "SELECT MAX(wins) FROM table_name_92 WHERE season < 2007 AND team = \"silverstone motorsport academy\"", "context": "CREATE TABLE table_name_92 (wins INTEGER, season VARCHAR, team VARCHAR)", "question": "What is the largest amount of wins that was before the 2007 season, as well as the Team being silverstone motorsport academy?" }
### QUESTION What is the newest Season in which had 0 Podiums, and having 1 total of Races, as well as total wins larger than 0? ### CONTEXT CREATE TABLE table_name_65 (season INTEGER, wins VARCHAR, podiums VARCHAR, races VARCHAR) ### ANSWER SELECT MAX(season) FROM table_name_65 WHERE podiums = 0 AND races = 1 AND wins > 0</s>
{ "answer": "SELECT MAX(season) FROM table_name_65 WHERE podiums = 0 AND races = 1 AND wins > 0", "context": "CREATE TABLE table_name_65 (season INTEGER, wins VARCHAR, podiums VARCHAR, races VARCHAR)", "question": "What is the newest Season in which had 0 Podiums, and having 1 total of Races, as well as total wins larger than 0?" }
### QUESTION If the Home team was st kilda, what was the score of the Away team they played? ### CONTEXT CREATE TABLE table_name_16 (away_team VARCHAR, home_team VARCHAR) ### ANSWER SELECT away_team AS score FROM table_name_16 WHERE home_team = "st kilda"</s>
{ "answer": "SELECT away_team AS score FROM table_name_16 WHERE home_team = \"st kilda\"", "context": "CREATE TABLE table_name_16 (away_team VARCHAR, home_team VARCHAR)", "question": "If the Home team was st kilda, what was the score of the Away team they played?" }
### QUESTION Which category was william ivey long a nominee and nominated in? ### CONTEXT CREATE TABLE table_name_55 (category VARCHAR, result VARCHAR, nominee VARCHAR) ### ANSWER SELECT category FROM table_name_55 WHERE result = "nominated" AND nominee = "william ivey long"</s>
{ "answer": "SELECT category FROM table_name_55 WHERE result = \"nominated\" AND nominee = \"william ivey long\"", "context": "CREATE TABLE table_name_55 (category VARCHAR, result VARCHAR, nominee VARCHAR)", "question": "Which category was william ivey long a nominee and nominated in?" }
### QUESTION What is the total points with less than 5 games? ### CONTEXT CREATE TABLE table_name_28 (points VARCHAR, games INTEGER) ### ANSWER SELECT COUNT(points) FROM table_name_28 WHERE games < 5</s>
{ "answer": "SELECT COUNT(points) FROM table_name_28 WHERE games < 5", "context": "CREATE TABLE table_name_28 (points VARCHAR, games INTEGER)", "question": "What is the total points with less than 5 games?" }
### QUESTION What model number had a chipset of intel q43? ### CONTEXT CREATE TABLE table_name_51 (model VARCHAR, chipset VARCHAR) ### ANSWER SELECT model FROM table_name_51 WHERE chipset = "intel q43"</s>
{ "answer": "SELECT model FROM table_name_51 WHERE chipset = \"intel q43\"", "context": "CREATE TABLE table_name_51 (model VARCHAR, chipset VARCHAR)", "question": "What model number had a chipset of intel q43?" }
### QUESTION What is the visitor team of the game with Rudy Gay (18) as the leading scorer? ### CONTEXT CREATE TABLE table_name_96 (visitor VARCHAR, leading_scorer VARCHAR) ### ANSWER SELECT visitor FROM table_name_96 WHERE leading_scorer = "rudy gay (18)"</s>
{ "answer": "SELECT visitor FROM table_name_96 WHERE leading_scorer = \"rudy gay (18)\"", "context": "CREATE TABLE table_name_96 (visitor VARCHAR, leading_scorer VARCHAR)", "question": "What is the visitor team of the game with Rudy Gay (18) as the leading scorer?" }
### QUESTION What district is the democratic Francis C. Le Blond from? ### CONTEXT CREATE TABLE table_name_69 (district VARCHAR, party VARCHAR, incumbent VARCHAR) ### ANSWER SELECT district FROM table_name_69 WHERE party = "democratic" AND incumbent = "francis c. le blond"</s>
{ "answer": "SELECT district FROM table_name_69 WHERE party = \"democratic\" AND incumbent = \"francis c. le blond\"", "context": "CREATE TABLE table_name_69 (district VARCHAR, party VARCHAR, incumbent VARCHAR)", "question": "What district is the democratic Francis C. Le Blond from?" }
### QUESTION In the Ohio 4 district, that is the first elected date that has a result of re-elected? ### CONTEXT CREATE TABLE table_name_66 (first_elected INTEGER, result VARCHAR, district VARCHAR) ### ANSWER SELECT SUM(first_elected) FROM table_name_66 WHERE result = "re-elected" AND district = "ohio 4"</s>
{ "answer": "SELECT SUM(first_elected) FROM table_name_66 WHERE result = \"re-elected\" AND district = \"ohio 4\"", "context": "CREATE TABLE table_name_66 (first_elected INTEGER, result VARCHAR, district VARCHAR)", "question": "In the Ohio 4 district, that is the first elected date that has a result of re-elected?" }
### QUESTION What is the score of the game with Grizzlies as the visitor team on 30 December 2007? ### CONTEXT CREATE TABLE table_name_21 (score VARCHAR, visitor VARCHAR, date VARCHAR) ### ANSWER SELECT score FROM table_name_21 WHERE visitor = "grizzlies" AND date = "30 december 2007"</s>
{ "answer": "SELECT score FROM table_name_21 WHERE visitor = \"grizzlies\" AND date = \"30 december 2007\"", "context": "CREATE TABLE table_name_21 (score VARCHAR, visitor VARCHAR, date VARCHAR)", "question": "What is the score of the game with Grizzlies as the visitor team on 30 December 2007?" }
### QUESTION What is the total of the team with a T score greater than 8 and an E score less than 8.4? ### CONTEXT CREATE TABLE table_name_57 (total INTEGER, t_score VARCHAR, e_score VARCHAR) ### ANSWER SELECT SUM(total) FROM table_name_57 WHERE t_score > 8 AND e_score < 8.4</s>
{ "answer": "SELECT SUM(total) FROM table_name_57 WHERE t_score > 8 AND e_score < 8.4", "context": "CREATE TABLE table_name_57 (total INTEGER, t_score VARCHAR, e_score VARCHAR)", "question": "What is the total of the team with a T score greater than 8 and an E score less than 8.4?" }
### QUESTION What is the total of Poland, which has an E score greater than 7.725? ### CONTEXT CREATE TABLE table_name_97 (total VARCHAR, nation VARCHAR, e_score VARCHAR) ### ANSWER SELECT COUNT(total) FROM table_name_97 WHERE nation = "poland" AND e_score > 7.725</s>
{ "answer": "SELECT COUNT(total) FROM table_name_97 WHERE nation = \"poland\" AND e_score > 7.725", "context": "CREATE TABLE table_name_97 (total VARCHAR, nation VARCHAR, e_score VARCHAR)", "question": "What is the total of Poland, which has an E score greater than 7.725?" }
### QUESTION What date has a competition of 2012 afc challenge cup, and dasarath rangasala stadium, kathmandu as the venue? ### CONTEXT CREATE TABLE table_name_56 (date VARCHAR, competition VARCHAR, venue VARCHAR) ### ANSWER SELECT date FROM table_name_56 WHERE competition = "2012 afc challenge cup" AND venue = "dasarath rangasala stadium, kathmandu"</s>
{ "answer": "SELECT date FROM table_name_56 WHERE competition = \"2012 afc challenge cup\" AND venue = \"dasarath rangasala stadium, kathmandu\"", "context": "CREATE TABLE table_name_56 (date VARCHAR, competition VARCHAR, venue VARCHAR)", "question": "What date has a competition of 2012 afc challenge cup, and dasarath rangasala stadium, kathmandu as the venue?" }
### QUESTION Which gender had a decile of more than 1 and featured the South Auckland Seventh-Day Adventist School? ### CONTEXT CREATE TABLE table_name_16 (gender VARCHAR, decile VARCHAR, name VARCHAR) ### ANSWER SELECT gender FROM table_name_16 WHERE decile > 1 AND name = "south auckland seventh-day adventist school"</s>
{ "answer": "SELECT gender FROM table_name_16 WHERE decile > 1 AND name = \"south auckland seventh-day adventist school\"", "context": "CREATE TABLE table_name_16 (gender VARCHAR, decile VARCHAR, name VARCHAR)", "question": "Which gender had a decile of more than 1 and featured the South Auckland Seventh-Day Adventist School?" }
### QUESTION Which Round is the lowest one that has a School/Club Team of virginia? ### CONTEXT CREATE TABLE table_name_20 (round INTEGER, school_club_team VARCHAR) ### ANSWER SELECT MIN(round) FROM table_name_20 WHERE school_club_team = "virginia"</s>
{ "answer": "SELECT MIN(round) FROM table_name_20 WHERE school_club_team = \"virginia\"", "context": "CREATE TABLE table_name_20 (round INTEGER, school_club_team VARCHAR)", "question": "Which Round is the lowest one that has a School/Club Team of virginia?" }
### QUESTION Which Year has a Borough of harrogate, and a Rank smaller than 6, and a Definition of civil parish? ### CONTEXT CREATE TABLE table_name_59 (year VARCHAR, definition VARCHAR, borough VARCHAR, rank VARCHAR) ### ANSWER SELECT year FROM table_name_59 WHERE borough = "harrogate" AND rank < 6 AND definition = "civil parish"</s>
{ "answer": "SELECT year FROM table_name_59 WHERE borough = \"harrogate\" AND rank < 6 AND definition = \"civil parish\"", "context": "CREATE TABLE table_name_59 (year VARCHAR, definition VARCHAR, borough VARCHAR, rank VARCHAR)", "question": "Which Year has a Borough of harrogate, and a Rank smaller than 6, and a Definition of civil parish?" }
### QUESTION Tell me the score on 1978-12-16 ### CONTEXT CREATE TABLE table_name_91 (score VARCHAR, date VARCHAR) ### ANSWER SELECT score FROM table_name_91 WHERE date = "1978-12-16"</s>
{ "answer": "SELECT score FROM table_name_91 WHERE date = \"1978-12-16\"", "context": "CREATE TABLE table_name_91 (score VARCHAR, date VARCHAR)", "question": "Tell me the score on 1978-12-16" }
### QUESTION What was the score when a save of ||25,354||63–43 occurred? ### CONTEXT CREATE TABLE table_name_49 (score VARCHAR, save VARCHAR) ### ANSWER SELECT score FROM table_name_49 WHERE save = "||25,354||63–43"</s>
{ "answer": "SELECT score FROM table_name_49 WHERE save = \"||25,354||63–43\"", "context": "CREATE TABLE table_name_49 (score VARCHAR, save VARCHAR)", "question": "What was the score when a save of ||25,354||63–43 occurred?" }
### QUESTION What is the Time/Retired for a Grid smaller than 10, a Laps larger than 20, and a Constructor of talbot-lago - talbot? ### CONTEXT CREATE TABLE table_name_89 (time_retired VARCHAR, constructor VARCHAR, grid VARCHAR, laps VARCHAR) ### ANSWER SELECT time_retired FROM table_name_89 WHERE grid < 10 AND laps > 20 AND constructor = "talbot-lago - talbot"</s>
{ "answer": "SELECT time_retired FROM table_name_89 WHERE grid < 10 AND laps > 20 AND constructor = \"talbot-lago - talbot\"", "context": "CREATE TABLE table_name_89 (time_retired VARCHAR, constructor VARCHAR, grid VARCHAR, laps VARCHAR)", "question": "What is the Time/Retired for a Grid smaller than 10, a Laps larger than 20, and a Constructor of talbot-lago - talbot?" }
### QUESTION When is the tournament of konica san jose classic? ### CONTEXT CREATE TABLE table_name_41 (date VARCHAR, tournament VARCHAR) ### ANSWER SELECT date FROM table_name_41 WHERE tournament = "konica san jose classic"</s>
{ "answer": "SELECT date FROM table_name_41 WHERE tournament = \"konica san jose classic\"", "context": "CREATE TABLE table_name_41 (date VARCHAR, tournament VARCHAR)", "question": "When is the tournament of konica san jose classic?" }
### QUESTION Which tournament had a playoff with a margin of victory? ### CONTEXT CREATE TABLE table_name_49 (tournament VARCHAR, margin_of_victory VARCHAR) ### ANSWER SELECT tournament FROM table_name_49 WHERE margin_of_victory = "playoff"</s>
{ "answer": "SELECT tournament FROM table_name_49 WHERE margin_of_victory = \"playoff\"", "context": "CREATE TABLE table_name_49 (tournament VARCHAR, margin_of_victory VARCHAR)", "question": "Which tournament had a playoff with a margin of victory?" }
### QUESTION Which dance has the worst dancer(s) as marissa jaret winokur? ### CONTEXT CREATE TABLE table_name_52 (dance VARCHAR, worst_dancer_s_ VARCHAR) ### ANSWER SELECT dance FROM table_name_52 WHERE worst_dancer_s_ = "marissa jaret winokur"</s>
{ "answer": "SELECT dance FROM table_name_52 WHERE worst_dancer_s_ = \"marissa jaret winokur\"", "context": "CREATE TABLE table_name_52 (dance VARCHAR, worst_dancer_s_ VARCHAR)", "question": "Which dance has the worst dancer(s) as marissa jaret winokur?" }
### QUESTION What was the highest crowd size at the Western Oval? ### CONTEXT CREATE TABLE table_name_48 (crowd INTEGER, venue VARCHAR) ### ANSWER SELECT MAX(crowd) FROM table_name_48 WHERE venue = "western oval"</s>
{ "answer": "SELECT MAX(crowd) FROM table_name_48 WHERE venue = \"western oval\"", "context": "CREATE TABLE table_name_48 (crowd INTEGER, venue VARCHAR)", "question": "What was the highest crowd size at the Western Oval?" }
### QUESTION On what date was the game more than 5? ### CONTEXT CREATE TABLE table_name_23 (date VARCHAR, game INTEGER) ### ANSWER SELECT date FROM table_name_23 WHERE game > 5</s>
{ "answer": "SELECT date FROM table_name_23 WHERE game > 5", "context": "CREATE TABLE table_name_23 (date VARCHAR, game INTEGER)", "question": "On what date was the game more than 5?" }
### QUESTION What was the highest average point rating for a modern suspense show with 21 episodes? ### CONTEXT CREATE TABLE table_name_29 (highest_average_point_ratings INTEGER, genre VARCHAR, number_of_episodes VARCHAR) ### ANSWER SELECT SUM(highest_average_point_ratings) FROM table_name_29 WHERE genre = "modern suspense" AND number_of_episodes = 21</s>
{ "answer": "SELECT SUM(highest_average_point_ratings) FROM table_name_29 WHERE genre = \"modern suspense\" AND number_of_episodes = 21", "context": "CREATE TABLE table_name_29 (highest_average_point_ratings INTEGER, genre VARCHAR, number_of_episodes VARCHAR)", "question": "What was the highest average point rating for a modern suspense show with 21 episodes?" }
### QUESTION Where was the game with a higher score than 1 played? ### CONTEXT CREATE TABLE table_name_85 (venue VARCHAR, scored INTEGER) ### ANSWER SELECT venue FROM table_name_85 WHERE scored > 1</s>
{ "answer": "SELECT venue FROM table_name_85 WHERE scored > 1", "context": "CREATE TABLE table_name_85 (venue VARCHAR, scored INTEGER)", "question": "Where was the game with a higher score than 1 played?" }
### QUESTION What is the lowest metal total when the Bronze metals are larger than 0, the Gold medals are smaller than 1, and the nation is Switzerland? ### CONTEXT CREATE TABLE table_name_18 (total INTEGER, gold VARCHAR, bronze VARCHAR, nation VARCHAR) ### ANSWER SELECT MIN(total) FROM table_name_18 WHERE bronze > 0 AND nation = "switzerland" AND gold < 1</s>
{ "answer": "SELECT MIN(total) FROM table_name_18 WHERE bronze > 0 AND nation = \"switzerland\" AND gold < 1", "context": "CREATE TABLE table_name_18 (total INTEGER, gold VARCHAR, bronze VARCHAR, nation VARCHAR)", "question": "What is the lowest metal total when the Bronze metals are larger than 0, the Gold medals are smaller than 1, and the nation is Switzerland?" }
### QUESTION What is the highest Bronze medal count when the Gold medals are larger than 1 and the silver are smaller than 0? ### CONTEXT CREATE TABLE table_name_71 (bronze INTEGER, gold VARCHAR, silver VARCHAR) ### ANSWER SELECT MAX(bronze) FROM table_name_71 WHERE gold > 1 AND silver < 0</s>
{ "answer": "SELECT MAX(bronze) FROM table_name_71 WHERE gold > 1 AND silver < 0", "context": "CREATE TABLE table_name_71 (bronze INTEGER, gold VARCHAR, silver VARCHAR)", "question": "What is the highest Bronze medal count when the Gold medals are larger than 1 and the silver are smaller than 0?" }
### QUESTION Nationality of england, and a Matches smaller than 510, and a Lost of 4, and a Win % smaller than 28.6 had what lowest drawn? ### CONTEXT CREATE TABLE table_name_5 (drawn INTEGER, win__percentage VARCHAR, lost VARCHAR, nationality VARCHAR, matches VARCHAR) ### ANSWER SELECT MIN(drawn) FROM table_name_5 WHERE nationality = "england" AND matches < 510 AND lost = 4 AND win__percentage < 28.6</s>
{ "answer": "SELECT MIN(drawn) FROM table_name_5 WHERE nationality = \"england\" AND matches < 510 AND lost = 4 AND win__percentage < 28.6", "context": "CREATE TABLE table_name_5 (drawn INTEGER, win__percentage VARCHAR, lost VARCHAR, nationality VARCHAR, matches VARCHAR)", "question": "Nationality of england, and a Matches smaller than 510, and a Lost of 4, and a Win % smaller than 28.6 had what lowest drawn?" }
### QUESTION What is the second leg that has kk bosna? ### CONTEXT CREATE TABLE table_name_49 (team__number1 VARCHAR) ### ANSWER SELECT 2 AS nd_leg FROM table_name_49 WHERE team__number1 = "kk bosna"</s>
{ "answer": "SELECT 2 AS nd_leg FROM table_name_49 WHERE team__number1 = \"kk bosna\"", "context": "CREATE TABLE table_name_49 (team__number1 VARCHAR)", "question": "What is the second leg that has kk bosna?" }
### QUESTION What year did team Yamaha have 0 wins, a rank of 8th, and more than 22 points? ### CONTEXT CREATE TABLE table_name_96 (year VARCHAR, points VARCHAR, rank VARCHAR, team VARCHAR, wins VARCHAR) ### ANSWER SELECT COUNT(year) FROM table_name_96 WHERE team = "yamaha" AND wins = 0 AND rank = "8th" AND points > 22</s>
{ "answer": "SELECT COUNT(year) FROM table_name_96 WHERE team = \"yamaha\" AND wins = 0 AND rank = \"8th\" AND points > 22", "context": "CREATE TABLE table_name_96 (year VARCHAR, points VARCHAR, rank VARCHAR, team VARCHAR, wins VARCHAR)", "question": "What year did team Yamaha have 0 wins, a rank of 8th, and more than 22 points?" }
### QUESTION What is the difference related to 2 losses and fewer than 10 points? ### CONTEXT CREATE TABLE table_name_51 (points_difference VARCHAR, lost VARCHAR, points VARCHAR) ### ANSWER SELECT points_difference FROM table_name_51 WHERE lost = 2 AND points < 10</s>
{ "answer": "SELECT points_difference FROM table_name_51 WHERE lost = 2 AND points < 10", "context": "CREATE TABLE table_name_51 (points_difference VARCHAR, lost VARCHAR, points VARCHAR)", "question": "What is the difference related to 2 losses and fewer than 10 points?" }
### QUESTION Which race was on the Las Vegas Motor Speedway for 2 hours? ### CONTEXT CREATE TABLE table_name_36 (race VARCHAR, circuit VARCHAR, length VARCHAR) ### ANSWER SELECT race FROM table_name_36 WHERE circuit = "las vegas motor speedway" AND length = "2 hours"</s>
{ "answer": "SELECT race FROM table_name_36 WHERE circuit = \"las vegas motor speedway\" AND length = \"2 hours\"", "context": "CREATE TABLE table_name_36 (race VARCHAR, circuit VARCHAR, length VARCHAR)", "question": "Which race was on the Las Vegas Motor Speedway for 2 hours?" }
### QUESTION Which date was a GTS class on the Mosport International Raceway? ### CONTEXT CREATE TABLE table_name_98 (date VARCHAR, class VARCHAR, circuit VARCHAR) ### ANSWER SELECT date FROM table_name_98 WHERE class = "gts" AND circuit = "mosport international raceway"</s>
{ "answer": "SELECT date FROM table_name_98 WHERE class = \"gts\" AND circuit = \"mosport international raceway\"", "context": "CREATE TABLE table_name_98 (date VARCHAR, class VARCHAR, circuit VARCHAR)", "question": "Which date was a GTS class on the Mosport International Raceway?" }
### QUESTION Which 1992 is the lowest one that has a 1977 smaller than 385577, and a 2011 larger than 340310, and a 2002 larger than 300123, and a 1948 larger than 280524? ### CONTEXT CREATE TABLE table_name_12 (Id VARCHAR) ### ANSWER SELECT MIN(1992) FROM table_name_12 WHERE 1977 < 385577 AND 2011 > 340310 AND 2002 > 300123 AND 1948 > 280524</s>
{ "answer": "SELECT MIN(1992) FROM table_name_12 WHERE 1977 < 385577 AND 2011 > 340310 AND 2002 > 300123 AND 1948 > 280524", "context": "CREATE TABLE table_name_12 (Id VARCHAR)", "question": "Which 1992 is the lowest one that has a 1977 smaller than 385577, and a 2011 larger than 340310, and a 2002 larger than 300123, and a 1948 larger than 280524?" }
### QUESTION What is the site of the game that had an attendance of 54,040? ### CONTEXT CREATE TABLE table_name_23 (game_site VARCHAR, attendance VARCHAR) ### ANSWER SELECT game_site FROM table_name_23 WHERE attendance = "54,040"</s>
{ "answer": "SELECT game_site FROM table_name_23 WHERE attendance = \"54,040\"", "context": "CREATE TABLE table_name_23 (game_site VARCHAR, attendance VARCHAR)", "question": "What is the site of the game that had an attendance of 54,040?" }
### QUESTION What 1972 Hindi film had Ravindra Jain directing the music? ### CONTEXT CREATE TABLE table_name_50 (film_name VARCHAR, music_director VARCHAR, lyricist VARCHAR, year VARCHAR, language VARCHAR) ### ANSWER SELECT film_name FROM table_name_50 WHERE year > 1972 AND language = "hindi" AND lyricist = "ravindra jain" AND music_director = "ravindra jain"</s>
{ "answer": "SELECT film_name FROM table_name_50 WHERE year > 1972 AND language = \"hindi\" AND lyricist = \"ravindra jain\" AND music_director = \"ravindra jain\"", "context": "CREATE TABLE table_name_50 (film_name VARCHAR, music_director VARCHAR, lyricist VARCHAR, year VARCHAR, language VARCHAR)", "question": "What 1972 Hindi film had Ravindra Jain directing the music?" }
### QUESTION Which opponent in the final had a partner of Katarina Srebotnik and a championship of wimbledon (4)? ### CONTEXT CREATE TABLE table_name_63 (opponents_in_the_final VARCHAR, partner VARCHAR, championship VARCHAR) ### ANSWER SELECT opponents_in_the_final FROM table_name_63 WHERE partner = "katarina srebotnik" AND championship = "wimbledon (4)"</s>
{ "answer": "SELECT opponents_in_the_final FROM table_name_63 WHERE partner = \"katarina srebotnik\" AND championship = \"wimbledon (4)\"", "context": "CREATE TABLE table_name_63 (opponents_in_the_final VARCHAR, partner VARCHAR, championship VARCHAR)", "question": "Which opponent in the final had a partner of Katarina Srebotnik and a championship of wimbledon (4)?" }
### QUESTION Who was the partner when the championship was us open on a hard surface? ### CONTEXT CREATE TABLE table_name_30 (partner VARCHAR, surface VARCHAR, championship VARCHAR) ### ANSWER SELECT partner FROM table_name_30 WHERE surface = "hard" AND championship = "us open"</s>
{ "answer": "SELECT partner FROM table_name_30 WHERE surface = \"hard\" AND championship = \"us open\"", "context": "CREATE TABLE table_name_30 (partner VARCHAR, surface VARCHAR, championship VARCHAR)", "question": "Who was the partner when the championship was us open on a hard surface?" }
### QUESTION Who was the Visitor when the Home team was Anaheim on the Date of April 12? ### CONTEXT CREATE TABLE table_name_49 (visitor VARCHAR, home VARCHAR, date VARCHAR) ### ANSWER SELECT visitor FROM table_name_49 WHERE home = "anaheim" AND date = "april 12"</s>
{ "answer": "SELECT visitor FROM table_name_49 WHERE home = \"anaheim\" AND date = \"april 12\"", "context": "CREATE TABLE table_name_49 (visitor VARCHAR, home VARCHAR, date VARCHAR)", "question": "Who was the Visitor when the Home team was Anaheim on the Date of April 12?" }
### QUESTION Which venue does Fitzroy play as an away team? ### CONTEXT CREATE TABLE table_name_57 (venue VARCHAR, away_team VARCHAR) ### ANSWER SELECT venue FROM table_name_57 WHERE away_team = "fitzroy"</s>
{ "answer": "SELECT venue FROM table_name_57 WHERE away_team = \"fitzroy\"", "context": "CREATE TABLE table_name_57 (venue VARCHAR, away_team VARCHAR)", "question": "Which venue does Fitzroy play as an away team?" }
### QUESTION Which Overall has a College of florida state, and a Round larger than 2? ### CONTEXT CREATE TABLE table_name_76 (overall INTEGER, college VARCHAR, round VARCHAR) ### ANSWER SELECT SUM(overall) FROM table_name_76 WHERE college = "florida state" AND round > 2</s>
{ "answer": "SELECT SUM(overall) FROM table_name_76 WHERE college = \"florida state\" AND round > 2", "context": "CREATE TABLE table_name_76 (overall INTEGER, college VARCHAR, round VARCHAR)", "question": "Which Overall has a College of florida state, and a Round larger than 2?" }
### QUESTION Which Player has a Nationality of united states, and an Overall of 61 (from boston)? ### CONTEXT CREATE TABLE table_name_79 (player VARCHAR, nationality VARCHAR, overall VARCHAR) ### ANSWER SELECT player FROM table_name_79 WHERE nationality = "united states" AND overall = "61 (from boston)"</s>
{ "answer": "SELECT player FROM table_name_79 WHERE nationality = \"united states\" AND overall = \"61 (from boston)\"", "context": "CREATE TABLE table_name_79 (player VARCHAR, nationality VARCHAR, overall VARCHAR)", "question": "Which Player has a Nationality of united states, and an Overall of 61 (from boston)?" }
### QUESTION What was the position of the team Minneapolis Lakers during round T? ### CONTEXT CREATE TABLE table_name_62 (position VARCHAR, round VARCHAR, team VARCHAR) ### ANSWER SELECT position FROM table_name_62 WHERE round = "t" AND team = "minneapolis lakers"</s>
{ "answer": "SELECT position FROM table_name_62 WHERE round = \"t\" AND team = \"minneapolis lakers\"", "context": "CREATE TABLE table_name_62 (position VARCHAR, round VARCHAR, team VARCHAR)", "question": "What was the position of the team Minneapolis Lakers during round T?" }
### QUESTION What was the theatre where Peter P. Peters is the role? ### CONTEXT CREATE TABLE table_name_8 (theatre VARCHAR, _studio VARCHAR, _or_network VARCHAR, role VARCHAR) ### ANSWER SELECT theatre, _studio, _or_network FROM table_name_8 WHERE role = "peter p. peters"</s>
{ "answer": "SELECT theatre, _studio, _or_network FROM table_name_8 WHERE role = \"peter p. peters\"", "context": "CREATE TABLE table_name_8 (theatre VARCHAR, _studio VARCHAR, _or_network VARCHAR, role VARCHAR)", "question": "What was the theatre where Peter P. Peters is the role?" }
### QUESTION Who was the constructor of the car that had a Q1 pos of less than 8 and a Q1 time of 1:15.038? ### CONTEXT CREATE TABLE table_name_84 (constructor VARCHAR, q1_pos VARCHAR, q1_time VARCHAR) ### ANSWER SELECT constructor FROM table_name_84 WHERE q1_pos < 8 AND q1_time = "1:15.038"</s>
{ "answer": "SELECT constructor FROM table_name_84 WHERE q1_pos < 8 AND q1_time = \"1:15.038\"", "context": "CREATE TABLE table_name_84 (constructor VARCHAR, q1_pos VARCHAR, q1_time VARCHAR)", "question": "Who was the constructor of the car that had a Q1 pos of less than 8 and a Q1 time of 1:15.038?" }
### QUESTION What is the epicenter of the earthquake on March 2, 1825 with an unknown intensity? ### CONTEXT CREATE TABLE table_name_10 (epicenter VARCHAR, intensity VARCHAR, date VARCHAR) ### ANSWER SELECT epicenter FROM table_name_10 WHERE intensity = "unknown" AND date = "march 2, 1825"</s>
{ "answer": "SELECT epicenter FROM table_name_10 WHERE intensity = \"unknown\" AND date = \"march 2, 1825\"", "context": "CREATE TABLE table_name_10 (epicenter VARCHAR, intensity VARCHAR, date VARCHAR)", "question": "What is the epicenter of the earthquake on March 2, 1825 with an unknown intensity?" }
### QUESTION What is the average rank of a nation that had 219,721 in 2012? ### CONTEXT CREATE TABLE table_name_6 (rank INTEGER) ### ANSWER SELECT AVG(rank) FROM table_name_6 WHERE 2012 = 219 OFFSET 721</s>
{ "answer": "SELECT AVG(rank) FROM table_name_6 WHERE 2012 = 219 OFFSET 721", "context": "CREATE TABLE table_name_6 (rank INTEGER)", "question": "What is the average rank of a nation that had 219,721 in 2012?" }
### QUESTION Which Attendance has a Result of 1-0, and a Venue of A, and an Opponent of newcastle united? ### CONTEXT CREATE TABLE table_name_77 (attendance INTEGER, opponent VARCHAR, result VARCHAR, venue VARCHAR) ### ANSWER SELECT MIN(attendance) FROM table_name_77 WHERE result = "1-0" AND venue = "a" AND opponent = "newcastle united"</s>
{ "answer": "SELECT MIN(attendance) FROM table_name_77 WHERE result = \"1-0\" AND venue = \"a\" AND opponent = \"newcastle united\"", "context": "CREATE TABLE table_name_77 (attendance INTEGER, opponent VARCHAR, result VARCHAR, venue VARCHAR)", "question": "Which Attendance has a Result of 1-0, and a Venue of A, and an Opponent of newcastle united?" }
### QUESTION WHAT ARE THE BYES WITH A WIN SMALLER THAN 16, 8 LOSSES, AND AT PENSHURST, WITH AGAINST SMALLER THAN 1405? ### CONTEXT CREATE TABLE table_name_24 (byes INTEGER, against VARCHAR, mininera_dfl VARCHAR, wins VARCHAR, losses VARCHAR) ### ANSWER SELECT SUM(byes) FROM table_name_24 WHERE wins < 16 AND losses = 8 AND mininera_dfl = "penshurst" AND against < 1405</s>
{ "answer": "SELECT SUM(byes) FROM table_name_24 WHERE wins < 16 AND losses = 8 AND mininera_dfl = \"penshurst\" AND against < 1405", "context": "CREATE TABLE table_name_24 (byes INTEGER, against VARCHAR, mininera_dfl VARCHAR, wins VARCHAR, losses VARCHAR)", "question": "WHAT ARE THE BYES WITH A WIN SMALLER THAN 16, 8 LOSSES, AND AT PENSHURST, WITH AGAINST SMALLER THAN 1405?" }
### QUESTION WHAT ARE THE BYES WITH A DRAWS OF 1, SMW ROVERS, AND WINS LARGER THAN 6? ### CONTEXT CREATE TABLE table_name_76 (byes INTEGER, wins VARCHAR, draws VARCHAR, mininera_dfl VARCHAR) ### ANSWER SELECT AVG(byes) FROM table_name_76 WHERE draws = 1 AND mininera_dfl = "smw rovers" AND wins > 6</s>
{ "answer": "SELECT AVG(byes) FROM table_name_76 WHERE draws = 1 AND mininera_dfl = \"smw rovers\" AND wins > 6", "context": "CREATE TABLE table_name_76 (byes INTEGER, wins VARCHAR, draws VARCHAR, mininera_dfl VARCHAR)", "question": "WHAT ARE THE BYES WITH A DRAWS OF 1, SMW ROVERS, AND WINS LARGER THAN 6?" }
### QUESTION Reported Offenses larger than 216, and a U.S. Rate smaller than 3274, and a Texas Rate smaller than 2688.9, and a Crime of violent crime has what killeen rate? ### CONTEXT CREATE TABLE table_name_8 (killeen_rate INTEGER, crime VARCHAR, texas_rate VARCHAR, reported_offenses VARCHAR, us_rate VARCHAR) ### ANSWER SELECT SUM(killeen_rate) FROM table_name_8 WHERE reported_offenses > 216 AND us_rate < 3274 AND texas_rate < 2688.9 AND crime = "violent crime"</s>
{ "answer": "SELECT SUM(killeen_rate) FROM table_name_8 WHERE reported_offenses > 216 AND us_rate < 3274 AND texas_rate < 2688.9 AND crime = \"violent crime\"", "context": "CREATE TABLE table_name_8 (killeen_rate INTEGER, crime VARCHAR, texas_rate VARCHAR, reported_offenses VARCHAR, us_rate VARCHAR)", "question": "Reported Offenses larger than 216, and a U.S. Rate smaller than 3274, and a Texas Rate smaller than 2688.9, and a Crime of violent crime has what killeen rate?" }
### QUESTION What is the Year born (Age) for the player who is taller than 2.04 and currently plays for the Los Angeles Clippers? ### CONTEXT CREATE TABLE table_name_93 (year_born__age_ VARCHAR, height VARCHAR, current_club VARCHAR) ### ANSWER SELECT year_born__age_ FROM table_name_93 WHERE height > 2.04 AND current_club = "los angeles clippers"</s>
{ "answer": "SELECT year_born__age_ FROM table_name_93 WHERE height > 2.04 AND current_club = \"los angeles clippers\"", "context": "CREATE TABLE table_name_93 (year_born__age_ VARCHAR, height VARCHAR, current_club VARCHAR)", "question": "What is the Year born (Age) for the player who is taller than 2.04 and currently plays for the Los Angeles Clippers?" }