text
stringlengths
150
1.06k
source
dict
### QUESTION Birth Date of 8 November 1980, and a Weight smaller than 93 has what sum of a shirt number? ### CONTEXT CREATE TABLE table_name_6 (shirt_no INTEGER, birth_date VARCHAR, weight VARCHAR) ### ANSWER SELECT SUM(shirt_no) FROM table_name_6 WHERE birth_date = "8 november 1980" AND weight < 93</s>
{ "answer": "SELECT SUM(shirt_no) FROM table_name_6 WHERE birth_date = \"8 november 1980\" AND weight < 93", "context": "CREATE TABLE table_name_6 (shirt_no INTEGER, birth_date VARCHAR, weight VARCHAR)", "question": "Birth Date of 8 November 1980, and a Weight smaller than 93 has what sum of a shirt number?" }
### QUESTION Shirt number of 18, and a Height larger than 195 has how much weight? ### CONTEXT CREATE TABLE table_name_63 (weight VARCHAR, shirt_no VARCHAR, height VARCHAR) ### ANSWER SELECT COUNT(weight) FROM table_name_63 WHERE shirt_no = 18 AND height > 195</s>
{ "answer": "SELECT COUNT(weight) FROM table_name_63 WHERE shirt_no = 18 AND height > 195", "context": "CREATE TABLE table_name_63 (weight VARCHAR, shirt_no VARCHAR, height VARCHAR)", "question": "Shirt number of 18, and a Height larger than 195 has how much weight?" }
### QUESTION Who is the opponent the Seattle Seahawks played when their record was 1-3? ### CONTEXT CREATE TABLE table_name_57 (opponent VARCHAR, record VARCHAR) ### ANSWER SELECT opponent FROM table_name_57 WHERE record = "1-3"</s>
{ "answer": "SELECT opponent FROM table_name_57 WHERE record = \"1-3\"", "context": "CREATE TABLE table_name_57 (opponent VARCHAR, record VARCHAR)", "question": "Who is the opponent the Seattle Seahawks played when their record was 1-3?" }
### QUESTION What is the total number of runners-up for a club with winning years of 2010? ### CONTEXT CREATE TABLE table_name_92 (runners_up VARCHAR, winning_years VARCHAR) ### ANSWER SELECT COUNT(runners_up) FROM table_name_92 WHERE winning_years = "2010"</s>
{ "answer": "SELECT COUNT(runners_up) FROM table_name_92 WHERE winning_years = \"2010\"", "context": "CREATE TABLE table_name_92 (runners_up VARCHAR, winning_years VARCHAR)", "question": "What is the total number of runners-up for a club with winning years of 2010?" }
### QUESTION Who was the opponent at the game that had a loss of Harden (9-6)? ### CONTEXT CREATE TABLE table_name_27 (opponent VARCHAR, loss VARCHAR) ### ANSWER SELECT opponent FROM table_name_27 WHERE loss = "harden (9-6)"</s>
{ "answer": "SELECT opponent FROM table_name_27 WHERE loss = \"harden (9-6)\"", "context": "CREATE TABLE table_name_27 (opponent VARCHAR, loss VARCHAR)", "question": "Who was the opponent at the game that had a loss of Harden (9-6)?" }
### QUESTION Name the sum of Laps for co-drivers of oliver gavin jan magnussen and class of gts with year less than 2004 ### CONTEXT CREATE TABLE table_name_17 (laps INTEGER, year VARCHAR, co_drivers VARCHAR, class VARCHAR) ### ANSWER SELECT SUM(laps) FROM table_name_17 WHERE co_drivers = "oliver gavin jan magnussen" AND class = "gts" AND year < 2004</s>
{ "answer": "SELECT SUM(laps) FROM table_name_17 WHERE co_drivers = \"oliver gavin jan magnussen\" AND class = \"gts\" AND year < 2004", "context": "CREATE TABLE table_name_17 (laps INTEGER, year VARCHAR, co_drivers VARCHAR, class VARCHAR)", "question": "Name the sum of Laps for co-drivers of oliver gavin jan magnussen and class of gts with year less than 2004" }
### QUESTION What is the hardness for the alloy that is liquid at 243 degrees C? ### CONTEXT CREATE TABLE table_name_45 (hardness VARCHAR, liquid_at__°c_ VARCHAR) ### ANSWER SELECT hardness FROM table_name_45 WHERE liquid_at__°c_ = "243"</s>
{ "answer": "SELECT hardness FROM table_name_45 WHERE liquid_at__°c_ = \"243\"", "context": "CREATE TABLE table_name_45 (hardness VARCHAR, liquid_at__°c_ VARCHAR)", "question": "What is the hardness for the alloy that is liquid at 243 degrees C?" }
### QUESTION What is the casting temperature for the alloy with hardness 21? ### CONTEXT CREATE TABLE table_name_98 (casting_at__°c_ VARCHAR, hardness VARCHAR) ### ANSWER SELECT casting_at__°c_ FROM table_name_98 WHERE hardness = "21"</s>
{ "answer": "SELECT casting_at__°c_ FROM table_name_98 WHERE hardness = \"21\"", "context": "CREATE TABLE table_name_98 (casting_at__°c_ VARCHAR, hardness VARCHAR)", "question": "What is the casting temperature for the alloy with hardness 21?" }
### QUESTION How many laps were there for a grid of 13? ### CONTEXT CREATE TABLE table_name_35 (laps VARCHAR, grid VARCHAR) ### ANSWER SELECT COUNT(laps) FROM table_name_35 WHERE grid = 13</s>
{ "answer": "SELECT COUNT(laps) FROM table_name_35 WHERE grid = 13", "context": "CREATE TABLE table_name_35 (laps VARCHAR, grid VARCHAR)", "question": "How many laps were there for a grid of 13?" }
### QUESTION What is the highest Ranking Round Rank for Russia with a Final Rank over 11? ### CONTEXT CREATE TABLE table_name_3 (ranking_round_rank INTEGER, nation VARCHAR, final_rank VARCHAR) ### ANSWER SELECT MAX(ranking_round_rank) FROM table_name_3 WHERE nation = "russia" AND final_rank > 11</s>
{ "answer": "SELECT MAX(ranking_round_rank) FROM table_name_3 WHERE nation = \"russia\" AND final_rank > 11", "context": "CREATE TABLE table_name_3 (ranking_round_rank INTEGER, nation VARCHAR, final_rank VARCHAR)", "question": "What is the highest Ranking Round Rank for Russia with a Final Rank over 11?" }
### QUESTION What is the starting point of the north/south operating Palafox Street route? ### CONTEXT CREATE TABLE table_name_66 (starting_point VARCHAR, operates VARCHAR, name VARCHAR) ### ANSWER SELECT starting_point FROM table_name_66 WHERE operates = "north/south" AND name = "palafox street"</s>
{ "answer": "SELECT starting_point FROM table_name_66 WHERE operates = \"north/south\" AND name = \"palafox street\"", "context": "CREATE TABLE table_name_66 (starting_point VARCHAR, operates VARCHAR, name VARCHAR)", "question": "What is the starting point of the north/south operating Palafox Street route?" }
### QUESTION What is the Music for Team anna guzik & rafał kamiński that has a Points Jury of 24 (7,5,6,6)? ### CONTEXT CREATE TABLE table_name_35 (music VARCHAR, team VARCHAR, points_jury VARCHAR) ### ANSWER SELECT music FROM table_name_35 WHERE team = "anna guzik & rafał kamiński" AND points_jury = "24 (7,5,6,6)"</s>
{ "answer": "SELECT music FROM table_name_35 WHERE team = \"anna guzik & rafał kamiński\" AND points_jury = \"24 (7,5,6,6)\"", "context": "CREATE TABLE table_name_35 (music VARCHAR, team VARCHAR, points_jury VARCHAR)", "question": "What is the Music for Team anna guzik & rafał kamiński that has a Points Jury of 24 (7,5,6,6)?" }
### QUESTION What is the direction of the route that stars at downtown transit center and has a terminus point at Pensacola Beach? ### CONTEXT CREATE TABLE table_name_50 (direction VARCHAR, starting_point VARCHAR, terminus VARCHAR) ### ANSWER SELECT direction FROM table_name_50 WHERE starting_point = "downtown transit center" AND terminus = "pensacola beach"</s>
{ "answer": "SELECT direction FROM table_name_50 WHERE starting_point = \"downtown transit center\" AND terminus = \"pensacola beach\"", "context": "CREATE TABLE table_name_50 (direction VARCHAR, starting_point VARCHAR, terminus VARCHAR)", "question": "What is the direction of the route that stars at downtown transit center and has a terminus point at Pensacola Beach?" }
### QUESTION On what Date had a Score of 5-2 and a Loss of Greinke (1-2)? ### CONTEXT CREATE TABLE table_name_84 (date VARCHAR, score VARCHAR, loss VARCHAR) ### ANSWER SELECT date FROM table_name_84 WHERE score = "5-2" AND loss = "greinke (1-2)"</s>
{ "answer": "SELECT date FROM table_name_84 WHERE score = \"5-2\" AND loss = \"greinke (1-2)\"", "context": "CREATE TABLE table_name_84 (date VARCHAR, score VARCHAR, loss VARCHAR)", "question": "On what Date had a Score of 5-2 and a Loss of Greinke (1-2)?" }
### QUESTION Who is the second of the North America team from Edmonton, Canada? ### CONTEXT CREATE TABLE table_name_58 (second VARCHAR, home VARCHAR, team VARCHAR, country VARCHAR) ### ANSWER SELECT second FROM table_name_58 WHERE team = "north america" AND country = "canada" AND home = "edmonton"</s>
{ "answer": "SELECT second FROM table_name_58 WHERE team = \"north america\" AND country = \"canada\" AND home = \"edmonton\"", "context": "CREATE TABLE table_name_58 (second VARCHAR, home VARCHAR, team VARCHAR, country VARCHAR)", "question": "Who is the second of the North America team from Edmonton, Canada?" }
### QUESTION What is the average first elected year that has a district of 11 and a committee of environmental matters? ### CONTEXT CREATE TABLE table_name_18 (first_elected INTEGER, district VARCHAR, committee VARCHAR) ### ANSWER SELECT AVG(first_elected) FROM table_name_18 WHERE district = "11" AND committee = "environmental matters"</s>
{ "answer": "SELECT AVG(first_elected) FROM table_name_18 WHERE district = \"11\" AND committee = \"environmental matters\"", "context": "CREATE TABLE table_name_18 (first_elected INTEGER, district VARCHAR, committee VARCHAR)", "question": "What is the average first elected year that has a district of 11 and a committee of environmental matters?" }
### QUESTION What is the total number of First elected that has a country represented in Baltimore county, a district of 06.0 6, and a committee of economic matters? ### CONTEXT CREATE TABLE table_name_80 (first_elected VARCHAR, committee VARCHAR, counties_represented VARCHAR, district VARCHAR) ### ANSWER SELECT COUNT(first_elected) FROM table_name_80 WHERE counties_represented = "baltimore county" AND district = "06.0 6" AND committee = "economic matters"</s>
{ "answer": "SELECT COUNT(first_elected) FROM table_name_80 WHERE counties_represented = \"baltimore county\" AND district = \"06.0 6\" AND committee = \"economic matters\"", "context": "CREATE TABLE table_name_80 (first_elected VARCHAR, committee VARCHAR, counties_represented VARCHAR, district VARCHAR)", "question": "What is the total number of First elected that has a country represented in Baltimore county, a district of 06.0 6, and a committee of economic matters?" }
### QUESTION What district has counties represented by Baltimore county, a committee of health and government operations, and a first elected smaller than 2002? ### CONTEXT CREATE TABLE table_name_86 (district VARCHAR, first_elected VARCHAR, counties_represented VARCHAR, committee VARCHAR) ### ANSWER SELECT district FROM table_name_86 WHERE counties_represented = "baltimore county" AND committee = "health and government operations" AND first_elected < 2002</s>
{ "answer": "SELECT district FROM table_name_86 WHERE counties_represented = \"baltimore county\" AND committee = \"health and government operations\" AND first_elected < 2002", "context": "CREATE TABLE table_name_86 (district VARCHAR, first_elected VARCHAR, counties_represented VARCHAR, committee VARCHAR)", "question": "What district has counties represented by Baltimore county, a committee of health and government operations, and a first elected smaller than 2002?" }
### QUESTION What was the average ranking of Saudi Arabia in the years of 2000–? ### CONTEXT CREATE TABLE table_name_53 (ranking INTEGER, nationality VARCHAR, years VARCHAR) ### ANSWER SELECT AVG(ranking) FROM table_name_53 WHERE nationality = "saudi arabia" AND years = "2000–"</s>
{ "answer": "SELECT AVG(ranking) FROM table_name_53 WHERE nationality = \"saudi arabia\" AND years = \"2000–\"", "context": "CREATE TABLE table_name_53 (ranking INTEGER, nationality VARCHAR, years VARCHAR)", "question": "What was the average ranking of Saudi Arabia in the years of 2000–?" }
### QUESTION what is the top-5 when the tournament is totals and the top-25 is more than 4? ### CONTEXT CREATE TABLE table_name_80 (top_5 INTEGER, tournament VARCHAR, top_25 VARCHAR) ### ANSWER SELECT AVG(top_5) FROM table_name_80 WHERE tournament = "totals" AND top_25 > 4</s>
{ "answer": "SELECT AVG(top_5) FROM table_name_80 WHERE tournament = \"totals\" AND top_25 > 4", "context": "CREATE TABLE table_name_80 (top_5 INTEGER, tournament VARCHAR, top_25 VARCHAR)", "question": "what is the top-5 when the tournament is totals and the top-25 is more than 4?" }
### QUESTION what is the total number of times the tournament was pga championship and evens is less than 4? ### CONTEXT CREATE TABLE table_name_95 (top_5 VARCHAR, tournament VARCHAR, events VARCHAR) ### ANSWER SELECT COUNT(top_5) FROM table_name_95 WHERE tournament = "pga championship" AND events < 4</s>
{ "answer": "SELECT COUNT(top_5) FROM table_name_95 WHERE tournament = \"pga championship\" AND events < 4", "context": "CREATE TABLE table_name_95 (top_5 VARCHAR, tournament VARCHAR, events VARCHAR)", "question": "what is the total number of times the tournament was pga championship and evens is less than 4?" }
### QUESTION After 1972, how many points did Marlboro Team Alfa Romeo have? ### CONTEXT CREATE TABLE table_name_84 (points VARCHAR, year VARCHAR, entrant VARCHAR) ### ANSWER SELECT points FROM table_name_84 WHERE year > 1972 AND entrant = "marlboro team alfa romeo"</s>
{ "answer": "SELECT points FROM table_name_84 WHERE year > 1972 AND entrant = \"marlboro team alfa romeo\"", "context": "CREATE TABLE table_name_84 (points VARCHAR, year VARCHAR, entrant VARCHAR)", "question": "After 1972, how many points did Marlboro Team Alfa Romeo have?" }
### QUESTION How many points did the Ford V8 with a Tyrrell 007 have? ### CONTEXT CREATE TABLE table_name_3 (points VARCHAR, engine VARCHAR, chassis VARCHAR) ### ANSWER SELECT points FROM table_name_3 WHERE engine = "ford v8" AND chassis = "tyrrell 007"</s>
{ "answer": "SELECT points FROM table_name_3 WHERE engine = \"ford v8\" AND chassis = \"tyrrell 007\"", "context": "CREATE TABLE table_name_3 (points VARCHAR, engine VARCHAR, chassis VARCHAR)", "question": "How many points did the Ford V8 with a Tyrrell 007 have?" }
### QUESTION What year did Elf Team Tyrrell have 39 points and a Tyrrell 007 Chassis? ### CONTEXT CREATE TABLE table_name_75 (year INTEGER, chassis VARCHAR, entrant VARCHAR, points VARCHAR) ### ANSWER SELECT SUM(year) FROM table_name_75 WHERE entrant = "elf team tyrrell" AND points = "39" AND chassis = "tyrrell 007"</s>
{ "answer": "SELECT SUM(year) FROM table_name_75 WHERE entrant = \"elf team tyrrell\" AND points = \"39\" AND chassis = \"tyrrell 007\"", "context": "CREATE TABLE table_name_75 (year INTEGER, chassis VARCHAR, entrant VARCHAR, points VARCHAR)", "question": "What year did Elf Team Tyrrell have 39 points and a Tyrrell 007 Chassis?" }
### QUESTION What is the location of 11 April 2013 and Mexico Home team? ### CONTEXT CREATE TABLE table_name_8 (location VARCHAR, home_team VARCHAR, date VARCHAR) ### ANSWER SELECT location FROM table_name_8 WHERE home_team = "mexico" AND date = "11 april 2013"</s>
{ "answer": "SELECT location FROM table_name_8 WHERE home_team = \"mexico\" AND date = \"11 april 2013\"", "context": "CREATE TABLE table_name_8 (location VARCHAR, home_team VARCHAR, date VARCHAR)", "question": "What is the location of 11 April 2013 and Mexico Home team?" }
### QUESTION What school/club team is Amir Johnson on? ### CONTEXT CREATE TABLE table_10015132_9 (school_club_team VARCHAR, player VARCHAR) ### ANSWER SELECT school_club_team FROM table_10015132_9 WHERE player = "Amir Johnson"</s>
{ "answer": "SELECT school_club_team FROM table_10015132_9 WHERE player = \"Amir Johnson\"", "context": "CREATE TABLE table_10015132_9 (school_club_team VARCHAR, player VARCHAR)", "question": "What school/club team is Amir Johnson on?" }
### QUESTION What date has new england patriots as the opponent? ### CONTEXT CREATE TABLE table_name_26 (date VARCHAR, opponent VARCHAR) ### ANSWER SELECT date FROM table_name_26 WHERE opponent = "new england patriots"</s>
{ "answer": "SELECT date FROM table_name_26 WHERE opponent = \"new england patriots\"", "context": "CREATE TABLE table_name_26 (date VARCHAR, opponent VARCHAR)", "question": "What date has new england patriots as the opponent?" }
### QUESTION When did the Prime Minister of Italy take office? ### CONTEXT CREATE TABLE table_10026563_1 (entered_office_as_head_of_state_or_government VARCHAR, office VARCHAR) ### ANSWER SELECT entered_office_as_head_of_state_or_government FROM table_10026563_1 WHERE office = "Prime Minister of Italy"</s>
{ "answer": "SELECT entered_office_as_head_of_state_or_government FROM table_10026563_1 WHERE office = \"Prime Minister of Italy\"", "context": "CREATE TABLE table_10026563_1 (entered_office_as_head_of_state_or_government VARCHAR, office VARCHAR)", "question": "When did the Prime Minister of Italy take office?" }
### QUESTION What is the English name of the country whose official native language is Dutch Papiamento? ### CONTEXT CREATE TABLE table_1008653_1 (country___exonym__ VARCHAR, official_or_native_language_s___alphabet_script_ VARCHAR) ### ANSWER SELECT country___exonym__ FROM table_1008653_1 WHERE official_or_native_language_s___alphabet_script_ = "Dutch Papiamento"</s>
{ "answer": "SELECT country___exonym__ FROM table_1008653_1 WHERE official_or_native_language_s___alphabet_script_ = \"Dutch Papiamento\"", "context": "CREATE TABLE table_1008653_1 (country___exonym__ VARCHAR, official_or_native_language_s___alphabet_script_ VARCHAR)", "question": "What is the English name of the country whose official native language is Dutch Papiamento?" }
### QUESTION What is the local name given to the city of Canberra? ### CONTEXT CREATE TABLE table_1008653_1 (capital___endonym__ VARCHAR, capital___exonym__ VARCHAR) ### ANSWER SELECT capital___endonym__ FROM table_1008653_1 WHERE capital___exonym__ = "Canberra"</s>
{ "answer": "SELECT capital___endonym__ FROM table_1008653_1 WHERE capital___exonym__ = \"Canberra\"", "context": "CREATE TABLE table_1008653_1 (capital___endonym__ VARCHAR, capital___exonym__ VARCHAR)", "question": "What is the local name given to the city of Canberra?" }
### QUESTION What team acquired as a rookie draft in the position of guard Dennis Miranda? ### CONTEXT CREATE TABLE table_name_84 (school_club_team VARCHAR, name VARCHAR, acquisition_via VARCHAR, position VARCHAR) ### ANSWER SELECT school_club_team FROM table_name_84 WHERE acquisition_via = "rookie draft" AND position = "guard" AND name = "dennis miranda"</s>
{ "answer": "SELECT school_club_team FROM table_name_84 WHERE acquisition_via = \"rookie draft\" AND position = \"guard\" AND name = \"dennis miranda\"", "context": "CREATE TABLE table_name_84 (school_club_team VARCHAR, name VARCHAR, acquisition_via VARCHAR, position VARCHAR)", "question": "What team acquired as a rookie draft in the position of guard Dennis Miranda?" }
### QUESTION What number was Rashad McCants? ### CONTEXT CREATE TABLE table_name_82 (number VARCHAR, name VARCHAR) ### ANSWER SELECT number FROM table_name_82 WHERE name = "rashad mccants"</s>
{ "answer": "SELECT number FROM table_name_82 WHERE name = \"rashad mccants\"", "context": "CREATE TABLE table_name_82 (number VARCHAR, name VARCHAR)", "question": "What number was Rashad McCants?" }
### QUESTION which round is u.s. open cup division semifinals ### CONTEXT CREATE TABLE table_1046170_5 (us_open_cup VARCHAR, playoffs VARCHAR) ### ANSWER SELECT us_open_cup FROM table_1046170_5 WHERE playoffs = "division Semifinals"</s>
{ "answer": "SELECT us_open_cup FROM table_1046170_5 WHERE playoffs = \"division Semifinals\"", "context": "CREATE TABLE table_1046170_5 (us_open_cup VARCHAR, playoffs VARCHAR)", "question": "which round is u.s. open cup division semifinals" }
### QUESTION what are all the playoffs for regular season is 1st, atlantic division ### CONTEXT CREATE TABLE table_1046170_5 (playoffs VARCHAR, regular_season VARCHAR) ### ANSWER SELECT playoffs FROM table_1046170_5 WHERE regular_season = "1st, Atlantic division"</s>
{ "answer": "SELECT playoffs FROM table_1046170_5 WHERE regular_season = \"1st, Atlantic division\"", "context": "CREATE TABLE table_1046170_5 (playoffs VARCHAR, regular_season VARCHAR)", "question": "what are all the playoffs for regular season is 1st, atlantic division" }
### QUESTION what are all the playoffs for u.s. open cup in 1st round ### CONTEXT CREATE TABLE table_1046170_5 (playoffs VARCHAR, us_open_cup VARCHAR) ### ANSWER SELECT playoffs FROM table_1046170_5 WHERE us_open_cup = "1st Round"</s>
{ "answer": "SELECT playoffs FROM table_1046170_5 WHERE us_open_cup = \"1st Round\"", "context": "CREATE TABLE table_1046170_5 (playoffs VARCHAR, us_open_cup VARCHAR)", "question": "what are all the playoffs for u.s. open cup in 1st round" }
### QUESTION What was the match number for Start Gniezno? ### CONTEXT CREATE TABLE table_name_13 (match VARCHAR, team VARCHAR) ### ANSWER SELECT match FROM table_name_13 WHERE team = "start gniezno"</s>
{ "answer": "SELECT match FROM table_name_13 WHERE team = \"start gniezno\"", "context": "CREATE TABLE table_name_13 (match VARCHAR, team VARCHAR)", "question": "What was the match number for Start Gniezno?" }
### QUESTION What was the fastest lap time in the Escort Radar Warning 200? ### CONTEXT CREATE TABLE table_10706961_2 (fastest_lap VARCHAR, name VARCHAR) ### ANSWER SELECT fastest_lap FROM table_10706961_2 WHERE name = "Escort Radar Warning 200"</s>
{ "answer": "SELECT fastest_lap FROM table_10706961_2 WHERE name = \"Escort Radar Warning 200\"", "context": "CREATE TABLE table_10706961_2 (fastest_lap VARCHAR, name VARCHAR)", "question": "What was the fastest lap time in the Escort Radar Warning 200?" }
### QUESTION How many reports were the for the cleveland burke lakefront airport circut? ### CONTEXT CREATE TABLE table_10707176_2 (report VARCHAR, circuit VARCHAR) ### ANSWER SELECT COUNT(report) FROM table_10707176_2 WHERE circuit = "Cleveland Burke Lakefront Airport"</s>
{ "answer": "SELECT COUNT(report) FROM table_10707176_2 WHERE circuit = \"Cleveland Burke Lakefront Airport\"", "context": "CREATE TABLE table_10707176_2 (report VARCHAR, circuit VARCHAR)", "question": "How many reports were the for the cleveland burke lakefront airport circut?" }
### QUESTION What was the Purse for Owner Harold A. Allen prior to 2009? ### CONTEXT CREATE TABLE table_name_41 (purse VARCHAR, year VARCHAR, owner VARCHAR) ### ANSWER SELECT purse FROM table_name_41 WHERE year < 2009 AND owner = "harold a. allen"</s>
{ "answer": "SELECT purse FROM table_name_41 WHERE year < 2009 AND owner = \"harold a. allen\"", "context": "CREATE TABLE table_name_41 (purse VARCHAR, year VARCHAR, owner VARCHAR)", "question": "What was the Purse for Owner Harold A. Allen prior to 2009?" }
### QUESTION What is GDP (PPP) Per Capita 2012 Euro, when Population In Millions is greater than 10.8, and when GDP (Nominal) Per Capita 2012 Euro is 25,600? ### CONTEXT CREATE TABLE table_name_49 (gdp__ppp__per_capita_2012_euro VARCHAR, population_in_millions VARCHAR, gdp__nominal__per_capita_2012_euro VARCHAR) ### ANSWER SELECT gdp__ppp__per_capita_2012_euro FROM table_name_49 WHERE population_in_millions > 10.8 AND gdp__nominal__per_capita_2012_euro = "25,600"</s>
{ "answer": "SELECT gdp__ppp__per_capita_2012_euro FROM table_name_49 WHERE population_in_millions > 10.8 AND gdp__nominal__per_capita_2012_euro = \"25,600\"", "context": "CREATE TABLE table_name_49 (gdp__ppp__per_capita_2012_euro VARCHAR, population_in_millions VARCHAR, gdp__nominal__per_capita_2012_euro VARCHAR)", "question": "What is GDP (PPP) Per Capita 2012 Euro, when Population In Millions is greater than 10.8, and when GDP (Nominal) Per Capita 2012 Euro is 25,600?" }
### QUESTION What is GDP 2012 Millions of Euro, when Population in Millions is less than 1.3, and when GDP (Nominal) Per Capita 2012 Euro is 20,700(p)? ### CONTEXT CREATE TABLE table_name_51 (gdp_2012_millions_of_euro VARCHAR, population_in_millions VARCHAR, gdp__nominal__per_capita_2012_euro VARCHAR) ### ANSWER SELECT gdp_2012_millions_of_euro FROM table_name_51 WHERE population_in_millions < 1.3 AND gdp__nominal__per_capita_2012_euro = "20,700(p)"</s>
{ "answer": "SELECT gdp_2012_millions_of_euro FROM table_name_51 WHERE population_in_millions < 1.3 AND gdp__nominal__per_capita_2012_euro = \"20,700(p)\"", "context": "CREATE TABLE table_name_51 (gdp_2012_millions_of_euro VARCHAR, population_in_millions VARCHAR, gdp__nominal__per_capita_2012_euro VARCHAR)", "question": "What is GDP 2012 Millions of Euro, when Population in Millions is less than 1.3, and when GDP (Nominal) Per Capita 2012 Euro is 20,700(p)?" }
### QUESTION What is the license award date for North East England? ### CONTEXT CREATE TABLE table_10712301_5 (licence_award_date VARCHAR, region VARCHAR) ### ANSWER SELECT licence_award_date FROM table_10712301_5 WHERE region = "North East England"</s>
{ "answer": "SELECT licence_award_date FROM table_10712301_5 WHERE region = \"North East England\"", "context": "CREATE TABLE table_10712301_5 (licence_award_date VARCHAR, region VARCHAR)", "question": "What is the license award date for North East England?" }
### QUESTION Which country's material was concrete when the span metres were less than 270, span feet is more than 837, and the year opened was 1943? ### CONTEXT CREATE TABLE table_name_36 (country VARCHAR, year_opened VARCHAR, span_feet VARCHAR, material VARCHAR, span_metres VARCHAR) ### ANSWER SELECT country FROM table_name_36 WHERE material = "concrete" AND span_metres < 270 AND span_feet > 837 AND year_opened = "1943"</s>
{ "answer": "SELECT country FROM table_name_36 WHERE material = \"concrete\" AND span_metres < 270 AND span_feet > 837 AND year_opened = \"1943\"", "context": "CREATE TABLE table_name_36 (country VARCHAR, year_opened VARCHAR, span_feet VARCHAR, material VARCHAR, span_metres VARCHAR)", "question": "Which country's material was concrete when the span metres were less than 270, span feet is more than 837, and the year opened was 1943?" }
### QUESTION What was the finish with a total larger than 286, a to par of +4 and Bob Tway played? ### CONTEXT CREATE TABLE table_name_70 (finish VARCHAR, player VARCHAR, total VARCHAR, to_par VARCHAR) ### ANSWER SELECT finish FROM table_name_70 WHERE total > 286 AND to_par = "+4" AND player = "bob tway"</s>
{ "answer": "SELECT finish FROM table_name_70 WHERE total > 286 AND to_par = \"+4\" AND player = \"bob tway\"", "context": "CREATE TABLE table_name_70 (finish VARCHAR, player VARCHAR, total VARCHAR, to_par VARCHAR)", "question": "What was the finish with a total larger than 286, a to par of +4 and Bob Tway played?" }
### QUESTION What player in the United States had a total of 286 and won in 2003? ### CONTEXT CREATE TABLE table_name_78 (player VARCHAR, year_s__won VARCHAR, country VARCHAR, total VARCHAR) ### ANSWER SELECT player FROM table_name_78 WHERE country = "united states" AND total = 286 AND year_s__won = "2003"</s>
{ "answer": "SELECT player FROM table_name_78 WHERE country = \"united states\" AND total = 286 AND year_s__won = \"2003\"", "context": "CREATE TABLE table_name_78 (player VARCHAR, year_s__won VARCHAR, country VARCHAR, total VARCHAR)", "question": "What player in the United States had a total of 286 and won in 2003?" }
### QUESTION Provide me with the name of the village (German) where there is 96.9% Slovenes in 1951. ### CONTEXT CREATE TABLE table_10798421_1 (village__german_ VARCHAR, percent_of_slovenes_1951 VARCHAR) ### ANSWER SELECT village__german_ FROM table_10798421_1 WHERE percent_of_slovenes_1951 = "96.9%"</s>
{ "answer": "SELECT village__german_ FROM table_10798421_1 WHERE percent_of_slovenes_1951 = \"96.9%\"", "context": "CREATE TABLE table_10798421_1 (village__german_ VARCHAR, percent_of_slovenes_1951 VARCHAR)", "question": "Provide me with the name of the village (German) where there is 96.9% Slovenes in 1951. " }
### QUESTION Which method was used in the welterweight class with a preliminary card? ### CONTEXT CREATE TABLE table_name_58 (method VARCHAR, weight_class VARCHAR, card VARCHAR) ### ANSWER SELECT method FROM table_name_58 WHERE weight_class = "welterweight" AND card = "preliminary"</s>
{ "answer": "SELECT method FROM table_name_58 WHERE weight_class = \"welterweight\" AND card = \"preliminary\"", "context": "CREATE TABLE table_name_58 (method VARCHAR, weight_class VARCHAR, card VARCHAR)", "question": "Which method was used in the welterweight class with a preliminary card?" }
### QUESTION Which Baltimore group has a viron shape of icosahedral, replicates in the cytoplasm, is non-enveloped, and is from the astroviridae family? ### CONTEXT CREATE TABLE table_name_13 (baltimore_group VARCHAR, family VARCHAR, replication_site VARCHAR, virion_shape VARCHAR, envelopment VARCHAR) ### ANSWER SELECT baltimore_group FROM table_name_13 WHERE virion_shape = "icosahedral" AND envelopment = "non-enveloped" AND replication_site = "cytoplasm" AND family = "astroviridae"</s>
{ "answer": "SELECT baltimore_group FROM table_name_13 WHERE virion_shape = \"icosahedral\" AND envelopment = \"non-enveloped\" AND replication_site = \"cytoplasm\" AND family = \"astroviridae\"", "context": "CREATE TABLE table_name_13 (baltimore_group VARCHAR, family VARCHAR, replication_site VARCHAR, virion_shape VARCHAR, envelopment VARCHAR)", "question": "Which Baltimore group has a viron shape of icosahedral, replicates in the cytoplasm, is non-enveloped, and is from the astroviridae family?" }
### QUESTION Which Baltimore group is of the retroviridae family? ### CONTEXT CREATE TABLE table_name_62 (baltimore_group VARCHAR, family VARCHAR) ### ANSWER SELECT baltimore_group FROM table_name_62 WHERE family = "retroviridae"</s>
{ "answer": "SELECT baltimore_group FROM table_name_62 WHERE family = \"retroviridae\"", "context": "CREATE TABLE table_name_62 (baltimore_group VARCHAR, family VARCHAR)", "question": "Which Baltimore group is of the retroviridae family?" }
### QUESTION What is the pick number for Northwestern college? ### CONTEXT CREATE TABLE table_10975034_2 (pick__number INTEGER, college VARCHAR) ### ANSWER SELECT MAX(pick__number) FROM table_10975034_2 WHERE college = "Northwestern"</s>
{ "answer": "SELECT MAX(pick__number) FROM table_10975034_2 WHERE college = \"Northwestern\"", "context": "CREATE TABLE table_10975034_2 (pick__number INTEGER, college VARCHAR)", "question": "What is the pick number for Northwestern college?" }
### QUESTION What is the Higgins with a Scallon that is 2%? ### CONTEXT CREATE TABLE table_name_35 (higgins VARCHAR, scallon VARCHAR) ### ANSWER SELECT higgins FROM table_name_35 WHERE scallon = "2%"</s>
{ "answer": "SELECT higgins FROM table_name_35 WHERE scallon = \"2%\"", "context": "CREATE TABLE table_name_35 (higgins VARCHAR, scallon VARCHAR)", "question": "What is the Higgins with a Scallon that is 2%?" }
### QUESTION What city and state are the miners located in? ### CONTEXT CREATE TABLE table_11044765_1 (location VARCHAR, mascot VARCHAR) ### ANSWER SELECT location FROM table_11044765_1 WHERE mascot = "Miners"</s>
{ "answer": "SELECT location FROM table_11044765_1 WHERE mascot = \"Miners\"", "context": "CREATE TABLE table_11044765_1 (location VARCHAR, mascot VARCHAR)", "question": "What city and state are the miners located in?" }
### QUESTION What is the to par dated may 4, 2003? ### CONTEXT CREATE TABLE table_1121352_2 (to_par VARCHAR, date VARCHAR) ### ANSWER SELECT to_par FROM table_1121352_2 WHERE date = "May 4, 2003"</s>
{ "answer": "SELECT to_par FROM table_1121352_2 WHERE date = \"May 4, 2003\"", "context": "CREATE TABLE table_1121352_2 (to_par VARCHAR, date VARCHAR)", "question": "What is the to par dated may 4, 2003?" }
### QUESTION How many teams were listed as runner up in 2005 and there the first semi finalist was Western Carolina? ### CONTEXT CREATE TABLE table_11214772_2 (runner_up VARCHAR, semi_finalist__number1 VARCHAR, year VARCHAR) ### ANSWER SELECT COUNT(runner_up) FROM table_11214772_2 WHERE semi_finalist__number1 = "Western Carolina" AND year = 2005</s>
{ "answer": "SELECT COUNT(runner_up) FROM table_11214772_2 WHERE semi_finalist__number1 = \"Western Carolina\" AND year = 2005", "context": "CREATE TABLE table_11214772_2 (runner_up VARCHAR, semi_finalist__number1 VARCHAR, year VARCHAR)", "question": "How many teams were listed as runner up in 2005 and there the first semi finalist was Western Carolina?" }
### QUESTION Which round had Michael Schumacher in the pole position, David Coulthard with the fastest lap, and McLaren - Mercedes as the winning constructor? ### CONTEXT CREATE TABLE table_1132600_3 (round VARCHAR, winning_constructor VARCHAR, pole_position VARCHAR, fastest_lap VARCHAR) ### ANSWER SELECT COUNT(round) FROM table_1132600_3 WHERE pole_position = "Michael Schumacher" AND fastest_lap = "David Coulthard" AND winning_constructor = "McLaren - Mercedes"</s>
{ "answer": "SELECT COUNT(round) FROM table_1132600_3 WHERE pole_position = \"Michael Schumacher\" AND fastest_lap = \"David Coulthard\" AND winning_constructor = \"McLaren - Mercedes\"", "context": "CREATE TABLE table_1132600_3 (round VARCHAR, winning_constructor VARCHAR, pole_position VARCHAR, fastest_lap VARCHAR)", "question": "Which round had Michael Schumacher in the pole position, David Coulthard with the fastest lap, and McLaren - Mercedes as the winning constructor?" }
### QUESTION What is the Staffel A that has a Staffel D of Energie Cottbus and a Staffel C of Chemie Leipzig and a Staffel B of 1. FC Union Berlin? ### CONTEXT CREATE TABLE table_name_75 (staffel_a VARCHAR, staffel_b VARCHAR, staffel_d VARCHAR, staffel_c VARCHAR) ### ANSWER SELECT staffel_a FROM table_name_75 WHERE staffel_d = "energie cottbus" AND staffel_c = "chemie leipzig" AND staffel_b = "1. fc union berlin"</s>
{ "answer": "SELECT staffel_a FROM table_name_75 WHERE staffel_d = \"energie cottbus\" AND staffel_c = \"chemie leipzig\" AND staffel_b = \"1. fc union berlin\"", "context": "CREATE TABLE table_name_75 (staffel_a VARCHAR, staffel_b VARCHAR, staffel_d VARCHAR, staffel_c VARCHAR)", "question": "What is the Staffel A that has a Staffel D of Energie Cottbus and a Staffel C of Chemie Leipzig and a Staffel B of 1. FC Union Berlin?" }
### QUESTION What was the report of the Belgian Grand Prix? ### CONTEXT CREATE TABLE table_1132600_3 (report VARCHAR, grand_prix VARCHAR) ### ANSWER SELECT report FROM table_1132600_3 WHERE grand_prix = "Belgian grand_prix"</s>
{ "answer": "SELECT report FROM table_1132600_3 WHERE grand_prix = \"Belgian grand_prix\"", "context": "CREATE TABLE table_1132600_3 (report VARCHAR, grand_prix VARCHAR)", "question": "What was the report of the Belgian Grand Prix?" }
### QUESTION Which junctions have "replaced by bsi-35" listed in their remarks section? ### CONTEXT CREATE TABLE table_11336756_6 (junctions VARCHAR, remarks VARCHAR) ### ANSWER SELECT junctions FROM table_11336756_6 WHERE remarks = "Replaced by BSI-35"</s>
{ "answer": "SELECT junctions FROM table_11336756_6 WHERE remarks = \"Replaced by BSI-35\"", "context": "CREATE TABLE table_11336756_6 (junctions VARCHAR, remarks VARCHAR)", "question": "Which junctions have \"replaced by bsi-35\" listed in their remarks section?" }
### QUESTION What is the Date when the Country shows uk, the Format is cd, and the Catalog of edcd 227? ### CONTEXT CREATE TABLE table_name_91 (date VARCHAR, catalog VARCHAR, country VARCHAR, format VARCHAR) ### ANSWER SELECT date FROM table_name_91 WHERE country = "uk" AND format = "cd" AND catalog = "edcd 227"</s>
{ "answer": "SELECT date FROM table_name_91 WHERE country = \"uk\" AND format = \"cd\" AND catalog = \"edcd 227\"", "context": "CREATE TABLE table_name_91 (date VARCHAR, catalog VARCHAR, country VARCHAR, format VARCHAR)", "question": "What is the Date when the Country shows uk, the Format is cd, and the Catalog of edcd 227?" }
### QUESTION What is the Catalog with a Format of lp, a Country of us, a Label of sundazed, and a Date of 2006? ### CONTEXT CREATE TABLE table_name_46 (catalog VARCHAR, date VARCHAR, label VARCHAR, format VARCHAR, country VARCHAR) ### ANSWER SELECT catalog FROM table_name_46 WHERE format = "lp" AND country = "us" AND label = "sundazed" AND date = "2006"</s>
{ "answer": "SELECT catalog FROM table_name_46 WHERE format = \"lp\" AND country = \"us\" AND label = \"sundazed\" AND date = \"2006\"", "context": "CREATE TABLE table_name_46 (catalog VARCHAR, date VARCHAR, label VARCHAR, format VARCHAR, country VARCHAR)", "question": "What is the Catalog with a Format of lp, a Country of us, a Label of sundazed, and a Date of 2006?" }
### QUESTION what's the margin where runner(s)-up is phil mickelson ### CONTEXT CREATE TABLE table_11570261_1 (margin VARCHAR, runner_s__up VARCHAR) ### ANSWER SELECT margin FROM table_11570261_1 WHERE runner_s__up = "Phil Mickelson"</s>
{ "answer": "SELECT margin FROM table_11570261_1 WHERE runner_s__up = \"Phil Mickelson\"", "context": "CREATE TABLE table_11570261_1 (margin VARCHAR, runner_s__up VARCHAR)", "question": " what's the margin where runner(s)-up is phil mickelson" }
### QUESTION what's the 54 holes where winning score is −19 (67-66-67-69=269) ### CONTEXT CREATE TABLE table_11570261_1 (winning_score VARCHAR) ### ANSWER SELECT 54 AS _holes FROM table_11570261_1 WHERE winning_score = −19(67 - 66 - 67 - 69 = 269)</s>
{ "answer": "SELECT 54 AS _holes FROM table_11570261_1 WHERE winning_score = −19(67 - 66 - 67 - 69 = 269)", "context": "CREATE TABLE table_11570261_1 (winning_score VARCHAR)", "question": " what's the 54 holes where winning score is −19 (67-66-67-69=269)" }
### QUESTION What is the total for National University of Ireland with an industrial and commercial panel less than 1, and the cultural and educational panel bigger than 0? ### CONTEXT CREATE TABLE table_name_17 (national_university_of_ireland VARCHAR, industrial_and_commercial_panel VARCHAR, cultural_and_educational_panel VARCHAR) ### ANSWER SELECT COUNT(national_university_of_ireland) FROM table_name_17 WHERE industrial_and_commercial_panel < 1 AND cultural_and_educational_panel > 0</s>
{ "answer": "SELECT COUNT(national_university_of_ireland) FROM table_name_17 WHERE industrial_and_commercial_panel < 1 AND cultural_and_educational_panel > 0", "context": "CREATE TABLE table_name_17 (national_university_of_ireland VARCHAR, industrial_and_commercial_panel VARCHAR, cultural_and_educational_panel VARCHAR)", "question": "What is the total for National University of Ireland with an industrial and commercial panel less than 1, and the cultural and educational panel bigger than 0?" }
### QUESTION what's the original air date where written by is iain morris & damon beesley ### CONTEXT CREATE TABLE table_11589522_3 (original_air_date VARCHAR, written_by VARCHAR) ### ANSWER SELECT original_air_date FROM table_11589522_3 WHERE written_by = "Iain Morris & Damon Beesley"</s>
{ "answer": "SELECT original_air_date FROM table_11589522_3 WHERE written_by = \"Iain Morris & Damon Beesley\"", "context": "CREATE TABLE table_11589522_3 (original_air_date VARCHAR, written_by VARCHAR)", "question": " what's the original air date where written by is iain morris & damon beesley" }
### QUESTION What is the biggest administrative panel with a nominated by the Taoiseach greater than 3 and an argricultural panel of 5, plust a cultural and educational panel larger than 2? ### CONTEXT CREATE TABLE table_name_37 (administrative_panel INTEGER, cultural_and_educational_panel VARCHAR, nominated_by_the_taoiseach VARCHAR, agricultural_panel VARCHAR) ### ANSWER SELECT MAX(administrative_panel) FROM table_name_37 WHERE nominated_by_the_taoiseach > 3 AND agricultural_panel = 5 AND cultural_and_educational_panel > 2</s>
{ "answer": "SELECT MAX(administrative_panel) FROM table_name_37 WHERE nominated_by_the_taoiseach > 3 AND agricultural_panel = 5 AND cultural_and_educational_panel > 2", "context": "CREATE TABLE table_name_37 (administrative_panel INTEGER, cultural_and_educational_panel VARCHAR, nominated_by_the_taoiseach VARCHAR, agricultural_panel VARCHAR)", "question": "What is the biggest administrative panel with a nominated by the Taoiseach greater than 3 and an argricultural panel of 5, plust a cultural and educational panel larger than 2?" }
### QUESTION What is the smallest cultural and educational panel with a nominated by the Taoiseach less than 5 and the total greater than 19? ### CONTEXT CREATE TABLE table_name_74 (cultural_and_educational_panel INTEGER, nominated_by_the_taoiseach VARCHAR, total VARCHAR) ### ANSWER SELECT MIN(cultural_and_educational_panel) FROM table_name_74 WHERE nominated_by_the_taoiseach < 5 AND total > 19</s>
{ "answer": "SELECT MIN(cultural_and_educational_panel) FROM table_name_74 WHERE nominated_by_the_taoiseach < 5 AND total > 19", "context": "CREATE TABLE table_name_74 (cultural_and_educational_panel INTEGER, nominated_by_the_taoiseach VARCHAR, total VARCHAR)", "question": "What is the smallest cultural and educational panel with a nominated by the Taoiseach less than 5 and the total greater than 19?" }
### QUESTION What is the administrative panel average when the cultural and educational panel is greater than 1 and the industrial and commercial panel less than 4? ### CONTEXT CREATE TABLE table_name_77 (administrative_panel INTEGER, cultural_and_educational_panel VARCHAR, industrial_and_commercial_panel VARCHAR) ### ANSWER SELECT AVG(administrative_panel) FROM table_name_77 WHERE cultural_and_educational_panel > 1 AND industrial_and_commercial_panel < 4</s>
{ "answer": "SELECT AVG(administrative_panel) FROM table_name_77 WHERE cultural_and_educational_panel > 1 AND industrial_and_commercial_panel < 4", "context": "CREATE TABLE table_name_77 (administrative_panel INTEGER, cultural_and_educational_panel VARCHAR, industrial_and_commercial_panel VARCHAR)", "question": "What is the administrative panel average when the cultural and educational panel is greater than 1 and the industrial and commercial panel less than 4?" }
### QUESTION what is the total number of constancy where purity is falling ### CONTEXT CREATE TABLE table_11609814_1 (constancy VARCHAR, purity VARCHAR) ### ANSWER SELECT COUNT(constancy) FROM table_11609814_1 WHERE purity = "falling"</s>
{ "answer": "SELECT COUNT(constancy) FROM table_11609814_1 WHERE purity = \"falling\"", "context": "CREATE TABLE table_11609814_1 (constancy VARCHAR, purity VARCHAR)", "question": "what is the total number of constancy where purity is falling" }
### QUESTION What is the Other b when the FA Cup shows 3 (17)? ### CONTEXT CREATE TABLE table_name_96 (other_b VARCHAR, fa_cup VARCHAR) ### ANSWER SELECT other_b FROM table_name_96 WHERE fa_cup = "3 (17)"</s>
{ "answer": "SELECT other_b FROM table_name_96 WHERE fa_cup = \"3 (17)\"", "context": "CREATE TABLE table_name_96 (other_b VARCHAR, fa_cup VARCHAR)", "question": "What is the Other b when the FA Cup shows 3 (17)?" }
### QUESTION What is the height of the player who attended Hartford? ### CONTEXT CREATE TABLE table_11734041_2 (height_in_ft VARCHAR, school_club_team_country VARCHAR) ### ANSWER SELECT height_in_ft FROM table_11734041_2 WHERE school_club_team_country = "Hartford"</s>
{ "answer": "SELECT height_in_ft FROM table_11734041_2 WHERE school_club_team_country = \"Hartford\"", "context": "CREATE TABLE table_11734041_2 (height_in_ft VARCHAR, school_club_team_country VARCHAR)", "question": "What is the height of the player who attended Hartford?" }
### QUESTION What is the content for la sorgente sat 3? ### CONTEXT CREATE TABLE table_name_20 (content VARCHAR, television_service VARCHAR) ### ANSWER SELECT content FROM table_name_20 WHERE television_service = "la sorgente sat 3"</s>
{ "answer": "SELECT content FROM table_name_20 WHERE television_service = \"la sorgente sat 3\"", "context": "CREATE TABLE table_name_20 (content VARCHAR, television_service VARCHAR)", "question": "What is the content for la sorgente sat 3?" }
### QUESTION What language is telemarket for you? ### CONTEXT CREATE TABLE table_name_3 (language VARCHAR, television_service VARCHAR) ### ANSWER SELECT language FROM table_name_3 WHERE television_service = "telemarket for you"</s>
{ "answer": "SELECT language FROM table_name_3 WHERE television_service = \"telemarket for you\"", "context": "CREATE TABLE table_name_3 (language VARCHAR, television_service VARCHAR)", "question": "What language is telemarket for you?" }
### QUESTION What language is telemarket for you with a content of televendita? ### CONTEXT CREATE TABLE table_name_59 (language VARCHAR, content VARCHAR, television_service VARCHAR) ### ANSWER SELECT language FROM table_name_59 WHERE content = "televendita" AND television_service = "telemarket for you"</s>
{ "answer": "SELECT language FROM table_name_59 WHERE content = \"televendita\" AND television_service = \"telemarket for you\"", "context": "CREATE TABLE table_name_59 (language VARCHAR, content VARCHAR, television_service VARCHAR)", "question": "What language is telemarket for you with a content of televendita?" }
### QUESTION What position is number 35 whose height is 6-6? ### CONTEXT CREATE TABLE table_11734041_2 (position VARCHAR, height_in_ft VARCHAR, no_s_ VARCHAR) ### ANSWER SELECT position FROM table_11734041_2 WHERE height_in_ft = "6-6" AND no_s_ = "35"</s>
{ "answer": "SELECT position FROM table_11734041_2 WHERE height_in_ft = \"6-6\" AND no_s_ = \"35\"", "context": "CREATE TABLE table_11734041_2 (position VARCHAR, height_in_ft VARCHAR, no_s_ VARCHAR)", "question": "What position is number 35 whose height is 6-6?" }
### QUESTION How tall is the player jones, major major jones? ### CONTEXT CREATE TABLE table_11734041_9 (height_in_ft VARCHAR, player VARCHAR) ### ANSWER SELECT height_in_ft FROM table_11734041_9 WHERE player = "Jones, Major Major Jones"</s>
{ "answer": "SELECT height_in_ft FROM table_11734041_9 WHERE player = \"Jones, Major Major Jones\"", "context": "CREATE TABLE table_11734041_9 (height_in_ft VARCHAR, player VARCHAR)", "question": "How tall is the player jones, major major jones?" }
### QUESTION Which Tournament has a score of 2–6 6–4 [10–8]? ### CONTEXT CREATE TABLE table_name_9 (tournament VARCHAR, score VARCHAR) ### ANSWER SELECT tournament FROM table_name_9 WHERE score = "2–6 6–4 [10–8]"</s>
{ "answer": "SELECT tournament FROM table_name_9 WHERE score = \"2–6 6–4 [10–8]\"", "context": "CREATE TABLE table_name_9 (tournament VARCHAR, score VARCHAR)", "question": "Which Tournament has a score of 2–6 6–4 [10–8]?" }
### QUESTION What is the team located at philips arena 18,227? ### CONTEXT CREATE TABLE table_11961582_6 (team VARCHAR, location_attendance VARCHAR) ### ANSWER SELECT team FROM table_11961582_6 WHERE location_attendance = "Philips Arena 18,227"</s>
{ "answer": "SELECT team FROM table_11961582_6 WHERE location_attendance = \"Philips Arena 18,227\"", "context": "CREATE TABLE table_11961582_6 (team VARCHAR, location_attendance VARCHAR)", "question": "What is the team located at philips arena 18,227?" }
### QUESTION Who is the coach of the 2012 Gold Coast Titans season? ### CONTEXT CREATE TABLE table_name_4 (coach VARCHAR, details VARCHAR) ### ANSWER SELECT coach FROM table_name_4 WHERE details = "2012 gold coast titans season"</s>
{ "answer": "SELECT coach FROM table_name_4 WHERE details = \"2012 gold coast titans season\"", "context": "CREATE TABLE table_name_4 (coach VARCHAR, details VARCHAR)", "question": "Who is the coach of the 2012 Gold Coast Titans season?" }
### QUESTION How many wins were in the PGA Championship when there were more than 10 events? ### CONTEXT CREATE TABLE table_name_55 (wins VARCHAR, tournament VARCHAR, events VARCHAR) ### ANSWER SELECT COUNT(wins) FROM table_name_55 WHERE tournament = "pga championship" AND events > 10</s>
{ "answer": "SELECT COUNT(wins) FROM table_name_55 WHERE tournament = \"pga championship\" AND events > 10", "context": "CREATE TABLE table_name_55 (wins VARCHAR, tournament VARCHAR, events VARCHAR)", "question": "How many wins were in the PGA Championship when there were more than 10 events?" }
### QUESTION For how many years did the song "Lost Without Your Love" win the gold RIAA Sales Certification, and have a Billboard 200 Peak greater than 26? ### CONTEXT CREATE TABLE table_name_80 (year INTEGER, billboard_200_peak VARCHAR, riaa_sales_certification VARCHAR, title VARCHAR) ### ANSWER SELECT SUM(year) FROM table_name_80 WHERE riaa_sales_certification = "gold" AND title = "lost without your love" AND billboard_200_peak > 26</s>
{ "answer": "SELECT SUM(year) FROM table_name_80 WHERE riaa_sales_certification = \"gold\" AND title = \"lost without your love\" AND billboard_200_peak > 26", "context": "CREATE TABLE table_name_80 (year INTEGER, billboard_200_peak VARCHAR, riaa_sales_certification VARCHAR, title VARCHAR)", "question": "For how many years did the song \"Lost Without Your Love\" win the gold RIAA Sales Certification, and have a Billboard 200 Peak greater than 26?" }
### QUESTION What RIAA Sales Certification was awarded to the song that had a Billboard 200 Peak of 21? ### CONTEXT CREATE TABLE table_name_1 (riaa_sales_certification VARCHAR, billboard_200_peak VARCHAR) ### ANSWER SELECT riaa_sales_certification FROM table_name_1 WHERE billboard_200_peak = 21</s>
{ "answer": "SELECT riaa_sales_certification FROM table_name_1 WHERE billboard_200_peak = 21", "context": "CREATE TABLE table_name_1 (riaa_sales_certification VARCHAR, billboard_200_peak VARCHAR)", "question": "What RIAA Sales Certification was awarded to the song that had a Billboard 200 Peak of 21?" }
### QUESTION What is the sum of the Billboard 200 Peak scores after the Year 1971? ### CONTEXT CREATE TABLE table_name_38 (billboard_200_peak INTEGER, year INTEGER) ### ANSWER SELECT SUM(billboard_200_peak) FROM table_name_38 WHERE year > 1971</s>
{ "answer": "SELECT SUM(billboard_200_peak) FROM table_name_38 WHERE year > 1971", "context": "CREATE TABLE table_name_38 (billboard_200_peak INTEGER, year INTEGER)", "question": "What is the sum of the Billboard 200 Peak scores after the Year 1971?" }
### QUESTION What is the number of gold when the silver is 1, bronze is 1, and the nation is Austria? ### CONTEXT CREATE TABLE table_name_4 (gold VARCHAR, nation VARCHAR, silver VARCHAR, bronze VARCHAR) ### ANSWER SELECT COUNT(gold) FROM table_name_4 WHERE silver = 1 AND bronze = 1 AND nation = "austria"</s>
{ "answer": "SELECT COUNT(gold) FROM table_name_4 WHERE silver = 1 AND bronze = 1 AND nation = \"austria\"", "context": "CREATE TABLE table_name_4 (gold VARCHAR, nation VARCHAR, silver VARCHAR, bronze VARCHAR)", "question": "What is the number of gold when the silver is 1, bronze is 1, and the nation is Austria?" }
### QUESTION What is the lowest gold when there are 0 bronze and the total is less than 2, and silver is less than 0? ### CONTEXT CREATE TABLE table_name_24 (gold INTEGER, silver VARCHAR, bronze VARCHAR, total VARCHAR) ### ANSWER SELECT MIN(gold) FROM table_name_24 WHERE bronze = 0 AND total < 2 AND silver < 0</s>
{ "answer": "SELECT MIN(gold) FROM table_name_24 WHERE bronze = 0 AND total < 2 AND silver < 0", "context": "CREATE TABLE table_name_24 (gold INTEGER, silver VARCHAR, bronze VARCHAR, total VARCHAR)", "question": "What is the lowest gold when there are 0 bronze and the total is less than 2, and silver is less than 0?" }
### QUESTION What is the womens singles of marcus ellis gabrielle white? ### CONTEXT CREATE TABLE table_12104319_1 (womens_singles VARCHAR, mixed_doubles VARCHAR) ### ANSWER SELECT womens_singles FROM table_12104319_1 WHERE mixed_doubles = "Marcus Ellis Gabrielle White"</s>
{ "answer": "SELECT womens_singles FROM table_12104319_1 WHERE mixed_doubles = \"Marcus Ellis Gabrielle White\"", "context": "CREATE TABLE table_12104319_1 (womens_singles VARCHAR, mixed_doubles VARCHAR)", "question": "What is the womens singles of marcus ellis gabrielle white?" }
### QUESTION What issue was the spoofed title Ho-Hum land? ### CONTEXT CREATE TABLE table_name_75 (issue INTEGER, spoofed_title VARCHAR) ### ANSWER SELECT SUM(issue) FROM table_name_75 WHERE spoofed_title = "ho-hum land"</s>
{ "answer": "SELECT SUM(issue) FROM table_name_75 WHERE spoofed_title = \"ho-hum land\"", "context": "CREATE TABLE table_name_75 (issue INTEGER, spoofed_title VARCHAR)", "question": "What issue was the spoofed title Ho-Hum land?" }
### QUESTION What is the Surface when Todd Woodbridge was the runner-up, and a Date of 24 february 1997? ### CONTEXT CREATE TABLE table_name_77 (surface VARCHAR, outcome VARCHAR, date VARCHAR) ### ANSWER SELECT surface FROM table_name_77 WHERE outcome = "runner-up" AND date = "24 february 1997"</s>
{ "answer": "SELECT surface FROM table_name_77 WHERE outcome = \"runner-up\" AND date = \"24 february 1997\"", "context": "CREATE TABLE table_name_77 (surface VARCHAR, outcome VARCHAR, date VARCHAR)", "question": "What is the Surface when Todd Woodbridge was the runner-up, and a Date of 24 february 1997?" }
### QUESTION What is the location of the Carousel toll plaza? ### CONTEXT CREATE TABLE table_1211545_2 (location VARCHAR, name VARCHAR) ### ANSWER SELECT location FROM table_1211545_2 WHERE name = "Carousel Toll Plaza"</s>
{ "answer": "SELECT location FROM table_1211545_2 WHERE name = \"Carousel Toll Plaza\"", "context": "CREATE TABLE table_1211545_2 (location VARCHAR, name VARCHAR)", "question": "What is the location of the Carousel toll plaza?" }
### QUESTION What is the name of the plaza where the told for heavy vehicles with 2 axles is r20.50? ### CONTEXT CREATE TABLE table_1211545_2 (name VARCHAR, heavy_vehicle__2_axles_ VARCHAR) ### ANSWER SELECT name FROM table_1211545_2 WHERE heavy_vehicle__2_axles_ = "R20.50"</s>
{ "answer": "SELECT name FROM table_1211545_2 WHERE heavy_vehicle__2_axles_ = \"R20.50\"", "context": "CREATE TABLE table_1211545_2 (name VARCHAR, heavy_vehicle__2_axles_ VARCHAR)", "question": "What is the name of the plaza where the told for heavy vehicles with 2 axles is r20.50?" }
### QUESTION Who was the SS when jim lefebvre was at 2nd, willie davis at CF, and don drysdale was the SP. ### CONTEXT CREATE TABLE table_12142298_2 (shortstop VARCHAR, starting_pitcher VARCHAR, second_baseman VARCHAR, centerfielder VARCHAR) ### ANSWER SELECT shortstop FROM table_12142298_2 WHERE second_baseman = "Jim Lefebvre" AND centerfielder = "Willie Davis" AND starting_pitcher = "Don Drysdale"</s>
{ "answer": "SELECT shortstop FROM table_12142298_2 WHERE second_baseman = \"Jim Lefebvre\" AND centerfielder = \"Willie Davis\" AND starting_pitcher = \"Don Drysdale\"", "context": "CREATE TABLE table_12142298_2 (shortstop VARCHAR, starting_pitcher VARCHAR, second_baseman VARCHAR, centerfielder VARCHAR)", "question": "Who was the SS when jim lefebvre was at 2nd, willie davis at CF, and don drysdale was the SP." }
### QUESTION What's the order number of the song originally performed by Rickie Lee Jones? ### CONTEXT CREATE TABLE table_12310814_1 (order__number VARCHAR, original_artist VARCHAR) ### ANSWER SELECT order__number FROM table_12310814_1 WHERE original_artist = "Rickie Lee Jones"</s>
{ "answer": "SELECT order__number FROM table_12310814_1 WHERE original_artist = \"Rickie Lee Jones\"", "context": "CREATE TABLE table_12310814_1 (order__number VARCHAR, original_artist VARCHAR)", "question": "What's the order number of the song originally performed by Rickie Lee Jones?" }
### QUESTION What is the total number of Silver medals for the Nation with less than 1 Bronze? ### CONTEXT CREATE TABLE table_name_84 (silver VARCHAR, bronze INTEGER) ### ANSWER SELECT COUNT(silver) FROM table_name_84 WHERE bronze < 1</s>
{ "answer": "SELECT COUNT(silver) FROM table_name_84 WHERE bronze < 1", "context": "CREATE TABLE table_name_84 (silver VARCHAR, bronze INTEGER)", "question": "What is the total number of Silver medals for the Nation with less than 1 Bronze?" }
### QUESTION What is the election year when the # of candidates nominated was 262? ### CONTEXT CREATE TABLE table_123462_2 (election VARCHAR, _number_of_candidates_nominated VARCHAR) ### ANSWER SELECT COUNT(election) FROM table_123462_2 WHERE _number_of_candidates_nominated = 262</s>
{ "answer": "SELECT COUNT(election) FROM table_123462_2 WHERE _number_of_candidates_nominated = 262", "context": "CREATE TABLE table_123462_2 (election VARCHAR, _number_of_candidates_nominated VARCHAR)", "question": "What is the election year when the # of candidates nominated was 262?" }
### QUESTION What is the english spelling of the word that has the strongs trasliteration of y e howram? ### CONTEXT CREATE TABLE table_1242447_1 (english_spelling VARCHAR, strongs_transliteration VARCHAR) ### ANSWER SELECT english_spelling FROM table_1242447_1 WHERE strongs_transliteration = "Y e howram"</s>
{ "answer": "SELECT english_spelling FROM table_1242447_1 WHERE strongs_transliteration = \"Y e howram\"", "context": "CREATE TABLE table_1242447_1 (english_spelling VARCHAR, strongs_transliteration VARCHAR)", "question": "What is the english spelling of the word that has the strongs trasliteration of y e howram?" }
### QUESTION What is the average total with 1 FA cup and more than 0 FA trophies? ### CONTEXT CREATE TABLE table_name_61 (total INTEGER, fa_cup VARCHAR, fa_trophy VARCHAR) ### ANSWER SELECT AVG(total) FROM table_name_61 WHERE fa_cup = 1 AND fa_trophy > 0</s>
{ "answer": "SELECT AVG(total) FROM table_name_61 WHERE fa_cup = 1 AND fa_trophy > 0", "context": "CREATE TABLE table_name_61 (total INTEGER, fa_cup VARCHAR, fa_trophy VARCHAR)", "question": "What is the average total with 1 FA cup and more than 0 FA trophies?" }
### QUESTION How many Silver medals did the Nation with a Rank of less than 1 receive? ### CONTEXT CREATE TABLE table_name_37 (silver INTEGER, rank INTEGER) ### ANSWER SELECT AVG(silver) FROM table_name_37 WHERE rank < 1</s>
{ "answer": "SELECT AVG(silver) FROM table_name_37 WHERE rank < 1", "context": "CREATE TABLE table_name_37 (silver INTEGER, rank INTEGER)", "question": "How many Silver medals did the Nation with a Rank of less than 1 receive?" }
### QUESTION What DS division has S. L. M. Haneefa as the divisional secretary? ### CONTEXT CREATE TABLE table_12485020_1 (ds_division VARCHAR, divisional_secretary VARCHAR) ### ANSWER SELECT ds_division FROM table_12485020_1 WHERE divisional_secretary = "S. L. M. Haneefa"</s>
{ "answer": "SELECT ds_division FROM table_12485020_1 WHERE divisional_secretary = \"S. L. M. Haneefa\"", "context": "CREATE TABLE table_12485020_1 (ds_division VARCHAR, divisional_secretary VARCHAR)", "question": "What DS division has S. L. M. Haneefa as the divisional secretary?" }
### QUESTION What is the average Goals, when Playoffs is Lost in Round 2, and when Games is less than 81? ### CONTEXT CREATE TABLE table_name_37 (goals_for INTEGER, playoffs VARCHAR, games VARCHAR) ### ANSWER SELECT AVG(goals_for) FROM table_name_37 WHERE playoffs = "lost in round 2" AND games < 81</s>
{ "answer": "SELECT AVG(goals_for) FROM table_name_37 WHERE playoffs = \"lost in round 2\" AND games < 81", "context": "CREATE TABLE table_name_37 (goals_for INTEGER, playoffs VARCHAR, games VARCHAR)", "question": "What is the average Goals, when Playoffs is Lost in Round 2, and when Games is less than 81?" }
### QUESTION What was the vote tally on the episode aired May 5, 2005? ### CONTEXT CREATE TABLE table_1272844_2 (vote VARCHAR, air_date VARCHAR) ### ANSWER SELECT vote FROM table_1272844_2 WHERE air_date = "May 5, 2005"</s>
{ "answer": "SELECT vote FROM table_1272844_2 WHERE air_date = \"May 5, 2005\"", "context": "CREATE TABLE table_1272844_2 (vote VARCHAR, air_date VARCHAR)", "question": "What was the vote tally on the episode aired May 5, 2005?" }
### QUESTION What is the short stem for garbitzen? ### CONTEXT CREATE TABLE table_12784134_24 (short_stem VARCHAR, imperfect_stem VARCHAR) ### ANSWER SELECT short_stem FROM table_12784134_24 WHERE imperfect_stem = "garbitzen"</s>
{ "answer": "SELECT short_stem FROM table_12784134_24 WHERE imperfect_stem = \"garbitzen\"", "context": "CREATE TABLE table_12784134_24 (short_stem VARCHAR, imperfect_stem VARCHAR)", "question": "What is the short stem for garbitzen?" }