text
stringlengths
146
1.06k
source
dict
### QUESTION What is the mate for Last Appearance of bully, bully, bully (3x13) for the animal named hollow/holly later than season 1? ### CONTEXT CREATE TABLE table_name_48 (mate VARCHAR, animal_name VARCHAR, tv_seasons VARCHAR, last_appearance VARCHAR) ### ANSWER SELECT mate FROM table_name_48 WHERE tv_seasons > 1 AND last_appearance = "bully, bully, bully (3x13)" AND animal_name = "hollow/holly"
{ "answer": "SELECT mate FROM table_name_48 WHERE tv_seasons > 1 AND last_appearance = \"bully, bully, bully (3x13)\" AND animal_name = \"hollow/holly\"", "context": "CREATE TABLE table_name_48 (mate VARCHAR, animal_name VARCHAR, tv_seasons VARCHAR, last_appearance VARCHAR)", "question": "What is the mate for Last Appearance of bully, bully, bully (3x13) for the animal named hollow/holly later than season 1?" }
### QUESTION What's the location for the country of platte? ### CONTEXT CREATE TABLE table_name_64 (location VARCHAR, county VARCHAR) ### ANSWER SELECT location FROM table_name_64 WHERE county = "platte"
{ "answer": "SELECT location FROM table_name_64 WHERE county = \"platte\"", "context": "CREATE TABLE table_name_64 (location VARCHAR, county VARCHAR)", "question": "What's the location for the country of platte?" }
### QUESTION what's the county name for the republican river bridge listed on 1992-06-29? ### CONTEXT CREATE TABLE table_name_36 (county VARCHAR, listed VARCHAR, name VARCHAR) ### ANSWER SELECT county FROM table_name_36 WHERE listed = "1992-06-29" AND name = "republican river bridge"
{ "answer": "SELECT county FROM table_name_36 WHERE listed = \"1992-06-29\" AND name = \"republican river bridge\"", "context": "CREATE TABLE table_name_36 (county VARCHAR, listed VARCHAR, name VARCHAR)", "question": "what's the county name for the republican river bridge listed on 1992-06-29?" }
### QUESTION what is the to par for Dave hill? ### CONTEXT CREATE TABLE table_name_52 (to_par VARCHAR, player VARCHAR) ### ANSWER SELECT to_par FROM table_name_52 WHERE player = "dave hill"
{ "answer": "SELECT to_par FROM table_name_52 WHERE player = \"dave hill\"", "context": "CREATE TABLE table_name_52 (to_par VARCHAR, player VARCHAR)", "question": "what is the to par for Dave hill?" }
### QUESTION Can you tell me the average Attendance that has the Opponent of new orleans saints, and the Week larger than 12? ### CONTEXT CREATE TABLE table_name_45 (attendance INTEGER, opponent VARCHAR, week VARCHAR) ### ANSWER SELECT AVG(attendance) FROM table_name_45 WHERE opponent = "new orleans saints" AND week > 12
{ "answer": "SELECT AVG(attendance) FROM table_name_45 WHERE opponent = \"new orleans saints\" AND week > 12", "context": "CREATE TABLE table_name_45 (attendance INTEGER, opponent VARCHAR, week VARCHAR)", "question": "Can you tell me the average Attendance that has the Opponent of new orleans saints, and the Week larger than 12?" }
### QUESTION What is the density (hab/km²) with a population censo 2007(hab) of 336.293*? ### CONTEXT CREATE TABLE table_name_4 (density__hab__km²__ VARCHAR, population_censo_2007_hab_ VARCHAR) ### ANSWER SELECT density__hab__km²__ FROM table_name_4 WHERE population_censo_2007_hab_ = "336.293*"
{ "answer": "SELECT density__hab__km²__ FROM table_name_4 WHERE population_censo_2007_hab_ = \"336.293*\"", "context": "CREATE TABLE table_name_4 (density__hab__km²__ VARCHAR, population_censo_2007_hab_ VARCHAR)", "question": "What is the density (hab/km²) with a population censo 2007(hab) of 336.293*?" }
### QUESTION What is the under 1 year-old Censo 2007(hab) population with a population censo 2007(hab) of 112.054*? ### CONTEXT CREATE TABLE table_name_91 (population_under_1_year_old_censo_2007_hab_ VARCHAR, population_censo_2007_hab_ VARCHAR) ### ANSWER SELECT population_under_1_year_old_censo_2007_hab_ FROM table_name_91 WHERE population_censo_2007_hab_ = "112.054*"
{ "answer": "SELECT population_under_1_year_old_censo_2007_hab_ FROM table_name_91 WHERE population_censo_2007_hab_ = \"112.054*\"", "context": "CREATE TABLE table_name_91 (population_under_1_year_old_censo_2007_hab_ VARCHAR, population_censo_2007_hab_ VARCHAR)", "question": "What is the under 1 year-old Censo 2007(hab) population with a population censo 2007(hab) of 112.054*?" }
### QUESTION What is the density (hab/km²) with a population under 1 year-old censo 2007(hab) of * data from the census taken by the Inei? ### CONTEXT CREATE TABLE table_name_21 (density__hab__km²__ VARCHAR, population_under_1_year_old_censo_2007_hab_ VARCHAR) ### ANSWER SELECT density__hab__km²__ FROM table_name_21 WHERE population_under_1_year_old_censo_2007_hab_ = "* data from the census taken by the inei"
{ "answer": "SELECT density__hab__km²__ FROM table_name_21 WHERE population_under_1_year_old_censo_2007_hab_ = \"* data from the census taken by the inei\"", "context": "CREATE TABLE table_name_21 (density__hab__km²__ VARCHAR, population_under_1_year_old_censo_2007_hab_ VARCHAR)", "question": "What is the density (hab/km²) with a population under 1 year-old censo 2007(hab) of * data from the census taken by the Inei?" }
### QUESTION What constructor has under 62 laps, a Time/Retired of gearbox, a Grid larger than 1, and pedro diniz driving? ### CONTEXT CREATE TABLE table_name_19 (constructor VARCHAR, driver VARCHAR, grid VARCHAR, laps VARCHAR, time_retired VARCHAR) ### ANSWER SELECT constructor FROM table_name_19 WHERE laps < 62 AND time_retired = "gearbox" AND grid > 1 AND driver = "pedro diniz"
{ "answer": "SELECT constructor FROM table_name_19 WHERE laps < 62 AND time_retired = \"gearbox\" AND grid > 1 AND driver = \"pedro diniz\"", "context": "CREATE TABLE table_name_19 (constructor VARCHAR, driver VARCHAR, grid VARCHAR, laps VARCHAR, time_retired VARCHAR)", "question": "What constructor has under 62 laps, a Time/Retired of gearbox, a Grid larger than 1, and pedro diniz driving?" }
### QUESTION Who was the home team that played in Victoria Park? ### CONTEXT CREATE TABLE table_name_32 (home_team VARCHAR, venue VARCHAR) ### ANSWER SELECT home_team FROM table_name_32 WHERE venue = "victoria park"
{ "answer": "SELECT home_team FROM table_name_32 WHERE venue = \"victoria park\"", "context": "CREATE TABLE table_name_32 (home_team VARCHAR, venue VARCHAR)", "question": "Who was the home team that played in Victoria Park?" }
### QUESTION What is Score, when Date is "13 March 1985", and when Away Team is "Millwall"? ### CONTEXT CREATE TABLE table_name_67 (score VARCHAR, date VARCHAR, away_team VARCHAR) ### ANSWER SELECT score FROM table_name_67 WHERE date = "13 march 1985" AND away_team = "millwall"
{ "answer": "SELECT score FROM table_name_67 WHERE date = \"13 march 1985\" AND away_team = \"millwall\"", "context": "CREATE TABLE table_name_67 (score VARCHAR, date VARCHAR, away_team VARCHAR)", "question": "What is Score, when Date is \"13 March 1985\", and when Away Team is \"Millwall\"?" }
### QUESTION What is the name of the driver with a grid less than 14, laps smaller than 53 and a Time/Retired of collision, and a Constructor of ferrari? ### CONTEXT CREATE TABLE table_name_58 (driver VARCHAR, constructor VARCHAR, time_retired VARCHAR, grid VARCHAR, laps VARCHAR) ### ANSWER SELECT driver FROM table_name_58 WHERE grid < 14 AND laps < 53 AND time_retired = "collision" AND constructor = "ferrari"
{ "answer": "SELECT driver FROM table_name_58 WHERE grid < 14 AND laps < 53 AND time_retired = \"collision\" AND constructor = \"ferrari\"", "context": "CREATE TABLE table_name_58 (driver VARCHAR, constructor VARCHAR, time_retired VARCHAR, grid VARCHAR, laps VARCHAR)", "question": "What is the name of the driver with a grid less than 14, laps smaller than 53 and a Time/Retired of collision, and a Constructor of ferrari?" }
### QUESTION When the Venue was victoria park, what was the Away team score? ### CONTEXT CREATE TABLE table_name_61 (away_team VARCHAR, venue VARCHAR) ### ANSWER SELECT away_team AS score FROM table_name_61 WHERE venue = "victoria park"
{ "answer": "SELECT away_team AS score FROM table_name_61 WHERE venue = \"victoria park\"", "context": "CREATE TABLE table_name_61 (away_team VARCHAR, venue VARCHAR)", "question": "When the Venue was victoria park, what was the Away team score?" }
### QUESTION What's the total attendance in rink hockey when the average attendance was smaller than 4850? ### CONTEXT CREATE TABLE table_name_80 (total_attendance VARCHAR, average_attendance VARCHAR, sport VARCHAR) ### ANSWER SELECT total_attendance FROM table_name_80 WHERE average_attendance < 4850 AND sport = "rink hockey"
{ "answer": "SELECT total_attendance FROM table_name_80 WHERE average_attendance < 4850 AND sport = \"rink hockey\"", "context": "CREATE TABLE table_name_80 (total_attendance VARCHAR, average_attendance VARCHAR, sport VARCHAR)", "question": "What's the total attendance in rink hockey when the average attendance was smaller than 4850?" }
### QUESTION Can you tell me the average Points that has a Pts/game larger than 4, and the Nation of england, and the Games smaller than 5? ### CONTEXT CREATE TABLE table_name_1 (points INTEGER, games VARCHAR, pts_game VARCHAR, nation VARCHAR) ### ANSWER SELECT AVG(points) FROM table_name_1 WHERE pts_game > 4 AND nation = "england" AND games < 5
{ "answer": "SELECT AVG(points) FROM table_name_1 WHERE pts_game > 4 AND nation = \"england\" AND games < 5", "context": "CREATE TABLE table_name_1 (points INTEGER, games VARCHAR, pts_game VARCHAR, nation VARCHAR)", "question": "Can you tell me the average Points that has a Pts/game larger than 4, and the Nation of england, and the Games smaller than 5?" }
### QUESTION Can you tell me the lowest Games that has the Pts/game larger than 1.4 and the Points of 20, and the Name of susan day? ### CONTEXT CREATE TABLE table_name_96 (games INTEGER, name VARCHAR, pts_game VARCHAR, points VARCHAR) ### ANSWER SELECT MIN(games) FROM table_name_96 WHERE pts_game > 1.4 AND points = 20 AND name = "susan day"
{ "answer": "SELECT MIN(games) FROM table_name_96 WHERE pts_game > 1.4 AND points = 20 AND name = \"susan day\"", "context": "CREATE TABLE table_name_96 (games INTEGER, name VARCHAR, pts_game VARCHAR, points VARCHAR)", "question": "Can you tell me the lowest Games that has the Pts/game larger than 1.4 and the Points of 20, and the Name of susan day?" }
### QUESTION Which Surface has an Outcome of runner-up, and a Score in the final of 4–6, 6–7, 6–2, 2–6? ### CONTEXT CREATE TABLE table_name_87 (surface VARCHAR, outcome VARCHAR, score_in_the_final VARCHAR) ### ANSWER SELECT surface FROM table_name_87 WHERE outcome = "runner-up" AND score_in_the_final = "4–6, 6–7, 6–2, 2–6"
{ "answer": "SELECT surface FROM table_name_87 WHERE outcome = \"runner-up\" AND score_in_the_final = \"4–6, 6–7, 6–2, 2–6\"", "context": "CREATE TABLE table_name_87 (surface VARCHAR, outcome VARCHAR, score_in_the_final VARCHAR)", "question": "Which Surface has an Outcome of runner-up, and a Score in the final of 4–6, 6–7, 6–2, 2–6?" }
### QUESTION What is the home of the match with a 0:2 result on 21.10.07? ### CONTEXT CREATE TABLE table_name_28 (home VARCHAR, result VARCHAR, date VARCHAR) ### ANSWER SELECT home FROM table_name_28 WHERE result = "0:2" AND date = "21.10.07"
{ "answer": "SELECT home FROM table_name_28 WHERE result = \"0:2\" AND date = \"21.10.07\"", "context": "CREATE TABLE table_name_28 (home VARCHAR, result VARCHAR, date VARCHAR)", "question": "What is the home of the match with a 0:2 result on 21.10.07?" }
### QUESTION What is the elista with 1 played and 153⅓ baku? ### CONTEXT CREATE TABLE table_name_14 (elista VARCHAR, played VARCHAR, baku VARCHAR) ### ANSWER SELECT elista FROM table_name_14 WHERE played = 1 AND baku = "153⅓"
{ "answer": "SELECT elista FROM table_name_14 WHERE played = 1 AND baku = \"153⅓\"", "context": "CREATE TABLE table_name_14 (elista VARCHAR, played VARCHAR, baku VARCHAR)", "question": "What is the elista with 1 played and 153⅓ baku?" }
### QUESTION Which river had 26 points? ### CONTEXT CREATE TABLE table_name_72 (driver VARCHAR, points VARCHAR) ### ANSWER SELECT driver FROM table_name_72 WHERE points = 26
{ "answer": "SELECT driver FROM table_name_72 WHERE points = 26", "context": "CREATE TABLE table_name_72 (driver VARCHAR, points VARCHAR)", "question": "Which river had 26 points?" }
### QUESTION What was the score of the game in which the Toronto Maple Leafs were visitors? ### CONTEXT CREATE TABLE table_name_97 (score VARCHAR, visitor VARCHAR) ### ANSWER SELECT score FROM table_name_97 WHERE visitor = "toronto maple leafs"
{ "answer": "SELECT score FROM table_name_97 WHERE visitor = \"toronto maple leafs\"", "context": "CREATE TABLE table_name_97 (score VARCHAR, visitor VARCHAR)", "question": "What was the score of the game in which the Toronto Maple Leafs were visitors?" }
### QUESTION Tell me the host team for giants stadium and visiting of cincinnati bengals ### CONTEXT CREATE TABLE table_name_57 (host_team VARCHAR, stadium VARCHAR, visiting_team VARCHAR) ### ANSWER SELECT host_team FROM table_name_57 WHERE stadium = "giants stadium" AND visiting_team = "cincinnati bengals"
{ "answer": "SELECT host_team FROM table_name_57 WHERE stadium = \"giants stadium\" AND visiting_team = \"cincinnati bengals\"", "context": "CREATE TABLE table_name_57 (host_team VARCHAR, stadium VARCHAR, visiting_team VARCHAR)", "question": "Tell me the host team for giants stadium and visiting of cincinnati bengals" }
### QUESTION When the driver is Juan Manuel Fangio and laps is less than 39, what is the highest grid? ### CONTEXT CREATE TABLE table_name_44 (grid INTEGER, laps VARCHAR, driver VARCHAR) ### ANSWER SELECT MAX(grid) FROM table_name_44 WHERE laps < 39 AND driver = "juan manuel fangio"
{ "answer": "SELECT MAX(grid) FROM table_name_44 WHERE laps < 39 AND driver = \"juan manuel fangio\"", "context": "CREATE TABLE table_name_44 (grid INTEGER, laps VARCHAR, driver VARCHAR)", "question": "When the driver is Juan Manuel Fangio and laps is less than 39, what is the highest grid?" }
### QUESTION What is the Title of the episode after Season 10 Directed by Erik Wiese and Eddie Trigueros after Seres 35? ### CONTEXT CREATE TABLE table_name_83 (title VARCHAR, directed_by VARCHAR, season__number VARCHAR, series__number VARCHAR) ### ANSWER SELECT title FROM table_name_83 WHERE season__number > 10 AND series__number > 35 AND directed_by = "erik wiese and eddie trigueros"
{ "answer": "SELECT title FROM table_name_83 WHERE season__number > 10 AND series__number > 35 AND directed_by = \"erik wiese and eddie trigueros\"", "context": "CREATE TABLE table_name_83 (title VARCHAR, directed_by VARCHAR, season__number VARCHAR, series__number VARCHAR)", "question": "What is the Title of the episode after Season 10 Directed by Erik Wiese and Eddie Trigueros after Seres 35?" }
### QUESTION Which player has a cap larger than 12 and Clubs of Toulouse? ### CONTEXT CREATE TABLE table_name_74 (player VARCHAR, caps VARCHAR, club_province VARCHAR) ### ANSWER SELECT player FROM table_name_74 WHERE caps > 12 AND club_province = "toulouse"
{ "answer": "SELECT player FROM table_name_74 WHERE caps > 12 AND club_province = \"toulouse\"", "context": "CREATE TABLE table_name_74 (player VARCHAR, caps VARCHAR, club_province VARCHAR)", "question": "Which player has a cap larger than 12 and Clubs of Toulouse?" }
### QUESTION What kind of Takuu has a North Marquesan of /vehine/? ### CONTEXT CREATE TABLE table_name_83 (takuu VARCHAR, north_marquesan VARCHAR) ### ANSWER SELECT takuu FROM table_name_83 WHERE north_marquesan = "/vehine/"
{ "answer": "SELECT takuu FROM table_name_83 WHERE north_marquesan = \"/vehine/\"", "context": "CREATE TABLE table_name_83 (takuu VARCHAR, north_marquesan VARCHAR)", "question": "What kind of Takuu has a North Marquesan of /vehine/?" }
### QUESTION I want the driver for grid of 9 ### CONTEXT CREATE TABLE table_name_59 (driver VARCHAR, grid VARCHAR) ### ANSWER SELECT driver FROM table_name_59 WHERE grid = 9
{ "answer": "SELECT driver FROM table_name_59 WHERE grid = 9", "context": "CREATE TABLE table_name_59 (driver VARCHAR, grid VARCHAR)", "question": "I want the driver for grid of 9" }
### QUESTION When Tujunga is moderate, what is La Crescenta-Montrose? ### CONTEXT CREATE TABLE table_name_71 (la_crescenta__montrose VARCHAR, tujunga VARCHAR) ### ANSWER SELECT la_crescenta__montrose FROM table_name_71 WHERE tujunga = "moderate"
{ "answer": "SELECT la_crescenta__montrose FROM table_name_71 WHERE tujunga = \"moderate\"", "context": "CREATE TABLE table_name_71 (la_crescenta__montrose VARCHAR, tujunga VARCHAR)", "question": "When Tujunga is moderate, what is La Crescenta-Montrose?" }
### QUESTION What team has a national league in 2001? ### CONTEXT CREATE TABLE table_name_31 (team VARCHAR, league VARCHAR, year VARCHAR) ### ANSWER SELECT team FROM table_name_31 WHERE league = "national" AND year = 2001
{ "answer": "SELECT team FROM table_name_31 WHERE league = \"national\" AND year = 2001", "context": "CREATE TABLE table_name_31 (team VARCHAR, league VARCHAR, year VARCHAR)", "question": "What team has a national league in 2001?" }
### QUESTION What is the Original Title, when Director is "Ting Shan-Si", and when Film Title Used In Nomination is "The 800 Heroes"? ### CONTEXT CREATE TABLE table_name_73 (original_title VARCHAR, director VARCHAR, film_title_used_in_nomination VARCHAR) ### ANSWER SELECT original_title FROM table_name_73 WHERE director = "ting shan-si" AND film_title_used_in_nomination = "the 800 heroes"
{ "answer": "SELECT original_title FROM table_name_73 WHERE director = \"ting shan-si\" AND film_title_used_in_nomination = \"the 800 heroes\"", "context": "CREATE TABLE table_name_73 (original_title VARCHAR, director VARCHAR, film_title_used_in_nomination VARCHAR)", "question": "What is the Original Title, when Director is \"Ting Shan-Si\", and when Film Title Used In Nomination is \"The 800 Heroes\"?" }
### QUESTION Which Played has Draws smaller than 7, and Goals for smaller than 61, and Goals against smaller than 48, and a Position of 5? ### CONTEXT CREATE TABLE table_name_29 (played INTEGER, position VARCHAR, goals_against VARCHAR, draws VARCHAR, goals_for VARCHAR) ### ANSWER SELECT MAX(played) FROM table_name_29 WHERE draws < 7 AND goals_for < 61 AND goals_against < 48 AND position = 5
{ "answer": "SELECT MAX(played) FROM table_name_29 WHERE draws < 7 AND goals_for < 61 AND goals_against < 48 AND position = 5", "context": "CREATE TABLE table_name_29 (played INTEGER, position VARCHAR, goals_against VARCHAR, draws VARCHAR, goals_for VARCHAR)", "question": "Which Played has Draws smaller than 7, and Goals for smaller than 61, and Goals against smaller than 48, and a Position of 5?" }
### QUESTION What was the highest score of t5 place finisher brandt jobe? ### CONTEXT CREATE TABLE table_name_51 (score INTEGER, place VARCHAR, player VARCHAR) ### ANSWER SELECT MAX(score) FROM table_name_51 WHERE place = "t5" AND player = "brandt jobe"
{ "answer": "SELECT MAX(score) FROM table_name_51 WHERE place = \"t5\" AND player = \"brandt jobe\"", "context": "CREATE TABLE table_name_51 (score INTEGER, place VARCHAR, player VARCHAR)", "question": "What was the highest score of t5 place finisher brandt jobe?" }
### QUESTION What is the area of the parish with a population larger than 1,172 and a census ranking of 1,871 of 5,008? ### CONTEXT CREATE TABLE table_name_16 (area_km_2 VARCHAR, census_ranking VARCHAR, population VARCHAR) ### ANSWER SELECT COUNT(area_km_2) FROM table_name_16 WHERE census_ranking = "1,871 of 5,008" AND population > 1 OFFSET 172
{ "answer": "SELECT COUNT(area_km_2) FROM table_name_16 WHERE census_ranking = \"1,871 of 5,008\" AND population > 1 OFFSET 172", "context": "CREATE TABLE table_name_16 (area_km_2 VARCHAR, census_ranking VARCHAR, population VARCHAR)", "question": "What is the area of the parish with a population larger than 1,172 and a census ranking of 1,871 of 5,008?" }
### QUESTION What was the date administered from a source of Rasmussen Reports and a lead margin over 32? ### CONTEXT CREATE TABLE table_name_19 (dates_administered VARCHAR, poll_source VARCHAR, lead_margin VARCHAR) ### ANSWER SELECT dates_administered FROM table_name_19 WHERE poll_source = "rasmussen reports" AND lead_margin > 32
{ "answer": "SELECT dates_administered FROM table_name_19 WHERE poll_source = \"rasmussen reports\" AND lead_margin > 32", "context": "CREATE TABLE table_name_19 (dates_administered VARCHAR, poll_source VARCHAR, lead_margin VARCHAR)", "question": "What was the date administered from a source of Rasmussen Reports and a lead margin over 32?" }
### QUESTION What grand prix was held at Granollers? ### CONTEXT CREATE TABLE table_name_32 (designated_grand_prix VARCHAR, track VARCHAR) ### ANSWER SELECT designated_grand_prix FROM table_name_32 WHERE track = "granollers"
{ "answer": "SELECT designated_grand_prix FROM table_name_32 WHERE track = \"granollers\"", "context": "CREATE TABLE table_name_32 (designated_grand_prix VARCHAR, track VARCHAR)", "question": "What grand prix was held at Granollers?" }
### QUESTION what is the score when the partner is florencia labat, the surface is clay, the opponents is laura golarsa ann grossman? ### CONTEXT CREATE TABLE table_name_43 (score VARCHAR, opponents VARCHAR, partner VARCHAR, surface VARCHAR) ### ANSWER SELECT score FROM table_name_43 WHERE partner = "florencia labat" AND surface = "clay" AND opponents = "laura golarsa ann grossman"
{ "answer": "SELECT score FROM table_name_43 WHERE partner = \"florencia labat\" AND surface = \"clay\" AND opponents = \"laura golarsa ann grossman\"", "context": "CREATE TABLE table_name_43 (score VARCHAR, opponents VARCHAR, partner VARCHAR, surface VARCHAR)", "question": "what is the score when the partner is florencia labat, the surface is clay, the opponents is laura golarsa ann grossman?" }
### QUESTION What year was Teen Angels 2 nominated? ### CONTEXT CREATE TABLE table_name_19 (year VARCHAR, nominated VARCHAR) ### ANSWER SELECT year FROM table_name_19 WHERE nominated = "teen angels 2"
{ "answer": "SELECT year FROM table_name_19 WHERE nominated = \"teen angels 2\"", "context": "CREATE TABLE table_name_19 (year VARCHAR, nominated VARCHAR)", "question": "What year was Teen Angels 2 nominated?" }
### QUESTION What is the highest Goals Against, when Club is "Pontevedra CF", and when Played is less than 38? ### CONTEXT CREATE TABLE table_name_74 (goals_against INTEGER, club VARCHAR, played VARCHAR) ### ANSWER SELECT MAX(goals_against) FROM table_name_74 WHERE club = "pontevedra cf" AND played < 38
{ "answer": "SELECT MAX(goals_against) FROM table_name_74 WHERE club = \"pontevedra cf\" AND played < 38", "context": "CREATE TABLE table_name_74 (goals_against INTEGER, club VARCHAR, played VARCHAR)", "question": "What is the highest Goals Against, when Club is \"Pontevedra CF\", and when Played is less than 38?" }
### QUESTION Which Song has a Weeks at number one larger than 2, and an Issue date(s) of 17 april - 8 may? ### CONTEXT CREATE TABLE table_name_52 (song VARCHAR, weeks_at_number_one VARCHAR, issue_date_s_ VARCHAR) ### ANSWER SELECT song FROM table_name_52 WHERE weeks_at_number_one > 2 AND issue_date_s_ = "17 april - 8 may"
{ "answer": "SELECT song FROM table_name_52 WHERE weeks_at_number_one > 2 AND issue_date_s_ = \"17 april - 8 may\"", "context": "CREATE TABLE table_name_52 (song VARCHAR, weeks_at_number_one VARCHAR, issue_date_s_ VARCHAR)", "question": "Which Song has a Weeks at number one larger than 2, and an Issue date(s) of 17 april - 8 may?" }
### QUESTION Which Song has an Issue date(s) of 29 may - 26 june? ### CONTEXT CREATE TABLE table_name_17 (song VARCHAR, issue_date_s_ VARCHAR) ### ANSWER SELECT song FROM table_name_17 WHERE issue_date_s_ = "29 may - 26 june"
{ "answer": "SELECT song FROM table_name_17 WHERE issue_date_s_ = \"29 may - 26 june\"", "context": "CREATE TABLE table_name_17 (song VARCHAR, issue_date_s_ VARCHAR)", "question": "Which Song has an Issue date(s) of 29 may - 26 june?" }
### QUESTION What is Pronunciation Spelled Free, when Pronunciation Spelled Checked is "ɑ"? ### CONTEXT CREATE TABLE table_name_24 (pronunciation_spelled_free VARCHAR, pronunciation_spelled_checked VARCHAR) ### ANSWER SELECT pronunciation_spelled_free FROM table_name_24 WHERE pronunciation_spelled_checked = "ɑ"
{ "answer": "SELECT pronunciation_spelled_free FROM table_name_24 WHERE pronunciation_spelled_checked = \"ɑ\"", "context": "CREATE TABLE table_name_24 (pronunciation_spelled_free VARCHAR, pronunciation_spelled_checked VARCHAR)", "question": "What is Pronunciation Spelled Free, when Pronunciation Spelled Checked is \"ɑ\"?" }
### QUESTION Who placed in t5 and scored 73-69-68=210? ### CONTEXT CREATE TABLE table_name_76 (player VARCHAR, place VARCHAR, score VARCHAR) ### ANSWER SELECT player FROM table_name_76 WHERE place = "t5" AND score = 73 - 69 - 68 = 210
{ "answer": "SELECT player FROM table_name_76 WHERE place = \"t5\" AND score = 73 - 69 - 68 = 210", "context": "CREATE TABLE table_name_76 (player VARCHAR, place VARCHAR, score VARCHAR)", "question": "Who placed in t5 and scored 73-69-68=210?" }
### QUESTION What was Tom Watson's lowest To par when the total was larger than 144? ### CONTEXT CREATE TABLE table_name_44 (to_par INTEGER, player VARCHAR, total VARCHAR) ### ANSWER SELECT MIN(to_par) FROM table_name_44 WHERE player = "tom watson" AND total > 144
{ "answer": "SELECT MIN(to_par) FROM table_name_44 WHERE player = \"tom watson\" AND total > 144", "context": "CREATE TABLE table_name_44 (to_par INTEGER, player VARCHAR, total VARCHAR)", "question": "What was Tom Watson's lowest To par when the total was larger than 144?" }
### QUESTION What source has a race winner of ben adriaenssen / ben van den bogaart, and the gp winner of ben adriaenssen / ben van den bogaart, for the date of 1 april? ### CONTEXT CREATE TABLE table_name_8 (source VARCHAR, date VARCHAR, race_winners VARCHAR, gp_winner VARCHAR) ### ANSWER SELECT source FROM table_name_8 WHERE race_winners = "ben adriaenssen / ben van den bogaart" AND gp_winner = "ben adriaenssen / ben van den bogaart" AND date = "1 april"
{ "answer": "SELECT source FROM table_name_8 WHERE race_winners = \"ben adriaenssen / ben van den bogaart\" AND gp_winner = \"ben adriaenssen / ben van den bogaart\" AND date = \"1 april\"", "context": "CREATE TABLE table_name_8 (source VARCHAR, date VARCHAR, race_winners VARCHAR, gp_winner VARCHAR)", "question": "What source has a race winner of ben adriaenssen / ben van den bogaart, and the gp winner of ben adriaenssen / ben van den bogaart, for the date of 1 april?" }
### QUESTION What is the GP winner for the Race winners valentin giraud / nicolas musset, and a place genk? ### CONTEXT CREATE TABLE table_name_2 (gp_winner VARCHAR, race_winners VARCHAR, place VARCHAR) ### ANSWER SELECT gp_winner FROM table_name_2 WHERE race_winners = "valentin giraud / nicolas musset" AND place = "genk"
{ "answer": "SELECT gp_winner FROM table_name_2 WHERE race_winners = \"valentin giraud / nicolas musset\" AND place = \"genk\"", "context": "CREATE TABLE table_name_2 (gp_winner VARCHAR, race_winners VARCHAR, place VARCHAR)", "question": "What is the GP winner for the Race winners valentin giraud / nicolas musset, and a place genk?" }
### QUESTION What is the seat percentage when vote percentage is 2.4% (-8.3)? ### CONTEXT CREATE TABLE table_name_73 (seat_percentage VARCHAR, vote_percentage VARCHAR) ### ANSWER SELECT seat_percentage FROM table_name_73 WHERE vote_percentage = "2.4% (-8.3)"
{ "answer": "SELECT seat_percentage FROM table_name_73 WHERE vote_percentage = \"2.4% (-8.3)\"", "context": "CREATE TABLE table_name_73 (seat_percentage VARCHAR, vote_percentage VARCHAR)", "question": "What is the seat percentage when vote percentage is 2.4% (-8.3)?" }
### QUESTION What is the GP winner with a place of genk, with race winners ben adriaenssen / ben van den bogaart? ### CONTEXT CREATE TABLE table_name_30 (gp_winner VARCHAR, place VARCHAR, race_winners VARCHAR) ### ANSWER SELECT gp_winner FROM table_name_30 WHERE place = "genk" AND race_winners = "ben adriaenssen / ben van den bogaart"
{ "answer": "SELECT gp_winner FROM table_name_30 WHERE place = \"genk\" AND race_winners = \"ben adriaenssen / ben van den bogaart\"", "context": "CREATE TABLE table_name_30 (gp_winner VARCHAR, place VARCHAR, race_winners VARCHAR)", "question": "What is the GP winner with a place of genk, with race winners ben adriaenssen / ben van den bogaart?" }
### QUESTION What is Hometown, when Sport is "Basketball", and when Winner is "Dwight Howard"? ### CONTEXT CREATE TABLE table_name_83 (hometown VARCHAR, sport VARCHAR, winner VARCHAR) ### ANSWER SELECT hometown FROM table_name_83 WHERE sport = "basketball" AND winner = "dwight howard"
{ "answer": "SELECT hometown FROM table_name_83 WHERE sport = \"basketball\" AND winner = \"dwight howard\"", "context": "CREATE TABLE table_name_83 (hometown VARCHAR, sport VARCHAR, winner VARCHAR)", "question": "What is Hometown, when Sport is \"Basketball\", and when Winner is \"Dwight Howard\"?" }
### QUESTION What team did the Flames play against when 526 people attended the game? ### CONTEXT CREATE TABLE table_name_11 (opponent VARCHAR, attendance VARCHAR) ### ANSWER SELECT opponent FROM table_name_11 WHERE attendance = 526
{ "answer": "SELECT opponent FROM table_name_11 WHERE attendance = 526", "context": "CREATE TABLE table_name_11 (opponent VARCHAR, attendance VARCHAR)", "question": "What team did the Flames play against when 526 people attended the game?" }
### QUESTION Which Natural change has a Crude death rate (per 1000) larger than 9, and Deaths of 40 399? ### CONTEXT CREATE TABLE table_name_88 (natural_change VARCHAR, crude_death_rate__per_1000_ VARCHAR, deaths VARCHAR) ### ANSWER SELECT natural_change FROM table_name_88 WHERE crude_death_rate__per_1000_ > 9 AND deaths = "40 399"
{ "answer": "SELECT natural_change FROM table_name_88 WHERE crude_death_rate__per_1000_ > 9 AND deaths = \"40 399\"", "context": "CREATE TABLE table_name_88 (natural_change VARCHAR, crude_death_rate__per_1000_ VARCHAR, deaths VARCHAR)", "question": "Which Natural change has a Crude death rate (per 1000) larger than 9, and Deaths of 40 399?" }
### QUESTION What is Country, when Class is "15 meters", and when Qualifying Grand Prix is "Soaring Grand Prix Of United Kingdom"? ### CONTEXT CREATE TABLE table_name_43 (country VARCHAR, class VARCHAR, qualifying_grand_prix VARCHAR) ### ANSWER SELECT country FROM table_name_43 WHERE class = "15 meters" AND qualifying_grand_prix = "soaring grand prix of united kingdom"
{ "answer": "SELECT country FROM table_name_43 WHERE class = \"15 meters\" AND qualifying_grand_prix = \"soaring grand prix of united kingdom\"", "context": "CREATE TABLE table_name_43 (country VARCHAR, class VARCHAR, qualifying_grand_prix VARCHAR)", "question": "What is Country, when Class is \"15 meters\", and when Qualifying Grand Prix is \"Soaring Grand Prix Of United Kingdom\"?" }
### QUESTION What was the result of the game against the Miami Dolphins held at the Riverfront Stadium? ### CONTEXT CREATE TABLE table_name_46 (result VARCHAR, location VARCHAR, opponent VARCHAR) ### ANSWER SELECT result FROM table_name_46 WHERE location = "riverfront stadium" AND opponent = "miami dolphins"
{ "answer": "SELECT result FROM table_name_46 WHERE location = \"riverfront stadium\" AND opponent = \"miami dolphins\"", "context": "CREATE TABLE table_name_46 (result VARCHAR, location VARCHAR, opponent VARCHAR)", "question": "What was the result of the game against the Miami Dolphins held at the Riverfront Stadium?" }
### QUESTION What was the score of the friendly match at Amman on February 14, 2006? ### CONTEXT CREATE TABLE table_name_72 (score VARCHAR, date VARCHAR, venue VARCHAR, competition VARCHAR) ### ANSWER SELECT score FROM table_name_72 WHERE venue = "amman" AND competition = "friendly" AND date = "february 14, 2006"
{ "answer": "SELECT score FROM table_name_72 WHERE venue = \"amman\" AND competition = \"friendly\" AND date = \"february 14, 2006\"", "context": "CREATE TABLE table_name_72 (score VARCHAR, date VARCHAR, venue VARCHAR, competition VARCHAR)", "question": "What was the score of the friendly match at Amman on February 14, 2006?" }
### QUESTION What player scored 71-69-71=211? ### CONTEXT CREATE TABLE table_name_68 (player VARCHAR, score VARCHAR) ### ANSWER SELECT player FROM table_name_68 WHERE score = 71 - 69 - 71 = 211
{ "answer": "SELECT player FROM table_name_68 WHERE score = 71 - 69 - 71 = 211", "context": "CREATE TABLE table_name_68 (player VARCHAR, score VARCHAR)", "question": "What player scored 71-69-71=211?" }
### QUESTION What was the Venue of the San Francisco 49ers Home game with a Result of 30-10? ### CONTEXT CREATE TABLE table_name_89 (venue VARCHAR, home_team VARCHAR, result VARCHAR) ### ANSWER SELECT venue FROM table_name_89 WHERE home_team = "san francisco 49ers" AND result = "30-10"
{ "answer": "SELECT venue FROM table_name_89 WHERE home_team = \"san francisco 49ers\" AND result = \"30-10\"", "context": "CREATE TABLE table_name_89 (venue VARCHAR, home_team VARCHAR, result VARCHAR)", "question": "What was the Venue of the San Francisco 49ers Home game with a Result of 30-10?" }
### QUESTION What is the No. 6 of the person with a No. 10 of Joshua and a No. 8 of Andrew? ### CONTEXT CREATE TABLE table_name_56 (no_6 VARCHAR, no_10 VARCHAR, no_8 VARCHAR) ### ANSWER SELECT no_6 FROM table_name_56 WHERE no_10 = "joshua" AND no_8 = "andrew"
{ "answer": "SELECT no_6 FROM table_name_56 WHERE no_10 = \"joshua\" AND no_8 = \"andrew\"", "context": "CREATE TABLE table_name_56 (no_6 VARCHAR, no_10 VARCHAR, no_8 VARCHAR)", "question": "What is the No. 6 of the person with a No. 10 of Joshua and a No. 8 of Andrew?" }
### QUESTION What is Name, when Weight is "kg (lb)", when Club is "Gezira", and when Date of Birth is "1974-02-18"? ### CONTEXT CREATE TABLE table_name_83 (name VARCHAR, date_of_birth VARCHAR, weight VARCHAR, club VARCHAR) ### ANSWER SELECT name FROM table_name_83 WHERE weight = "kg (lb)" AND club = "gezira" AND date_of_birth = "1974-02-18"
{ "answer": "SELECT name FROM table_name_83 WHERE weight = \"kg (lb)\" AND club = \"gezira\" AND date_of_birth = \"1974-02-18\"", "context": "CREATE TABLE table_name_83 (name VARCHAR, date_of_birth VARCHAR, weight VARCHAR, club VARCHAR)", "question": "What is Name, when Weight is \"kg (lb)\", when Club is \"Gezira\", and when Date of Birth is \"1974-02-18\"?" }
### QUESTION What is Pos., when Height is "m (ft 10in)", and when Date of Birth is "1983-05-29"? ### CONTEXT CREATE TABLE table_name_45 (pos VARCHAR, height VARCHAR, date_of_birth VARCHAR) ### ANSWER SELECT pos FROM table_name_45 WHERE height = "m (ft 10in)" AND date_of_birth = "1983-05-29"
{ "answer": "SELECT pos FROM table_name_45 WHERE height = \"m (ft 10in)\" AND date_of_birth = \"1983-05-29\"", "context": "CREATE TABLE table_name_45 (pos VARCHAR, height VARCHAR, date_of_birth VARCHAR)", "question": "What is Pos., when Height is \"m (ft 10in)\", and when Date of Birth is \"1983-05-29\"?" }
### QUESTION Which road team has a result of 117-114? ### CONTEXT CREATE TABLE table_name_61 (road_team VARCHAR, result VARCHAR) ### ANSWER SELECT road_team FROM table_name_61 WHERE result = "117-114"
{ "answer": "SELECT road_team FROM table_name_61 WHERE result = \"117-114\"", "context": "CREATE TABLE table_name_61 (road_team VARCHAR, result VARCHAR)", "question": "Which road team has a result of 117-114?" }
### QUESTION What is the road team playing against Boston on April 16? ### CONTEXT CREATE TABLE table_name_94 (road_team VARCHAR, home_team VARCHAR, date VARCHAR) ### ANSWER SELECT road_team FROM table_name_94 WHERE home_team = "boston" AND date = "april 16"
{ "answer": "SELECT road_team FROM table_name_94 WHERE home_team = \"boston\" AND date = \"april 16\"", "context": "CREATE TABLE table_name_94 (road_team VARCHAR, home_team VARCHAR, date VARCHAR)", "question": "What is the road team playing against Boston on April 16?" }
### QUESTION Which Series 2 has a Series 3 of deborah meaden? ### CONTEXT CREATE TABLE table_name_35 (series_2 VARCHAR, series_3 VARCHAR) ### ANSWER SELECT series_2 FROM table_name_35 WHERE series_3 = "deborah meaden"
{ "answer": "SELECT series_2 FROM table_name_35 WHERE series_3 = \"deborah meaden\"", "context": "CREATE TABLE table_name_35 (series_2 VARCHAR, series_3 VARCHAR)", "question": "Which Series 2 has a Series 3 of deborah meaden?" }
### QUESTION How many Seat Orders (Right to Left) have a Series 3 of deborah meaden? ### CONTEXT CREATE TABLE table_name_83 (seat_order__right_to_left_ VARCHAR, series_3 VARCHAR) ### ANSWER SELECT COUNT(seat_order__right_to_left_) FROM table_name_83 WHERE series_3 = "deborah meaden"
{ "answer": "SELECT COUNT(seat_order__right_to_left_) FROM table_name_83 WHERE series_3 = \"deborah meaden\"", "context": "CREATE TABLE table_name_83 (seat_order__right_to_left_ VARCHAR, series_3 VARCHAR)", "question": "How many Seat Orders (Right to Left) have a Series 3 of deborah meaden?" }
### QUESTION How many votes went to other candidates in the county that gave 1.9% votes to them, and 160,390 total votes to Bush? ### CONTEXT CREATE TABLE table_name_12 (others_number INTEGER, others_percentage VARCHAR, bush_number VARCHAR) ### ANSWER SELECT MIN(others_number) FROM table_name_12 WHERE others_percentage = "1.9%" AND bush_number < 160 OFFSET 390
{ "answer": "SELECT MIN(others_number) FROM table_name_12 WHERE others_percentage = \"1.9%\" AND bush_number < 160 OFFSET 390", "context": "CREATE TABLE table_name_12 (others_number INTEGER, others_percentage VARCHAR, bush_number VARCHAR)", "question": "How many votes went to other candidates in the county that gave 1.9% votes to them, and 160,390 total votes to Bush?" }
### QUESTION How many Seats 2005 has a Percentage in/de-crease of 50.0%, and a Governorate of dhi qar governorate, and a In/de-creased by larger than 6? ### CONTEXT CREATE TABLE table_name_14 (seats_2005 INTEGER, in_de_creased_by VARCHAR, percentage_in_de_crease VARCHAR, governorate VARCHAR) ### ANSWER SELECT SUM(seats_2005) FROM table_name_14 WHERE percentage_in_de_crease = "50.0%" AND governorate = "dhi qar governorate" AND in_de_creased_by > 6
{ "answer": "SELECT SUM(seats_2005) FROM table_name_14 WHERE percentage_in_de_crease = \"50.0%\" AND governorate = \"dhi qar governorate\" AND in_de_creased_by > 6", "context": "CREATE TABLE table_name_14 (seats_2005 INTEGER, in_de_creased_by VARCHAR, percentage_in_de_crease VARCHAR, governorate VARCHAR)", "question": "How many Seats 2005 has a Percentage in/de-crease of 50.0%, and a Governorate of dhi qar governorate, and a In/de-creased by larger than 6?" }
### QUESTION Name the lowest Seats 2010 which has Seats 2005 smaller than 9, and a Governorate of al muthanna governorate, and an In/de-creased by larger than 2? ### CONTEXT CREATE TABLE table_name_46 (seats_2010 INTEGER, in_de_creased_by VARCHAR, seats_2005 VARCHAR, governorate VARCHAR) ### ANSWER SELECT MIN(seats_2010) FROM table_name_46 WHERE seats_2005 < 9 AND governorate = "al muthanna governorate" AND in_de_creased_by > 2
{ "answer": "SELECT MIN(seats_2010) FROM table_name_46 WHERE seats_2005 < 9 AND governorate = \"al muthanna governorate\" AND in_de_creased_by > 2", "context": "CREATE TABLE table_name_46 (seats_2010 INTEGER, in_de_creased_by VARCHAR, seats_2005 VARCHAR, governorate VARCHAR)", "question": "Name the lowest Seats 2010 which has Seats 2005 smaller than 9, and a Governorate of al muthanna governorate, and an In/de-creased by larger than 2?" }
### QUESTION Name the average In/de-creased by which has a Governorate of al anbar governorate, and Seats 2005 smaller than 9? ### CONTEXT CREATE TABLE table_name_66 (in_de_creased_by INTEGER, governorate VARCHAR, seats_2005 VARCHAR) ### ANSWER SELECT AVG(in_de_creased_by) FROM table_name_66 WHERE governorate = "al anbar governorate" AND seats_2005 < 9
{ "answer": "SELECT AVG(in_de_creased_by) FROM table_name_66 WHERE governorate = \"al anbar governorate\" AND seats_2005 < 9", "context": "CREATE TABLE table_name_66 (in_de_creased_by INTEGER, governorate VARCHAR, seats_2005 VARCHAR)", "question": "Name the average In/de-creased by which has a Governorate of al anbar governorate, and Seats 2005 smaller than 9?" }
### QUESTION Name the highest In/de-creased which has a Percentage in/de-crease of 100%, and Seats 2010 larger than 8? ### CONTEXT CREATE TABLE table_name_34 (in_de_creased_by INTEGER, percentage_in_de_crease VARCHAR, seats_2010 VARCHAR) ### ANSWER SELECT MAX(in_de_creased_by) FROM table_name_34 WHERE percentage_in_de_crease = "100%" AND seats_2010 > 8
{ "answer": "SELECT MAX(in_de_creased_by) FROM table_name_34 WHERE percentage_in_de_crease = \"100%\" AND seats_2010 > 8", "context": "CREATE TABLE table_name_34 (in_de_creased_by INTEGER, percentage_in_de_crease VARCHAR, seats_2010 VARCHAR)", "question": "Name the highest In/de-creased which has a Percentage in/de-crease of 100%, and Seats 2010 larger than 8?" }
### QUESTION What is Stop No., when Destination is [2778] Claisebrook Station Platforms? ### CONTEXT CREATE TABLE table_name_25 (stop_no VARCHAR, destination VARCHAR) ### ANSWER SELECT stop_no FROM table_name_25 WHERE destination = "[2778] claisebrook station platforms"
{ "answer": "SELECT stop_no FROM table_name_25 WHERE destination = \"[2778] claisebrook station platforms\"", "context": "CREATE TABLE table_name_25 (stop_no VARCHAR, destination VARCHAR)", "question": "What is Stop No., when Destination is [2778] Claisebrook Station Platforms?" }
### QUESTION Which coach founded the Western Strikers team after 1963? ### CONTEXT CREATE TABLE table_name_58 (coach VARCHAR, founded VARCHAR, team VARCHAR) ### ANSWER SELECT coach FROM table_name_58 WHERE founded > 1963 AND team = "western strikers"
{ "answer": "SELECT coach FROM table_name_58 WHERE founded > 1963 AND team = \"western strikers\"", "context": "CREATE TABLE table_name_58 (coach VARCHAR, founded VARCHAR, team VARCHAR)", "question": "Which coach founded the Western Strikers team after 1963?" }
### QUESTION What is the total number of First Year, when Displacement CC is greater than 4719, when Engine is V8, when Power HP (kW) is "335 (246)", and when Model is "Ghibli SS"? ### CONTEXT CREATE TABLE table_name_18 (first_year VARCHAR, model VARCHAR, power_hp__kw_ VARCHAR, displacement_cc VARCHAR, engine VARCHAR) ### ANSWER SELECT COUNT(first_year) FROM table_name_18 WHERE displacement_cc > 4719 AND engine = "v8" AND power_hp__kw_ = "335 (246)" AND model = "ghibli ss"
{ "answer": "SELECT COUNT(first_year) FROM table_name_18 WHERE displacement_cc > 4719 AND engine = \"v8\" AND power_hp__kw_ = \"335 (246)\" AND model = \"ghibli ss\"", "context": "CREATE TABLE table_name_18 (first_year VARCHAR, model VARCHAR, power_hp__kw_ VARCHAR, displacement_cc VARCHAR, engine VARCHAR)", "question": "What is the total number of First Year, when Displacement CC is greater than 4719, when Engine is V8, when Power HP (kW) is \"335 (246)\", and when Model is \"Ghibli SS\"?" }
### QUESTION Which Ending has British of iz, and Examples of achilles, appendices, fæces? ### CONTEXT CREATE TABLE table_name_49 (ending VARCHAR, british VARCHAR, examples VARCHAR) ### ANSWER SELECT ending FROM table_name_49 WHERE british = "iz" AND examples = "achilles, appendices, fæces"
{ "answer": "SELECT ending FROM table_name_49 WHERE british = \"iz\" AND examples = \"achilles, appendices, fæces\"", "context": "CREATE TABLE table_name_49 (ending VARCHAR, british VARCHAR, examples VARCHAR)", "question": "Which Ending has British of iz, and Examples of achilles, appendices, fæces?" }
### QUESTION What is Power HP (kW), when First Year is greater than 1965, when Distribution is "International", when Engine is V6 Biturbo, and when Model is "425"? ### CONTEXT CREATE TABLE table_name_60 (power_hp__kw_ VARCHAR, model VARCHAR, engine VARCHAR, first_year VARCHAR, distribution VARCHAR) ### ANSWER SELECT power_hp__kw_ FROM table_name_60 WHERE first_year > 1965 AND distribution = "international" AND engine = "v6 biturbo" AND model = "425"
{ "answer": "SELECT power_hp__kw_ FROM table_name_60 WHERE first_year > 1965 AND distribution = \"international\" AND engine = \"v6 biturbo\" AND model = \"425\"", "context": "CREATE TABLE table_name_60 (power_hp__kw_ VARCHAR, model VARCHAR, engine VARCHAR, first_year VARCHAR, distribution VARCHAR)", "question": "What is Power HP (kW), when First Year is greater than 1965, when Distribution is \"International\", when Engine is V6 Biturbo, and when Model is \"425\"?" }
### QUESTION What is the lowest First Year, when Model is "Quattroporte (2.8)"? ### CONTEXT CREATE TABLE table_name_15 (first_year INTEGER, model VARCHAR) ### ANSWER SELECT MIN(first_year) FROM table_name_15 WHERE model = "quattroporte (2.8)"
{ "answer": "SELECT MIN(first_year) FROM table_name_15 WHERE model = \"quattroporte (2.8)\"", "context": "CREATE TABLE table_name_15 (first_year INTEGER, model VARCHAR)", "question": "What is the lowest First Year, when Model is \"Quattroporte (2.8)\"?" }
### QUESTION What is Score, when Venue is Riyadh, Saudi Arabia, and when Result is "Win"? ### CONTEXT CREATE TABLE table_name_22 (score VARCHAR, venue VARCHAR, result VARCHAR) ### ANSWER SELECT score FROM table_name_22 WHERE venue = "riyadh, saudi arabia" AND result = "win"
{ "answer": "SELECT score FROM table_name_22 WHERE venue = \"riyadh, saudi arabia\" AND result = \"win\"", "context": "CREATE TABLE table_name_22 (score VARCHAR, venue VARCHAR, result VARCHAR)", "question": "What is Score, when Venue is Riyadh, Saudi Arabia, and when Result is \"Win\"?" }
### QUESTION What is Result, when Date is "June 11, 1994", and when Venue is "Miami, United States"? ### CONTEXT CREATE TABLE table_name_58 (result VARCHAR, date VARCHAR, venue VARCHAR) ### ANSWER SELECT result FROM table_name_58 WHERE date = "june 11, 1994" AND venue = "miami, united states"
{ "answer": "SELECT result FROM table_name_58 WHERE date = \"june 11, 1994\" AND venue = \"miami, united states\"", "context": "CREATE TABLE table_name_58 (result VARCHAR, date VARCHAR, venue VARCHAR)", "question": "What is Result, when Date is \"June 11, 1994\", and when Venue is \"Miami, United States\"?" }
### QUESTION What kind of Spike has a Name of mia jerkov category:articles with hcards? ### CONTEXT CREATE TABLE table_name_27 (spike VARCHAR, name VARCHAR) ### ANSWER SELECT spike FROM table_name_27 WHERE name = "mia jerkov category:articles with hcards"
{ "answer": "SELECT spike FROM table_name_27 WHERE name = \"mia jerkov category:articles with hcards\"", "context": "CREATE TABLE table_name_27 (spike VARCHAR, name VARCHAR)", "question": "What kind of Spike has a Name of mia jerkov category:articles with hcards?" }
### QUESTION Name the 2013 club which has a Name of ana grbac category:articles with hcards? ### CONTEXT CREATE TABLE table_name_62 (name VARCHAR) ### ANSWER SELECT 2013 AS _club FROM table_name_62 WHERE name = "ana grbac category:articles with hcards"
{ "answer": "SELECT 2013 AS _club FROM table_name_62 WHERE name = \"ana grbac category:articles with hcards\"", "context": "CREATE TABLE table_name_62 (name VARCHAR)", "question": "Name the 2013 club which has a Name of ana grbac category:articles with hcards?" }
### QUESTION What is the number of people on board at Iberia Airline, with the aircraft type of lockheed l-1049g? ### CONTEXT CREATE TABLE table_name_48 (people_on_board INTEGER, airline VARCHAR, aircraft_type VARCHAR) ### ANSWER SELECT AVG(people_on_board) FROM table_name_48 WHERE airline = "iberia" AND aircraft_type = "lockheed l-1049g"
{ "answer": "SELECT AVG(people_on_board) FROM table_name_48 WHERE airline = \"iberia\" AND aircraft_type = \"lockheed l-1049g\"", "context": "CREATE TABLE table_name_48 (people_on_board INTEGER, airline VARCHAR, aircraft_type VARCHAR)", "question": "What is the number of people on board at Iberia Airline, with the aircraft type of lockheed l-1049g?" }
### QUESTION What is the Event, when Year is 2002, and when Competition is European Indoor Championships? ### CONTEXT CREATE TABLE table_name_6 (event VARCHAR, year VARCHAR, competition VARCHAR) ### ANSWER SELECT event FROM table_name_6 WHERE year = 2002 AND competition = "european indoor championships"
{ "answer": "SELECT event FROM table_name_6 WHERE year = 2002 AND competition = \"european indoor championships\"", "context": "CREATE TABLE table_name_6 (event VARCHAR, year VARCHAR, competition VARCHAR)", "question": "What is the Event, when Year is 2002, and when Competition is European Indoor Championships?" }
### QUESTION What is the year when not nominated was the result, and In the Navel of the Sea was the film title used in nomination? ### CONTEXT CREATE TABLE table_name_24 (year__ceremony_ VARCHAR, result VARCHAR, film_title_used_in_nomination VARCHAR) ### ANSWER SELECT year__ceremony_ FROM table_name_24 WHERE result = "not nominated" AND film_title_used_in_nomination = "in the navel of the sea"
{ "answer": "SELECT year__ceremony_ FROM table_name_24 WHERE result = \"not nominated\" AND film_title_used_in_nomination = \"in the navel of the sea\"", "context": "CREATE TABLE table_name_24 (year__ceremony_ VARCHAR, result VARCHAR, film_title_used_in_nomination VARCHAR)", "question": "What is the year when not nominated was the result, and In the Navel of the Sea was the film title used in nomination?" }
### QUESTION How many rounds is the fight against Michael Chavez? ### CONTEXT CREATE TABLE table_name_46 (round INTEGER, opponent VARCHAR) ### ANSWER SELECT AVG(round) FROM table_name_46 WHERE opponent = "michael chavez"
{ "answer": "SELECT AVG(round) FROM table_name_46 WHERE opponent = \"michael chavez\"", "context": "CREATE TABLE table_name_46 (round INTEGER, opponent VARCHAR)", "question": "How many rounds is the fight against Michael Chavez?" }
### QUESTION What date was the match where Daniel Gimeno-Traver's partner was pere riba? ### CONTEXT CREATE TABLE table_name_26 (date VARCHAR, partner VARCHAR) ### ANSWER SELECT date FROM table_name_26 WHERE partner = "pere riba"
{ "answer": "SELECT date FROM table_name_26 WHERE partner = \"pere riba\"", "context": "CREATE TABLE table_name_26 (date VARCHAR, partner VARCHAR)", "question": "What date was the match where Daniel Gimeno-Traver's partner was pere riba?" }
### QUESTION What country has a total greater than 270, with sandy lyle as the player? ### CONTEXT CREATE TABLE table_name_94 (country VARCHAR, total VARCHAR, player VARCHAR) ### ANSWER SELECT country FROM table_name_94 WHERE total > 270 AND player = "sandy lyle"
{ "answer": "SELECT country FROM table_name_94 WHERE total > 270 AND player = \"sandy lyle\"", "context": "CREATE TABLE table_name_94 (country VARCHAR, total VARCHAR, player VARCHAR)", "question": "What country has a total greater than 270, with sandy lyle as the player?" }
### QUESTION What year has Stacy as the category and award of Best Reality Star in Social Media? ### CONTEXT CREATE TABLE table_name_10 (year INTEGER, category VARCHAR, awards VARCHAR) ### ANSWER SELECT MIN(year) FROM table_name_10 WHERE category = "stacy" AND awards = "best reality star in social media"
{ "answer": "SELECT MIN(year) FROM table_name_10 WHERE category = \"stacy\" AND awards = \"best reality star in social media\"", "context": "CREATE TABLE table_name_10 (year INTEGER, category VARCHAR, awards VARCHAR)", "question": "What year has Stacy as the category and award of Best Reality Star in Social Media?" }
### QUESTION What was the result in the year greaters than 2008 with an award of Jahat and had a category of Stacy? ### CONTEXT CREATE TABLE table_name_51 (result VARCHAR, awards VARCHAR, category VARCHAR, year VARCHAR) ### ANSWER SELECT result FROM table_name_51 WHERE category = "stacy" AND year > 2008 AND awards = "jahat"
{ "answer": "SELECT result FROM table_name_51 WHERE category = \"stacy\" AND year > 2008 AND awards = \"jahat\"", "context": "CREATE TABLE table_name_51 (result VARCHAR, awards VARCHAR, category VARCHAR, year VARCHAR)", "question": "What was the result in the year greaters than 2008 with an award of Jahat and had a category of Stacy?" }
### QUESTION Which date has Total Holocaust records in the ed Remaster cassette format? ### CONTEXT CREATE TABLE table_name_85 (date VARCHAR, label VARCHAR, format VARCHAR) ### ANSWER SELECT date FROM table_name_85 WHERE label = "total holocaust records" AND format = "ed remaster cassette"
{ "answer": "SELECT date FROM table_name_85 WHERE label = \"total holocaust records\" AND format = \"ed remaster cassette\"", "context": "CREATE TABLE table_name_85 (date VARCHAR, label VARCHAR, format VARCHAR)", "question": "Which date has Total Holocaust records in the ed Remaster cassette format?" }
### QUESTION Which Date has a Record of 1-4? ### CONTEXT CREATE TABLE table_name_34 (date VARCHAR, record VARCHAR) ### ANSWER SELECT date FROM table_name_34 WHERE record = "1-4"
{ "answer": "SELECT date FROM table_name_34 WHERE record = \"1-4\"", "context": "CREATE TABLE table_name_34 (date VARCHAR, record VARCHAR)", "question": "Which Date has a Record of 1-4?" }
### QUESTION What is the Model Number, when the Voltage is 3.45 V, and when the Frequency is 133 MHZ? ### CONTEXT CREATE TABLE table_name_86 (model_number VARCHAR, voltage VARCHAR, frequency VARCHAR) ### ANSWER SELECT model_number FROM table_name_86 WHERE voltage = "3.45 v" AND frequency = "133 mhz"
{ "answer": "SELECT model_number FROM table_name_86 WHERE voltage = \"3.45 v\" AND frequency = \"133 mhz\"", "context": "CREATE TABLE table_name_86 (model_number VARCHAR, voltage VARCHAR, frequency VARCHAR)", "question": "What is the Model Number, when the Voltage is 3.45 V, and when the Frequency is 133 MHZ?" }
### QUESTION What is the Score of the Chicago Black Hawks Home game with the Visiting Vancouver Canucks on November 17? ### CONTEXT CREATE TABLE table_name_30 (score VARCHAR, date VARCHAR, home VARCHAR, visitor VARCHAR) ### ANSWER SELECT score FROM table_name_30 WHERE home = "chicago black hawks" AND visitor = "vancouver canucks" AND date = "november 17"
{ "answer": "SELECT score FROM table_name_30 WHERE home = \"chicago black hawks\" AND visitor = \"vancouver canucks\" AND date = \"november 17\"", "context": "CREATE TABLE table_name_30 (score VARCHAR, date VARCHAR, home VARCHAR, visitor VARCHAR)", "question": "What is the Score of the Chicago Black Hawks Home game with the Visiting Vancouver Canucks on November 17?" }
### QUESTION How many people attended the game with a kickoff time of cbs 1:00pm, in a week earlier than 8, on September 15, 2002? ### CONTEXT CREATE TABLE table_name_56 (attendance VARCHAR, date VARCHAR, kickoff_time VARCHAR, week VARCHAR) ### ANSWER SELECT attendance FROM table_name_56 WHERE kickoff_time = "cbs 1:00pm" AND week < 8 AND date = "september 15, 2002"
{ "answer": "SELECT attendance FROM table_name_56 WHERE kickoff_time = \"cbs 1:00pm\" AND week < 8 AND date = \"september 15, 2002\"", "context": "CREATE TABLE table_name_56 (attendance VARCHAR, date VARCHAR, kickoff_time VARCHAR, week VARCHAR)", "question": "How many people attended the game with a kickoff time of cbs 1:00pm, in a week earlier than 8, on September 15, 2002?" }
### QUESTION What Location has a College or Campus Name of anna university - tharamani campus? ### CONTEXT CREATE TABLE table_name_81 (location VARCHAR, college_or_campus_name VARCHAR) ### ANSWER SELECT location FROM table_name_81 WHERE college_or_campus_name = "anna university - tharamani campus"
{ "answer": "SELECT location FROM table_name_81 WHERE college_or_campus_name = \"anna university - tharamani campus\"", "context": "CREATE TABLE table_name_81 (location VARCHAR, college_or_campus_name VARCHAR)", "question": "What Location has a College or Campus Name of anna university - tharamani campus?" }
### QUESTION Which Record has a Location/Attendance of palace of auburn hills 8,108? ### CONTEXT CREATE TABLE table_name_22 (record VARCHAR, location_attendance VARCHAR) ### ANSWER SELECT record FROM table_name_22 WHERE location_attendance = "palace of auburn hills 8,108"
{ "answer": "SELECT record FROM table_name_22 WHERE location_attendance = \"palace of auburn hills 8,108\"", "context": "CREATE TABLE table_name_22 (record VARCHAR, location_attendance VARCHAR)", "question": "Which Record has a Location/Attendance of palace of auburn hills 8,108?" }
### QUESTION Which High rebounds has a High points of douglas (23)? ### CONTEXT CREATE TABLE table_name_23 (high_rebounds VARCHAR, high_points VARCHAR) ### ANSWER SELECT high_rebounds FROM table_name_23 WHERE high_points = "douglas (23)"
{ "answer": "SELECT high_rebounds FROM table_name_23 WHERE high_points = \"douglas (23)\"", "context": "CREATE TABLE table_name_23 (high_rebounds VARCHAR, high_points VARCHAR)", "question": "Which High rebounds has a High points of douglas (23)?" }
### QUESTION Which Quantity has a Type of e h4v, and a Year(s) of Manufacture of 1920–1924? ### CONTEXT CREATE TABLE table_name_87 (quantity INTEGER, type VARCHAR, year_s__of_manufacture VARCHAR) ### ANSWER SELECT MIN(quantity) FROM table_name_87 WHERE type = "e h4v" AND year_s__of_manufacture = "1920–1924"
{ "answer": "SELECT MIN(quantity) FROM table_name_87 WHERE type = \"e h4v\" AND year_s__of_manufacture = \"1920–1924\"", "context": "CREATE TABLE table_name_87 (quantity INTEGER, type VARCHAR, year_s__of_manufacture VARCHAR)", "question": "Which Quantity has a Type of e h4v, and a Year(s) of Manufacture of 1920–1924?" }
### QUESTION Where is the kap shui mun bridge? ### CONTEXT CREATE TABLE table_name_35 (location VARCHAR, name VARCHAR) ### ANSWER SELECT location FROM table_name_35 WHERE name = "kap shui mun bridge"
{ "answer": "SELECT location FROM table_name_35 WHERE name = \"kap shui mun bridge\"", "context": "CREATE TABLE table_name_35 (location VARCHAR, name VARCHAR)", "question": "Where is the kap shui mun bridge?" }
### QUESTION Who is the co-contestant (yaar vs. Pyaar) with Vishal Singh as the main contestant? ### CONTEXT CREATE TABLE table_name_90 (co_contestant__yaar_vs_pyaar_ VARCHAR, main_contestant VARCHAR) ### ANSWER SELECT co_contestant__yaar_vs_pyaar_ FROM table_name_90 WHERE main_contestant = "vishal singh"
{ "answer": "SELECT co_contestant__yaar_vs_pyaar_ FROM table_name_90 WHERE main_contestant = \"vishal singh\"", "context": "CREATE TABLE table_name_90 (co_contestant__yaar_vs_pyaar_ VARCHAR, main_contestant VARCHAR)", "question": "Who is the co-contestant (yaar vs. Pyaar) with Vishal Singh as the main contestant?" }
### QUESTION How many South Asians were there in 2011 in Quebec when there were fewer than 59,510 in 2001? ### CONTEXT CREATE TABLE table_name_19 (south_asians_2011 VARCHAR, province VARCHAR, south_asians_2001 VARCHAR) ### ANSWER SELECT COUNT(south_asians_2011) FROM table_name_19 WHERE province = "quebec" AND south_asians_2001 < 59 OFFSET 510
{ "answer": "SELECT COUNT(south_asians_2011) FROM table_name_19 WHERE province = \"quebec\" AND south_asians_2001 < 59 OFFSET 510", "context": "CREATE TABLE table_name_19 (south_asians_2011 VARCHAR, province VARCHAR, south_asians_2001 VARCHAR)", "question": "How many South Asians were there in 2011 in Quebec when there were fewer than 59,510 in 2001?" }
### QUESTION Who is the main contestant with a total score/week of 42/60 and a co-contestant (Yaar vs. Pyaa) of Tina Sachdev? ### CONTEXT CREATE TABLE table_name_29 (main_contestant VARCHAR, total_score_week VARCHAR, co_contestant__yaar_vs_pyaar_ VARCHAR) ### ANSWER SELECT main_contestant FROM table_name_29 WHERE total_score_week = "42/60" AND co_contestant__yaar_vs_pyaar_ = "tina sachdev"
{ "answer": "SELECT main_contestant FROM table_name_29 WHERE total_score_week = \"42/60\" AND co_contestant__yaar_vs_pyaar_ = \"tina sachdev\"", "context": "CREATE TABLE table_name_29 (main_contestant VARCHAR, total_score_week VARCHAR, co_contestant__yaar_vs_pyaar_ VARCHAR)", "question": "Who is the main contestant with a total score/week of 42/60 and a co-contestant (Yaar vs. Pyaa) of Tina Sachdev?" }
### QUESTION How many South Asians on average were in Alberta in 2001 and in 2011 had 159,055? ### CONTEXT CREATE TABLE table_name_86 (south_asians_2001 INTEGER, province VARCHAR, south_asians_2011 VARCHAR) ### ANSWER SELECT AVG(south_asians_2001) FROM table_name_86 WHERE province = "alberta" AND south_asians_2011 > 159 OFFSET 055
{ "answer": "SELECT AVG(south_asians_2001) FROM table_name_86 WHERE province = \"alberta\" AND south_asians_2011 > 159 OFFSET 055", "context": "CREATE TABLE table_name_86 (south_asians_2001 INTEGER, province VARCHAR, south_asians_2011 VARCHAR)", "question": "How many South Asians on average were in Alberta in 2001 and in 2011 had 159,055?" }
### QUESTION Which Nanquan has a Nandao smaller than 9.44, and a Rank smaller than 9, and a Total larger than 18.68? ### CONTEXT CREATE TABLE table_name_27 (nanquan INTEGER, total VARCHAR, nandao VARCHAR, rank VARCHAR) ### ANSWER SELECT MIN(nanquan) FROM table_name_27 WHERE nandao < 9.44 AND rank < 9 AND total > 18.68
{ "answer": "SELECT MIN(nanquan) FROM table_name_27 WHERE nandao < 9.44 AND rank < 9 AND total > 18.68", "context": "CREATE TABLE table_name_27 (nanquan INTEGER, total VARCHAR, nandao VARCHAR, rank VARCHAR)", "question": "Which Nanquan has a Nandao smaller than 9.44, and a Rank smaller than 9, and a Total larger than 18.68?" }