text
stringlengths
150
1.06k
source
dict
### QUESTION How many first games are associated with 5 games played and under 3 games lost? ### CONTEXT CREATE TABLE table_name_85 (first_game INTEGER, played VARCHAR, lost VARCHAR) ### ANSWER SELECT SUM(first_game) FROM table_name_85 WHERE played = 5 AND lost < 3</s>
{ "answer": "SELECT SUM(first_game) FROM table_name_85 WHERE played = 5 AND lost < 3", "context": "CREATE TABLE table_name_85 (first_game INTEGER, played VARCHAR, lost VARCHAR)", "question": "How many first games are associated with 5 games played and under 3 games lost?" }
### QUESTION What is the highest Points when the record was 12–2, and the Points Against are larger than 6? ### CONTEXT CREATE TABLE table_name_25 (points_for INTEGER, record VARCHAR, points_against VARCHAR) ### ANSWER SELECT MAX(points_for) FROM table_name_25 WHERE record = "12–2" AND points_against > 6</s>
{ "answer": "SELECT MAX(points_for) FROM table_name_25 WHERE record = \"12–2\" AND points_against > 6", "context": "CREATE TABLE table_name_25 (points_for INTEGER, record VARCHAR, points_against VARCHAR)", "question": "What is the highest Points when the record was 12–2, and the Points Against are larger than 6?" }
### QUESTION Which Partial thromboplastin time has a Prothrombin time of prolonged and a Condition of factor v deficiency? ### CONTEXT CREATE TABLE table_name_76 (partial_thromboplastin_time VARCHAR, prothrombin_time VARCHAR, condition VARCHAR) ### ANSWER SELECT partial_thromboplastin_time FROM table_name_76 WHERE prothrombin_time = "prolonged" AND condition = "factor v deficiency"</s>
{ "answer": "SELECT partial_thromboplastin_time FROM table_name_76 WHERE prothrombin_time = \"prolonged\" AND condition = \"factor v deficiency\"", "context": "CREATE TABLE table_name_76 (partial_thromboplastin_time VARCHAR, prothrombin_time VARCHAR, condition VARCHAR)", "question": "Which Partial thromboplastin time has a Prothrombin time of prolonged and a Condition of factor v deficiency?" }
### QUESTION Which Prothrombin time that has a Partial thromboplastin time of unaffected, and a Condition of thrombocytopenia? ### CONTEXT CREATE TABLE table_name_6 (prothrombin_time VARCHAR, partial_thromboplastin_time VARCHAR, condition VARCHAR) ### ANSWER SELECT prothrombin_time FROM table_name_6 WHERE partial_thromboplastin_time = "unaffected" AND condition = "thrombocytopenia"</s>
{ "answer": "SELECT prothrombin_time FROM table_name_6 WHERE partial_thromboplastin_time = \"unaffected\" AND condition = \"thrombocytopenia\"", "context": "CREATE TABLE table_name_6 (prothrombin_time VARCHAR, partial_thromboplastin_time VARCHAR, condition VARCHAR)", "question": "Which Prothrombin time that has a Partial thromboplastin time of unaffected, and a Condition of thrombocytopenia?" }
### QUESTION Which Condition has a Bleeding time of unaffected and a Prothrombin time of prolonged? ### CONTEXT CREATE TABLE table_name_75 (condition VARCHAR, bleeding_time VARCHAR, prothrombin_time VARCHAR) ### ANSWER SELECT condition FROM table_name_75 WHERE bleeding_time = "unaffected" AND prothrombin_time = "prolonged"</s>
{ "answer": "SELECT condition FROM table_name_75 WHERE bleeding_time = \"unaffected\" AND prothrombin_time = \"prolonged\"", "context": "CREATE TABLE table_name_75 (condition VARCHAR, bleeding_time VARCHAR, prothrombin_time VARCHAR)", "question": "Which Condition has a Bleeding time of unaffected and a Prothrombin time of prolonged?" }
### QUESTION Which Partial thromboplastin time has a Prothrombin time of prolonged, and a Bleeding time of unaffected, and a Condition of vitamin k deficiency or warfarin? Question 6 ### CONTEXT CREATE TABLE table_name_1 (partial_thromboplastin_time VARCHAR, condition VARCHAR, prothrombin_time VARCHAR, bleeding_time VARCHAR) ### ANSWER SELECT partial_thromboplastin_time FROM table_name_1 WHERE prothrombin_time = "prolonged" AND bleeding_time = "unaffected" AND condition = "vitamin k deficiency or warfarin"</s>
{ "answer": "SELECT partial_thromboplastin_time FROM table_name_1 WHERE prothrombin_time = \"prolonged\" AND bleeding_time = \"unaffected\" AND condition = \"vitamin k deficiency or warfarin\"", "context": "CREATE TABLE table_name_1 (partial_thromboplastin_time VARCHAR, condition VARCHAR, prothrombin_time VARCHAR, bleeding_time VARCHAR)", "question": "Which Partial thromboplastin time has a Prothrombin time of prolonged, and a Bleeding time of unaffected, and a Condition of vitamin k deficiency or warfarin? Question 6" }
### QUESTION What are the notes where the authors are Zhou & Zhang? ### CONTEXT CREATE TABLE table_name_11 (notes VARCHAR, authors VARCHAR) ### ANSWER SELECT notes FROM table_name_11 WHERE authors = "zhou & zhang"</s>
{ "answer": "SELECT notes FROM table_name_11 WHERE authors = \"zhou & zhang\"", "context": "CREATE TABLE table_name_11 (notes VARCHAR, authors VARCHAR)", "question": "What are the notes where the authors are Zhou & Zhang?" }
### QUESTION How many years was Louis Armstrong performing? ### CONTEXT CREATE TABLE table_name_51 (year VARCHAR, performer_s_ VARCHAR) ### ANSWER SELECT COUNT(year) FROM table_name_51 WHERE performer_s_ = "louis armstrong"</s>
{ "answer": "SELECT COUNT(year) FROM table_name_51 WHERE performer_s_ = \"louis armstrong\"", "context": "CREATE TABLE table_name_51 (year VARCHAR, performer_s_ VARCHAR)", "question": "How many years was Louis Armstrong performing?" }
### QUESTION What tournament had a runner(s)-up of Scott Hoch & Kenny Perry? ### CONTEXT CREATE TABLE table_name_12 (tournament VARCHAR, runner_s__up VARCHAR) ### ANSWER SELECT tournament FROM table_name_12 WHERE runner_s__up = "scott hoch & kenny perry"</s>
{ "answer": "SELECT tournament FROM table_name_12 WHERE runner_s__up = \"scott hoch & kenny perry\"", "context": "CREATE TABLE table_name_12 (tournament VARCHAR, runner_s__up VARCHAR)", "question": "What tournament had a runner(s)-up of Scott Hoch & Kenny Perry?" }
### QUESTION What was Kerry's lowest number of votes where Other received 0.8% and Kerry 70.4%? ### CONTEXT CREATE TABLE table_name_65 (kerry__number INTEGER, others__percentage VARCHAR, kerry__percentage VARCHAR) ### ANSWER SELECT MIN(kerry__number) FROM table_name_65 WHERE others__percentage = "0.8%" AND kerry__percentage = "70.4%"</s>
{ "answer": "SELECT MIN(kerry__number) FROM table_name_65 WHERE others__percentage = \"0.8%\" AND kerry__percentage = \"70.4%\"", "context": "CREATE TABLE table_name_65 (kerry__number INTEGER, others__percentage VARCHAR, kerry__percentage VARCHAR)", "question": "What was Kerry's lowest number of votes where Other received 0.8% and Kerry 70.4%?" }
### QUESTION How many votes did Others receive where Kerry has 44.6%, and Bush more than 163,650 votes? ### CONTEXT CREATE TABLE table_name_65 (others__number VARCHAR, kerry__percentage VARCHAR, bush__number VARCHAR) ### ANSWER SELECT COUNT(others__number) FROM table_name_65 WHERE kerry__percentage = "44.6%" AND bush__number > 163 OFFSET 650</s>
{ "answer": "SELECT COUNT(others__number) FROM table_name_65 WHERE kerry__percentage = \"44.6%\" AND bush__number > 163 OFFSET 650", "context": "CREATE TABLE table_name_65 (others__number VARCHAR, kerry__percentage VARCHAR, bush__number VARCHAR)", "question": "How many votes did Others receive where Kerry has 44.6%, and Bush more than 163,650 votes?" }
### QUESTION Which Appointed has a Presentation of Credentials on November 22, 1990 ### CONTEXT CREATE TABLE table_name_45 (appointed_by VARCHAR, presentation_of_credentials VARCHAR) ### ANSWER SELECT appointed_by FROM table_name_45 WHERE presentation_of_credentials = "november 22, 1990"</s>
{ "answer": "SELECT appointed_by FROM table_name_45 WHERE presentation_of_credentials = \"november 22, 1990\"", "context": "CREATE TABLE table_name_45 (appointed_by VARCHAR, presentation_of_credentials VARCHAR)", "question": "Which Appointed has a Presentation of Credentials on November 22, 1990" }
### QUESTION Which Termination of Mission has a Presentation of Credentials on October 29, 1981 ### CONTEXT CREATE TABLE table_name_5 (termination_of_mission VARCHAR, presentation_of_credentials VARCHAR) ### ANSWER SELECT termination_of_mission FROM table_name_5 WHERE presentation_of_credentials = "october 29, 1981"</s>
{ "answer": "SELECT termination_of_mission FROM table_name_5 WHERE presentation_of_credentials = \"october 29, 1981\"", "context": "CREATE TABLE table_name_5 (termination_of_mission VARCHAR, presentation_of_credentials VARCHAR)", "question": "Which Termination of Mission has a Presentation of Credentials on October 29, 1981" }
### QUESTION Where is the area of operation that had drilling during the year 1999? ### CONTEXT CREATE TABLE table_name_19 (area_of_operation VARCHAR, services VARCHAR, years_of_operation VARCHAR) ### ANSWER SELECT area_of_operation FROM table_name_19 WHERE services = "drilling" AND years_of_operation = "1999"</s>
{ "answer": "SELECT area_of_operation FROM table_name_19 WHERE services = \"drilling\" AND years_of_operation = \"1999\"", "context": "CREATE TABLE table_name_19 (area_of_operation VARCHAR, services VARCHAR, years_of_operation VARCHAR)", "question": "Where is the area of operation that had drilling during the year 1999?" }
### QUESTION What stage (winner) has quick step as the team classification, and trent lowe as the young rider classification? ### CONTEXT CREATE TABLE table_name_69 (stage__winner_ VARCHAR, team_classification VARCHAR, young_rider_classification VARCHAR) ### ANSWER SELECT stage__winner_ FROM table_name_69 WHERE team_classification = "quick step" AND young_rider_classification = "trent lowe"</s>
{ "answer": "SELECT stage__winner_ FROM table_name_69 WHERE team_classification = \"quick step\" AND young_rider_classification = \"trent lowe\"", "context": "CREATE TABLE table_name_69 (stage__winner_ VARCHAR, team_classification VARCHAR, young_rider_classification VARCHAR)", "question": "What stage (winner) has quick step as the team classification, and trent lowe as the young rider classification?" }
### QUESTION What stage (winner) has thor hushovd as a general classification, and trent lowe as a rider classification? ### CONTEXT CREATE TABLE table_name_3 (stage__winner_ VARCHAR, general_classification VARCHAR, young_rider_classification VARCHAR) ### ANSWER SELECT stage__winner_ FROM table_name_3 WHERE general_classification = "thor hushovd" AND young_rider_classification = "trent lowe"</s>
{ "answer": "SELECT stage__winner_ FROM table_name_3 WHERE general_classification = \"thor hushovd\" AND young_rider_classification = \"trent lowe\"", "context": "CREATE TABLE table_name_3 (stage__winner_ VARCHAR, general_classification VARCHAR, young_rider_classification VARCHAR)", "question": "What stage (winner) has thor hushovd as a general classification, and trent lowe as a rider classification?" }
### QUESTION Which gold Coast has a Melbourne of yes, a Perth of yes, an Auckland of no, and a Sydney of no? ### CONTEXT CREATE TABLE table_name_36 (gold_coast VARCHAR, sydney VARCHAR, auckland VARCHAR, melbourne VARCHAR, perth VARCHAR) ### ANSWER SELECT gold_coast FROM table_name_36 WHERE melbourne = "yes" AND perth = "yes" AND auckland = "no" AND sydney = "no"</s>
{ "answer": "SELECT gold_coast FROM table_name_36 WHERE melbourne = \"yes\" AND perth = \"yes\" AND auckland = \"no\" AND sydney = \"no\"", "context": "CREATE TABLE table_name_36 (gold_coast VARCHAR, sydney VARCHAR, auckland VARCHAR, melbourne VARCHAR, perth VARCHAR)", "question": "Which gold Coast has a Melbourne of yes, a Perth of yes, an Auckland of no, and a Sydney of no?" }
### QUESTION Which Adelaide has an Auckland of no and a Melbourne of no? ### CONTEXT CREATE TABLE table_name_76 (adelaide VARCHAR, auckland VARCHAR, melbourne VARCHAR) ### ANSWER SELECT adelaide FROM table_name_76 WHERE auckland = "no" AND melbourne = "no"</s>
{ "answer": "SELECT adelaide FROM table_name_76 WHERE auckland = \"no\" AND melbourne = \"no\"", "context": "CREATE TABLE table_name_76 (adelaide VARCHAR, auckland VARCHAR, melbourne VARCHAR)", "question": "Which Adelaide has an Auckland of no and a Melbourne of no?" }
### QUESTION What is the lowest Division, when Goals are less than 10, when Team is Dalian Shide, when Apps are less than 17, and when Season is 2007? ### CONTEXT CREATE TABLE table_name_79 (division INTEGER, season VARCHAR, apps VARCHAR, goals VARCHAR, team VARCHAR) ### ANSWER SELECT MIN(division) FROM table_name_79 WHERE goals < 10 AND team = "dalian shide" AND apps < 17 AND season = "2007"</s>
{ "answer": "SELECT MIN(division) FROM table_name_79 WHERE goals < 10 AND team = \"dalian shide\" AND apps < 17 AND season = \"2007\"", "context": "CREATE TABLE table_name_79 (division INTEGER, season VARCHAR, apps VARCHAR, goals VARCHAR, team VARCHAR)", "question": "What is the lowest Division, when Goals are less than 10, when Team is Dalian Shide, when Apps are less than 17, and when Season is 2007?" }
### QUESTION What is the lowest area when the density is greater than 234.77, the population is less than 965,040, and the rank is 32? ### CONTEXT CREATE TABLE table_name_75 (area INTEGER, population VARCHAR, density VARCHAR, rank VARCHAR) ### ANSWER SELECT MIN(area) FROM table_name_75 WHERE density > 234.77 AND rank = 32 AND population < 965 OFFSET 040</s>
{ "answer": "SELECT MIN(area) FROM table_name_75 WHERE density > 234.77 AND rank = 32 AND population < 965 OFFSET 040", "context": "CREATE TABLE table_name_75 (area INTEGER, population VARCHAR, density VARCHAR, rank VARCHAR)", "question": "What is the lowest area when the density is greater than 234.77, the population is less than 965,040, and the rank is 32?" }
### QUESTION what is the analog type for wxmi? ### CONTEXT CREATE TABLE table_name_9 (analog VARCHAR, callsign VARCHAR) ### ANSWER SELECT analog FROM table_name_9 WHERE callsign = "wxmi"</s>
{ "answer": "SELECT analog FROM table_name_9 WHERE callsign = \"wxmi\"", "context": "CREATE TABLE table_name_9 (analog VARCHAR, callsign VARCHAR)", "question": "what is the analog type for wxmi?" }
### QUESTION Which Adelaide has a Sydney of yes, a Perth of no, a Melbourne of yes, and an Auckland of no? ### CONTEXT CREATE TABLE table_name_30 (adelaide VARCHAR, auckland VARCHAR, melbourne VARCHAR, sydney VARCHAR, perth VARCHAR) ### ANSWER SELECT adelaide FROM table_name_30 WHERE sydney = "yes" AND perth = "no" AND melbourne = "yes" AND auckland = "no"</s>
{ "answer": "SELECT adelaide FROM table_name_30 WHERE sydney = \"yes\" AND perth = \"no\" AND melbourne = \"yes\" AND auckland = \"no\"", "context": "CREATE TABLE table_name_30 (adelaide VARCHAR, auckland VARCHAR, melbourne VARCHAR, sydney VARCHAR, perth VARCHAR)", "question": "Which Adelaide has a Sydney of yes, a Perth of no, a Melbourne of yes, and an Auckland of no?" }
### QUESTION What is the total number of gold medals for the skater with less than 3 bronze medals, more than 0 silver medals and a rank smaller than 11? ### CONTEXT CREATE TABLE table_name_17 (gold VARCHAR, silver VARCHAR, bronze VARCHAR, rank VARCHAR) ### ANSWER SELECT COUNT(gold) FROM table_name_17 WHERE bronze < 3 AND rank < 11 AND silver > 0</s>
{ "answer": "SELECT COUNT(gold) FROM table_name_17 WHERE bronze < 3 AND rank < 11 AND silver > 0", "context": "CREATE TABLE table_name_17 (gold VARCHAR, silver VARCHAR, bronze VARCHAR, rank VARCHAR)", "question": "What is the total number of gold medals for the skater with less than 3 bronze medals, more than 0 silver medals and a rank smaller than 11?" }
### QUESTION How many chart runs had a debut position of more than 7 when peak position was 11? ### CONTEXT CREATE TABLE table_name_18 (chart VARCHAR, debut_position VARCHAR, peak_position VARCHAR) ### ANSWER SELECT COUNT(chart) AS run FROM table_name_18 WHERE debut_position > 7 AND peak_position = 11</s>
{ "answer": "SELECT COUNT(chart) AS run FROM table_name_18 WHERE debut_position > 7 AND peak_position = 11", "context": "CREATE TABLE table_name_18 (chart VARCHAR, debut_position VARCHAR, peak_position VARCHAR)", "question": "How many chart runs had a debut position of more than 7 when peak position was 11?" }
### QUESTION Which issue was the Spoofed title Route 67 for which Mort Drucker was the artist? ### CONTEXT CREATE TABLE table_name_44 (issue INTEGER, artist VARCHAR, spoofed_title VARCHAR) ### ANSWER SELECT SUM(issue) FROM table_name_44 WHERE artist = "mort drucker" AND spoofed_title = "route 67"</s>
{ "answer": "SELECT SUM(issue) FROM table_name_44 WHERE artist = \"mort drucker\" AND spoofed_title = \"route 67\"", "context": "CREATE TABLE table_name_44 (issue INTEGER, artist VARCHAR, spoofed_title VARCHAR)", "question": "Which issue was the Spoofed title Route 67 for which Mort Drucker was the artist?" }
### QUESTION (A) Torzija was nominated in which category? ### CONTEXT CREATE TABLE table_name_60 (category VARCHAR, film VARCHAR) ### ANSWER SELECT category FROM table_name_60 WHERE film = "(a) torzija"</s>
{ "answer": "SELECT category FROM table_name_60 WHERE film = \"(a) torzija\"", "context": "CREATE TABLE table_name_60 (category VARCHAR, film VARCHAR)", "question": "(A) Torzija was nominated in which category?" }
### QUESTION How many losses altogether were had by teams that won 12 times, had 40-4 points, and more than 57 goals? ### CONTEXT CREATE TABLE table_name_11 (losses INTEGER, goals_for VARCHAR, wins VARCHAR, points VARCHAR) ### ANSWER SELECT SUM(losses) FROM table_name_11 WHERE wins = 12 AND points = "40-4" AND goals_for > 57</s>
{ "answer": "SELECT SUM(losses) FROM table_name_11 WHERE wins = 12 AND points = \"40-4\" AND goals_for > 57", "context": "CREATE TABLE table_name_11 (losses INTEGER, goals_for VARCHAR, wins VARCHAR, points VARCHAR)", "question": "How many losses altogether were had by teams that won 12 times, had 40-4 points, and more than 57 goals?" }
### QUESTION How many silvers have a gold greater than 2, a bronze less than 35, china as the nation, with a total greater than 26? ### CONTEXT CREATE TABLE table_name_43 (silver VARCHAR, total VARCHAR, nation VARCHAR, gold VARCHAR, bronze VARCHAR) ### ANSWER SELECT COUNT(silver) FROM table_name_43 WHERE gold > 2 AND bronze < 35 AND nation = "china" AND total > 26</s>
{ "answer": "SELECT COUNT(silver) FROM table_name_43 WHERE gold > 2 AND bronze < 35 AND nation = \"china\" AND total > 26", "context": "CREATE TABLE table_name_43 (silver VARCHAR, total VARCHAR, nation VARCHAR, gold VARCHAR, bronze VARCHAR)", "question": "How many silvers have a gold greater than 2, a bronze less than 35, china as the nation, with a total greater than 26?" }
### QUESTION Which Wins has a Country of new zealand and a Last title larger than 1968? ### CONTEXT CREATE TABLE table_name_25 (wins INTEGER, country VARCHAR, last_title VARCHAR) ### ANSWER SELECT MIN(wins) FROM table_name_25 WHERE country = "new zealand" AND last_title > 1968</s>
{ "answer": "SELECT MIN(wins) FROM table_name_25 WHERE country = \"new zealand\" AND last_title > 1968", "context": "CREATE TABLE table_name_25 (wins INTEGER, country VARCHAR, last_title VARCHAR)", "question": "Which Wins has a Country of new zealand and a Last title larger than 1968?" }
### QUESTION What is the total of Last title that has Wins smaller than 71 and a First title larger than 1968 and a Country of fiji? ### CONTEXT CREATE TABLE table_name_79 (last_title VARCHAR, country VARCHAR, wins VARCHAR, first_title VARCHAR) ### ANSWER SELECT COUNT(last_title) FROM table_name_79 WHERE wins < 71 AND first_title > 1968 AND country = "fiji"</s>
{ "answer": "SELECT COUNT(last_title) FROM table_name_79 WHERE wins < 71 AND first_title > 1968 AND country = \"fiji\"", "context": "CREATE TABLE table_name_79 (last_title VARCHAR, country VARCHAR, wins VARCHAR, first_title VARCHAR)", "question": "What is the total of Last title that has Wins smaller than 71 and a First title larger than 1968 and a Country of fiji?" }
### QUESTION How many Winners have Wins of 1 and a Country of fiji and a First title smaller than 2004? ### CONTEXT CREATE TABLE table_name_2 (winners INTEGER, first_title VARCHAR, wins VARCHAR, country VARCHAR) ### ANSWER SELECT AVG(winners) FROM table_name_2 WHERE wins = 1 AND country = "fiji" AND first_title < 2004</s>
{ "answer": "SELECT AVG(winners) FROM table_name_2 WHERE wins = 1 AND country = \"fiji\" AND first_title < 2004", "context": "CREATE TABLE table_name_2 (winners INTEGER, first_title VARCHAR, wins VARCHAR, country VARCHAR)", "question": "How many Winners have Wins of 1 and a Country of fiji and a First title smaller than 2004?" }
### QUESTION What are the highest points with a Chassis of gordini t16, and a Year smaller than 1954? ### CONTEXT CREATE TABLE table_name_41 (points INTEGER, chassis VARCHAR, year VARCHAR) ### ANSWER SELECT MAX(points) FROM table_name_41 WHERE chassis = "gordini t16" AND year < 1954</s>
{ "answer": "SELECT MAX(points) FROM table_name_41 WHERE chassis = \"gordini t16\" AND year < 1954", "context": "CREATE TABLE table_name_41 (points INTEGER, chassis VARCHAR, year VARCHAR)", "question": "What are the highest points with a Chassis of gordini t16, and a Year smaller than 1954?" }
### QUESTION What is the Date when christophe rochus was partner, and the score was 2–6, 7–6 (7–5) , 0–6? ### CONTEXT CREATE TABLE table_name_97 (date VARCHAR, partner VARCHAR, score VARCHAR) ### ANSWER SELECT date FROM table_name_97 WHERE partner = "christophe rochus" AND score = "2–6, 7–6 (7–5) , 0–6"</s>
{ "answer": "SELECT date FROM table_name_97 WHERE partner = \"christophe rochus\" AND score = \"2–6, 7–6 (7–5) , 0–6\"", "context": "CREATE TABLE table_name_97 (date VARCHAR, partner VARCHAR, score VARCHAR)", "question": "What is the Date when christophe rochus was partner, and the score was 2–6, 7–6 (7–5) , 0–6?" }
### QUESTION What entrant has a year earlier than 1960 and a veritas straight-6 engine? ### CONTEXT CREATE TABLE table_name_77 (entrant VARCHAR, year VARCHAR, engine VARCHAR) ### ANSWER SELECT entrant FROM table_name_77 WHERE year < 1960 AND engine = "veritas straight-6"</s>
{ "answer": "SELECT entrant FROM table_name_77 WHERE year < 1960 AND engine = \"veritas straight-6\"", "context": "CREATE TABLE table_name_77 (entrant VARCHAR, year VARCHAR, engine VARCHAR)", "question": "What entrant has a year earlier than 1960 and a veritas straight-6 engine?" }
### QUESTION What is the average Year with a Veritas rs chassis and more than 0 points? ### CONTEXT CREATE TABLE table_name_73 (year INTEGER, chassis VARCHAR, points VARCHAR) ### ANSWER SELECT AVG(year) FROM table_name_73 WHERE chassis = "veritas rs" AND points > 0</s>
{ "answer": "SELECT AVG(year) FROM table_name_73 WHERE chassis = \"veritas rs\" AND points > 0", "context": "CREATE TABLE table_name_73 (year INTEGER, chassis VARCHAR, points VARCHAR)", "question": "What is the average Year with a Veritas rs chassis and more than 0 points?" }
### QUESTION What is the number of points for the Entrant of wolfgang seidel and a Cooper t45 chassis later than 1960? ### CONTEXT CREATE TABLE table_name_74 (points VARCHAR, year VARCHAR, entrant VARCHAR, chassis VARCHAR) ### ANSWER SELECT COUNT(points) FROM table_name_74 WHERE entrant = "wolfgang seidel" AND chassis = "cooper t45" AND year > 1960</s>
{ "answer": "SELECT COUNT(points) FROM table_name_74 WHERE entrant = \"wolfgang seidel\" AND chassis = \"cooper t45\" AND year > 1960", "context": "CREATE TABLE table_name_74 (points VARCHAR, year VARCHAR, entrant VARCHAR, chassis VARCHAR)", "question": "What is the number of points for the Entrant of wolfgang seidel and a Cooper t45 chassis later than 1960?" }
### QUESTION What is the infinitive stem that is associated with a subjunctive present of a and a plural preterite of uo? ### CONTEXT CREATE TABLE table_name_13 (inf_stem VARCHAR, subj_pres VARCHAR, plur_pret VARCHAR) ### ANSWER SELECT inf_stem FROM table_name_13 WHERE subj_pres = "a" AND plur_pret = "uo"</s>
{ "answer": "SELECT inf_stem FROM table_name_13 WHERE subj_pres = \"a\" AND plur_pret = \"uo\"", "context": "CREATE TABLE table_name_13 (inf_stem VARCHAR, subj_pres VARCHAR, plur_pret VARCHAR)", "question": "What is the infinitive stem that is associated with a subjunctive present of a and a plural preterite of uo?" }
### QUESTION What is the Placement when the Votes are fewer than 208, and when the Candidate is Jordan Turner? ### CONTEXT CREATE TABLE table_name_58 (placement VARCHAR, votes VARCHAR, candidate VARCHAR) ### ANSWER SELECT placement FROM table_name_58 WHERE votes < 208 AND candidate = "jordan turner"</s>
{ "answer": "SELECT placement FROM table_name_58 WHERE votes < 208 AND candidate = \"jordan turner\"", "context": "CREATE TABLE table_name_58 (placement VARCHAR, votes VARCHAR, candidate VARCHAR)", "question": "What is the Placement when the Votes are fewer than 208, and when the Candidate is Jordan Turner?" }
### QUESTION What is the Placement when the Candidate is Jean-Patrick Berthiaume? ### CONTEXT CREATE TABLE table_name_96 (placement VARCHAR, candidate VARCHAR) ### ANSWER SELECT placement FROM table_name_96 WHERE candidate = "jean-patrick berthiaume"</s>
{ "answer": "SELECT placement FROM table_name_96 WHERE candidate = \"jean-patrick berthiaume\"", "context": "CREATE TABLE table_name_96 (placement VARCHAR, candidate VARCHAR)", "question": "What is the Placement when the Candidate is Jean-Patrick Berthiaume?" }
### QUESTION What is the Date, when the Sport is luge - men's doubles, and when the Record is, "start"? ### CONTEXT CREATE TABLE table_name_90 (date VARCHAR, sport VARCHAR, record VARCHAR) ### ANSWER SELECT date FROM table_name_90 WHERE sport = "luge - men's doubles" AND record = "start"</s>
{ "answer": "SELECT date FROM table_name_90 WHERE sport = \"luge - men's doubles\" AND record = \"start\"", "context": "CREATE TABLE table_name_90 (date VARCHAR, sport VARCHAR, record VARCHAR)", "question": "What is the Date, when the Sport is luge - men's doubles, and when the Record is, \"start\"?" }
### QUESTION When has Result of 2–0, and a Score of 2 – 0? ### CONTEXT CREATE TABLE table_name_38 (date VARCHAR, result VARCHAR, score VARCHAR) ### ANSWER SELECT date FROM table_name_38 WHERE result = "2–0" AND score = "2 – 0"</s>
{ "answer": "SELECT date FROM table_name_38 WHERE result = \"2–0\" AND score = \"2 – 0\"", "context": "CREATE TABLE table_name_38 (date VARCHAR, result VARCHAR, score VARCHAR)", "question": "When has Result of 2–0, and a Score of 2 – 0?" }
### QUESTION What is Date, when Venue is Melbourne Cricket Ground, and when Result is Eng By Inns&225 Runs? ### CONTEXT CREATE TABLE table_name_95 (date VARCHAR, venue VARCHAR, result VARCHAR) ### ANSWER SELECT date FROM table_name_95 WHERE venue = "melbourne cricket ground" AND result = "eng by inns&225 runs"</s>
{ "answer": "SELECT date FROM table_name_95 WHERE venue = \"melbourne cricket ground\" AND result = \"eng by inns&225 runs\"", "context": "CREATE TABLE table_name_95 (date VARCHAR, venue VARCHAR, result VARCHAR)", "question": "What is Date, when Venue is Melbourne Cricket Ground, and when Result is Eng By Inns&225 Runs?" }
### QUESTION What is Result, when Venue is Sydney Cricket Ground, and when Date is 23,24,26,27,28,29 Feb, 1 Mar 1912? ### CONTEXT CREATE TABLE table_name_31 (result VARCHAR, venue VARCHAR, date VARCHAR) ### ANSWER SELECT result FROM table_name_31 WHERE venue = "sydney cricket ground" AND date = "23,24,26,27,28,29 feb, 1 mar 1912"</s>
{ "answer": "SELECT result FROM table_name_31 WHERE venue = \"sydney cricket ground\" AND date = \"23,24,26,27,28,29 feb, 1 mar 1912\"", "context": "CREATE TABLE table_name_31 (result VARCHAR, venue VARCHAR, date VARCHAR)", "question": "What is Result, when Venue is Sydney Cricket Ground, and when Date is 23,24,26,27,28,29 Feb, 1 Mar 1912?" }
### QUESTION What was the margin of victory for the win with a score of 71-69-71-70=281? ### CONTEXT CREATE TABLE table_name_38 (margin_of_victory VARCHAR, winning_score VARCHAR) ### ANSWER SELECT margin_of_victory FROM table_name_38 WHERE winning_score = 71 - 69 - 71 - 70 = 281</s>
{ "answer": "SELECT margin_of_victory FROM table_name_38 WHERE winning_score = 71 - 69 - 71 - 70 = 281", "context": "CREATE TABLE table_name_38 (margin_of_victory VARCHAR, winning_score VARCHAR)", "question": "What was the margin of victory for the win with a score of 71-69-71-70=281?" }
### QUESTION What is the latest year a ride opened that was manufactured by Zamperla, was a convoy ride, and had a name of Tiny Truckers? ### CONTEXT CREATE TABLE table_name_93 (opened_in INTEGER, ride_name VARCHAR, manufacture VARCHAR, type VARCHAR) ### ANSWER SELECT MAX(opened_in) FROM table_name_93 WHERE manufacture = "zamperla" AND type = "convoy ride" AND ride_name = "tiny truckers"</s>
{ "answer": "SELECT MAX(opened_in) FROM table_name_93 WHERE manufacture = \"zamperla\" AND type = \"convoy ride\" AND ride_name = \"tiny truckers\"", "context": "CREATE TABLE table_name_93 (opened_in INTEGER, ride_name VARCHAR, manufacture VARCHAR, type VARCHAR)", "question": "What is the latest year a ride opened that was manufactured by Zamperla, was a convoy ride, and had a name of Tiny Truckers?" }
### QUESTION How many seasons in Meistriliiga when the club was kuressaare also had a first season in top division of more than 2000? ### CONTEXT CREATE TABLE table_name_17 (number_of_seasons_in_meistriliiga VARCHAR, club VARCHAR, first_season_in_top_division VARCHAR) ### ANSWER SELECT COUNT(number_of_seasons_in_meistriliiga) FROM table_name_17 WHERE club = "kuressaare" AND first_season_in_top_division > 2000</s>
{ "answer": "SELECT COUNT(number_of_seasons_in_meistriliiga) FROM table_name_17 WHERE club = \"kuressaare\" AND first_season_in_top_division > 2000", "context": "CREATE TABLE table_name_17 (number_of_seasons_in_meistriliiga VARCHAR, club VARCHAR, first_season_in_top_division VARCHAR)", "question": "How many seasons in Meistriliiga when the club was kuressaare also had a first season in top division of more than 2000?" }
### QUESTION What year did the Cosworth v8 engine participate in? ### CONTEXT CREATE TABLE table_name_37 (year INTEGER, engine VARCHAR) ### ANSWER SELECT AVG(year) FROM table_name_37 WHERE engine = "cosworth v8"</s>
{ "answer": "SELECT AVG(year) FROM table_name_37 WHERE engine = \"cosworth v8\"", "context": "CREATE TABLE table_name_37 (year INTEGER, engine VARCHAR)", "question": "What year did the Cosworth v8 engine participate in?" }
### QUESTION What was the time for Jean Luc Razakarivony with less than 3 heat and more than 2 lanes? ### CONTEXT CREATE TABLE table_name_44 (time VARCHAR, name VARCHAR, heat VARCHAR, lane VARCHAR) ### ANSWER SELECT time FROM table_name_44 WHERE heat < 3 AND lane > 2 AND name = "jean luc razakarivony"</s>
{ "answer": "SELECT time FROM table_name_44 WHERE heat < 3 AND lane > 2 AND name = \"jean luc razakarivony\"", "context": "CREATE TABLE table_name_44 (time VARCHAR, name VARCHAR, heat VARCHAR, lane VARCHAR)", "question": "What was the time for Jean Luc Razakarivony with less than 3 heat and more than 2 lanes?" }
### QUESTION When did Northeastern University join? ### CONTEXT CREATE TABLE table_name_59 (joined INTEGER, institution VARCHAR) ### ANSWER SELECT SUM(joined) FROM table_name_59 WHERE institution = "northeastern university"</s>
{ "answer": "SELECT SUM(joined) FROM table_name_59 WHERE institution = \"northeastern university\"", "context": "CREATE TABLE table_name_59 (joined INTEGER, institution VARCHAR)", "question": "When did Northeastern University join?" }
### QUESTION Name the loss for june 22 ### CONTEXT CREATE TABLE table_name_8 (loss VARCHAR, date VARCHAR) ### ANSWER SELECT loss FROM table_name_8 WHERE date = "june 22"</s>
{ "answer": "SELECT loss FROM table_name_8 WHERE date = \"june 22\"", "context": "CREATE TABLE table_name_8 (loss VARCHAR, date VARCHAR)", "question": "Name the loss for june 22" }
### QUESTION Who was on the prohibition ticket when Abraham J. Cuddeback was on the Greenback ticket? ### CONTEXT CREATE TABLE table_name_39 (prohibition_ticket VARCHAR, greenback_ticket VARCHAR) ### ANSWER SELECT prohibition_ticket FROM table_name_39 WHERE greenback_ticket = "abraham j. cuddeback"</s>
{ "answer": "SELECT prohibition_ticket FROM table_name_39 WHERE greenback_ticket = \"abraham j. cuddeback\"", "context": "CREATE TABLE table_name_39 (prohibition_ticket VARCHAR, greenback_ticket VARCHAR)", "question": "Who was on the prohibition ticket when Abraham J. Cuddeback was on the Greenback ticket?" }
### QUESTION What is the name of the player acquired via import and larger than 22? ### CONTEXT CREATE TABLE table_name_55 (name VARCHAR, acquisition_via VARCHAR, number VARCHAR) ### ANSWER SELECT name FROM table_name_55 WHERE acquisition_via = "import" AND number > 22</s>
{ "answer": "SELECT name FROM table_name_55 WHERE acquisition_via = \"import\" AND number > 22", "context": "CREATE TABLE table_name_55 (name VARCHAR, acquisition_via VARCHAR, number VARCHAR)", "question": "What is the name of the player acquired via import and larger than 22?" }
### QUESTION What is the number of ends lost when there are 15 blank ends, less than 14 stolen ends? ### CONTEXT CREATE TABLE table_name_67 (ends_lost VARCHAR, blank_ends VARCHAR, stolen_ends VARCHAR) ### ANSWER SELECT COUNT(ends_lost) FROM table_name_67 WHERE blank_ends = 15 AND stolen_ends < 14</s>
{ "answer": "SELECT COUNT(ends_lost) FROM table_name_67 WHERE blank_ends = 15 AND stolen_ends < 14", "context": "CREATE TABLE table_name_67 (ends_lost VARCHAR, blank_ends VARCHAR, stolen_ends VARCHAR)", "question": "What is the number of ends lost when there are 15 blank ends, less than 14 stolen ends?" }
### QUESTION What is the method of the match in the Road fc 12 at 5:00 with less than 3 rounds, and a loss result? ### CONTEXT CREATE TABLE table_name_72 (method VARCHAR, event VARCHAR, res VARCHAR, time VARCHAR, round VARCHAR) ### ANSWER SELECT method FROM table_name_72 WHERE time = "5:00" AND round < 3 AND res = "loss" AND event = "road fc 12"</s>
{ "answer": "SELECT method FROM table_name_72 WHERE time = \"5:00\" AND round < 3 AND res = \"loss\" AND event = \"road fc 12\"", "context": "CREATE TABLE table_name_72 (method VARCHAR, event VARCHAR, res VARCHAR, time VARCHAR, round VARCHAR)", "question": "What is the method of the match in the Road fc 12 at 5:00 with less than 3 rounds, and a loss result?" }
### QUESTION What shows as the First US Tour Cast when the Original Broadway Cast was Sarah Bolt? ### CONTEXT CREATE TABLE table_name_16 (first_us_tour_cast VARCHAR, original_broadway_cast VARCHAR) ### ANSWER SELECT first_us_tour_cast FROM table_name_16 WHERE original_broadway_cast = "sarah bolt"</s>
{ "answer": "SELECT first_us_tour_cast FROM table_name_16 WHERE original_broadway_cast = \"sarah bolt\"", "context": "CREATE TABLE table_name_16 (first_us_tour_cast VARCHAR, original_broadway_cast VARCHAR)", "question": "What shows as the First US Tour Cast when the Original Broadway Cast was Sarah Bolt?" }
### QUESTION What issue was the Spoofed Title of the crockford files in? ### CONTEXT CREATE TABLE table_name_50 (issue VARCHAR, spoofed_title VARCHAR) ### ANSWER SELECT issue FROM table_name_50 WHERE spoofed_title = "the crockford files"</s>
{ "answer": "SELECT issue FROM table_name_50 WHERE spoofed_title = \"the crockford files\"", "context": "CREATE TABLE table_name_50 (issue VARCHAR, spoofed_title VARCHAR)", "question": "What issue was the Spoofed Title of the crockford files in?" }
### QUESTION Who was in the Original West End Cast when the Original Broadway Cast was audrie neenan? ### CONTEXT CREATE TABLE table_name_1 (original_west_end_cast VARCHAR, original_broadway_cast VARCHAR) ### ANSWER SELECT original_west_end_cast FROM table_name_1 WHERE original_broadway_cast = "audrie neenan"</s>
{ "answer": "SELECT original_west_end_cast FROM table_name_1 WHERE original_broadway_cast = \"audrie neenan\"", "context": "CREATE TABLE table_name_1 (original_west_end_cast VARCHAR, original_broadway_cast VARCHAR)", "question": "Who was in the Original West End Cast when the Original Broadway Cast was audrie neenan?" }
### QUESTION What is the sum of lost when against is less than 37, drawn is more than 2, and played is more than 20? ### CONTEXT CREATE TABLE table_name_93 (lost VARCHAR, played VARCHAR, against VARCHAR, drawn VARCHAR) ### ANSWER SELECT COUNT(lost) FROM table_name_93 WHERE against < 37 AND drawn > 2 AND played > 20</s>
{ "answer": "SELECT COUNT(lost) FROM table_name_93 WHERE against < 37 AND drawn > 2 AND played > 20", "context": "CREATE TABLE table_name_93 (lost VARCHAR, played VARCHAR, against VARCHAR, drawn VARCHAR)", "question": "What is the sum of lost when against is less than 37, drawn is more than 2, and played is more than 20?" }
### QUESTION What is the lowest population for the area that has a density of 36.7? ### CONTEXT CREATE TABLE table_name_89 (population__2011_ INTEGER, density__inhabitants_km_2__ VARCHAR) ### ANSWER SELECT MIN(population__2011_) FROM table_name_89 WHERE density__inhabitants_km_2__ = 36.7</s>
{ "answer": "SELECT MIN(population__2011_) FROM table_name_89 WHERE density__inhabitants_km_2__ = 36.7", "context": "CREATE TABLE table_name_89 (population__2011_ INTEGER, density__inhabitants_km_2__ VARCHAR)", "question": "What is the lowest population for the area that has a density of 36.7?" }
### QUESTION How many points against has team Cardiff had when there were less than 7 tries? ### CONTEXT CREATE TABLE table_name_97 (points_against VARCHAR, team VARCHAR, tries_against VARCHAR) ### ANSWER SELECT COUNT(points_against) FROM table_name_97 WHERE team = "cardiff" AND tries_against < 7</s>
{ "answer": "SELECT COUNT(points_against) FROM table_name_97 WHERE team = \"cardiff\" AND tries_against < 7", "context": "CREATE TABLE table_name_97 (points_against VARCHAR, team VARCHAR, tries_against VARCHAR)", "question": "How many points against has team Cardiff had when there were less than 7 tries?" }
### QUESTION What start has a ford cosworth dfx as the engine, a year later than 1981, and kraco enterprises as the entrant? ### CONTEXT CREATE TABLE table_name_22 (start VARCHAR, entrant VARCHAR, engine VARCHAR, year VARCHAR) ### ANSWER SELECT start FROM table_name_22 WHERE engine = "ford cosworth dfx" AND year > 1981 AND entrant = "kraco enterprises"</s>
{ "answer": "SELECT start FROM table_name_22 WHERE engine = \"ford cosworth dfx\" AND year > 1981 AND entrant = \"kraco enterprises\"", "context": "CREATE TABLE table_name_22 (start VARCHAR, entrant VARCHAR, engine VARCHAR, year VARCHAR)", "question": "What start has a ford cosworth dfx as the engine, a year later than 1981, and kraco enterprises as the entrant?" }
### QUESTION What was the option from Italy with general television content, and the Cielo television service? ### CONTEXT CREATE TABLE table_name_84 (package_option VARCHAR, television_service VARCHAR, country VARCHAR, content VARCHAR) ### ANSWER SELECT package_option FROM table_name_84 WHERE country = "italy" AND content = "general television" AND television_service = "cielo"</s>
{ "answer": "SELECT package_option FROM table_name_84 WHERE country = \"italy\" AND content = \"general television\" AND television_service = \"cielo\"", "context": "CREATE TABLE table_name_84 (package_option VARCHAR, television_service VARCHAR, country VARCHAR, content VARCHAR)", "question": "What was the option from Italy with general television content, and the Cielo television service?" }
### QUESTION Name the total number of bronze medals when gold medals was 2, total medals more than 4 and silver medals less than 5 ### CONTEXT CREATE TABLE table_name_87 (bronze_medals VARCHAR, silver_medals VARCHAR, gold_medals VARCHAR, total_medals VARCHAR) ### ANSWER SELECT COUNT(bronze_medals) FROM table_name_87 WHERE gold_medals = 2 AND total_medals > 4 AND silver_medals < 5</s>
{ "answer": "SELECT COUNT(bronze_medals) FROM table_name_87 WHERE gold_medals = 2 AND total_medals > 4 AND silver_medals < 5", "context": "CREATE TABLE table_name_87 (bronze_medals VARCHAR, silver_medals VARCHAR, gold_medals VARCHAR, total_medals VARCHAR)", "question": "Name the total number of bronze medals when gold medals was 2, total medals more than 4 and silver medals less than 5" }
### QUESTION What country has Tematico Content, and a package with sky TV and the Lei television service? ### CONTEXT CREATE TABLE table_name_91 (country VARCHAR, television_service VARCHAR, content VARCHAR, package_option VARCHAR) ### ANSWER SELECT country FROM table_name_91 WHERE content = "tematico" AND package_option = "sky tv" AND television_service = "lei"</s>
{ "answer": "SELECT country FROM table_name_91 WHERE content = \"tematico\" AND package_option = \"sky tv\" AND television_service = \"lei\"", "context": "CREATE TABLE table_name_91 (country VARCHAR, television_service VARCHAR, content VARCHAR, package_option VARCHAR)", "question": "What country has Tematico Content, and a package with sky TV and the Lei television service?" }
### QUESTION What is the television service that has package with sky tv, and it in Italian English? ### CONTEXT CREATE TABLE table_name_30 (television_service VARCHAR, package_option VARCHAR, language VARCHAR) ### ANSWER SELECT television_service FROM table_name_30 WHERE package_option = "sky tv" AND language = "italian english"</s>
{ "answer": "SELECT television_service FROM table_name_30 WHERE package_option = \"sky tv\" AND language = \"italian english\"", "context": "CREATE TABLE table_name_30 (television_service VARCHAR, package_option VARCHAR, language VARCHAR)", "question": "What is the television service that has package with sky tv, and it in Italian English?" }
### QUESTION What language is the Tematico content with a sky tv package, and Fox Crime television service? ### CONTEXT CREATE TABLE table_name_55 (language VARCHAR, television_service VARCHAR, content VARCHAR, package_option VARCHAR) ### ANSWER SELECT language FROM table_name_55 WHERE content = "tematico" AND package_option = "sky tv" AND television_service = "fox crime"</s>
{ "answer": "SELECT language FROM table_name_55 WHERE content = \"tematico\" AND package_option = \"sky tv\" AND television_service = \"fox crime\"", "context": "CREATE TABLE table_name_55 (language VARCHAR, television_service VARCHAR, content VARCHAR, package_option VARCHAR)", "question": "What language is the Tematico content with a sky tv package, and Fox Crime television service?" }
### QUESTION What category was Joe Jonas nominated for at the Kids' Choice Awards Mexico in 2010? ### CONTEXT CREATE TABLE table_name_44 (category VARCHAR, recipient_s_ VARCHAR, award VARCHAR, result VARCHAR, year VARCHAR) ### ANSWER SELECT category FROM table_name_44 WHERE result = "nominated" AND year = 2010 AND award = "kids' choice awards mexico" AND recipient_s_ = "joe jonas"</s>
{ "answer": "SELECT category FROM table_name_44 WHERE result = \"nominated\" AND year = 2010 AND award = \"kids' choice awards mexico\" AND recipient_s_ = \"joe jonas\"", "context": "CREATE TABLE table_name_44 (category VARCHAR, recipient_s_ VARCHAR, award VARCHAR, result VARCHAR, year VARCHAR)", "question": "What category was Joe Jonas nominated for at the Kids' Choice Awards Mexico in 2010?" }
### QUESTION Which Year has a Competition of olympic games, and a Venue of atlanta, united states? ### CONTEXT CREATE TABLE table_name_93 (year INTEGER, competition VARCHAR, venue VARCHAR) ### ANSWER SELECT AVG(year) FROM table_name_93 WHERE competition = "olympic games" AND venue = "atlanta, united states"</s>
{ "answer": "SELECT AVG(year) FROM table_name_93 WHERE competition = \"olympic games\" AND venue = \"atlanta, united states\"", "context": "CREATE TABLE table_name_93 (year INTEGER, competition VARCHAR, venue VARCHAR)", "question": "Which Year has a Competition of olympic games, and a Venue of atlanta, united states?" }
### QUESTION What was the date that construction was finished when the unit was greifswald - 4 (kgr 4)? ### CONTEXT CREATE TABLE table_name_28 (finish_construction VARCHAR, unit VARCHAR) ### ANSWER SELECT finish_construction FROM table_name_28 WHERE unit = "greifswald - 4 (kgr 4)"</s>
{ "answer": "SELECT finish_construction FROM table_name_28 WHERE unit = \"greifswald - 4 (kgr 4)\"", "context": "CREATE TABLE table_name_28 (finish_construction VARCHAR, unit VARCHAR)", "question": "What was the date that construction was finished when the unit was greifswald - 4 (kgr 4)?" }
### QUESTION Which Year has a Venue of atlanta, united states? ### CONTEXT CREATE TABLE table_name_13 (year VARCHAR, venue VARCHAR) ### ANSWER SELECT year FROM table_name_13 WHERE venue = "atlanta, united states"</s>
{ "answer": "SELECT year FROM table_name_13 WHERE venue = \"atlanta, united states\"", "context": "CREATE TABLE table_name_13 (year VARCHAR, venue VARCHAR)", "question": "Which Year has a Venue of atlanta, united states?" }
### QUESTION What was the net power, when the type was wwer-440/230, and when construction was finished on 24.10.1977? ### CONTEXT CREATE TABLE table_name_74 (net_power VARCHAR, type VARCHAR, finish_construction VARCHAR) ### ANSWER SELECT net_power FROM table_name_74 WHERE type = "wwer-440/230" AND finish_construction = "24.10.1977"</s>
{ "answer": "SELECT net_power FROM table_name_74 WHERE type = \"wwer-440/230\" AND finish_construction = \"24.10.1977\"", "context": "CREATE TABLE table_name_74 (net_power VARCHAR, type VARCHAR, finish_construction VARCHAR)", "question": "What was the net power, when the type was wwer-440/230, and when construction was finished on 24.10.1977?" }
### QUESTION What is the average share for episodes with over 7.82 viewers, ranks of 3 and a weekly rank of 54? ### CONTEXT CREATE TABLE table_name_56 (share INTEGER, rank__week_ VARCHAR, viewers__millions_ VARCHAR, rank__timeslot_ VARCHAR) ### ANSWER SELECT AVG(share) FROM table_name_56 WHERE viewers__millions_ > 7.82 AND rank__timeslot_ = "3" AND rank__week_ = "54"</s>
{ "answer": "SELECT AVG(share) FROM table_name_56 WHERE viewers__millions_ > 7.82 AND rank__timeslot_ = \"3\" AND rank__week_ = \"54\"", "context": "CREATE TABLE table_name_56 (share INTEGER, rank__week_ VARCHAR, viewers__millions_ VARCHAR, rank__timeslot_ VARCHAR)", "question": "What is the average share for episodes with over 7.82 viewers, ranks of 3 and a weekly rank of 54?" }
### QUESTION What series finale has the translation ოჰ ებ αƒͺαƒ αƒ”αƒ›αƒšαƒ”αƒ‘αƒ˜ / αƒžαƒαƒ αƒαƒšαƒ”αƒšαƒ£αƒ αƒ˜ αƒ‘αƒαƒ˜αƒ“αƒ£αƒ›αƒšαƒ? ### CONTEXT CREATE TABLE table_name_56 (series_finale VARCHAR, translation VARCHAR) ### ANSWER SELECT series_finale FROM table_name_56 WHERE translation = "ოჰ ებ αƒͺαƒ αƒ”αƒ›αƒšαƒ”αƒ‘αƒ˜ / αƒžαƒαƒ αƒαƒšαƒ”αƒšαƒ£αƒ αƒ˜ αƒ‘αƒαƒ˜αƒ“αƒ£αƒ›αƒšαƒ"</s>
{ "answer": "SELECT series_finale FROM table_name_56 WHERE translation = \"ოჰ ებ αƒͺαƒ αƒ”αƒ›αƒšαƒ”αƒ‘αƒ˜ / αƒžαƒαƒ αƒαƒšαƒ”αƒšαƒ£αƒ αƒ˜ αƒ‘αƒαƒ˜αƒ“αƒ£αƒ›αƒšαƒ\"", "context": "CREATE TABLE table_name_56 (series_finale VARCHAR, translation VARCHAR)", "question": "What series finale has the translation ოჰ ებ αƒͺαƒ αƒ”αƒ›αƒšαƒ”αƒ‘αƒ˜ / αƒžαƒαƒ αƒαƒšαƒ”αƒšαƒ£αƒ αƒ˜ αƒ‘αƒαƒ˜αƒ“αƒ£αƒ›αƒšαƒ?" }
### QUESTION What category was The Suite Life on Deck nominated for later than 2010? ### CONTEXT CREATE TABLE table_name_62 (category VARCHAR, recipient VARCHAR, year VARCHAR) ### ANSWER SELECT category FROM table_name_62 WHERE recipient = "the suite life on deck" AND year > 2010</s>
{ "answer": "SELECT category FROM table_name_62 WHERE recipient = \"the suite life on deck\" AND year > 2010", "context": "CREATE TABLE table_name_62 (category VARCHAR, recipient VARCHAR, year VARCHAR)", "question": "What category was The Suite Life on Deck nominated for later than 2010?" }
### QUESTION What is the average Joined with a Nickname of wildcats in longmeadow, massachusetts? ### CONTEXT CREATE TABLE table_name_55 (joined INTEGER, nickname VARCHAR, location VARCHAR) ### ANSWER SELECT AVG(joined) FROM table_name_55 WHERE nickname = "wildcats" AND location = "longmeadow, massachusetts"</s>
{ "answer": "SELECT AVG(joined) FROM table_name_55 WHERE nickname = \"wildcats\" AND location = \"longmeadow, massachusetts\"", "context": "CREATE TABLE table_name_55 (joined INTEGER, nickname VARCHAR, location VARCHAR)", "question": "What is the average Joined with a Nickname of wildcats in longmeadow, massachusetts?" }
### QUESTION What is the sum of Asian or Amerindian (%), when State is Sergipe, and when Brown (%) is greater than 61,3? ### CONTEXT CREATE TABLE table_name_44 (asian_or_amerindian___percentage_ INTEGER, state VARCHAR, brown___percentage_ VARCHAR) ### ANSWER SELECT SUM(asian_or_amerindian___percentage_) FROM table_name_44 WHERE state = "sergipe" AND brown___percentage_ > 61 OFFSET 3</s>
{ "answer": "SELECT SUM(asian_or_amerindian___percentage_) FROM table_name_44 WHERE state = \"sergipe\" AND brown___percentage_ > 61 OFFSET 3", "context": "CREATE TABLE table_name_44 (asian_or_amerindian___percentage_ INTEGER, state VARCHAR, brown___percentage_ VARCHAR)", "question": "What is the sum of Asian or Amerindian (%), when State is Sergipe, and when Brown (%) is greater than 61,3?" }
### QUESTION Which federal state has 6 representatives of national average? ### CONTEXT CREATE TABLE table_name_3 (federal_state VARCHAR, representatives_of_national_average VARCHAR) ### ANSWER SELECT federal_state FROM table_name_3 WHERE representatives_of_national_average = "6"</s>
{ "answer": "SELECT federal_state FROM table_name_3 WHERE representatives_of_national_average = \"6\"", "context": "CREATE TABLE table_name_3 (federal_state VARCHAR, representatives_of_national_average VARCHAR)", "question": "Which federal state has 6 representatives of national average?" }
### QUESTION What award did Forest Whitaker win in 1989? ### CONTEXT CREATE TABLE table_name_54 (award VARCHAR, actor VARCHAR, year VARCHAR) ### ANSWER SELECT award FROM table_name_54 WHERE actor = "forest whitaker" AND year = 1989</s>
{ "answer": "SELECT award FROM table_name_54 WHERE actor = \"forest whitaker\" AND year = 1989", "context": "CREATE TABLE table_name_54 (award VARCHAR, actor VARCHAR, year VARCHAR)", "question": "What award did Forest Whitaker win in 1989?" }
### QUESTION What is the lowest influence with population in the millions less than 60.64, and MEPs less than 22, and 454,059 inhabitant per MEP? ### CONTEXT CREATE TABLE table_name_58 (influence INTEGER, inhabitants_per_mep VARCHAR, population_millions VARCHAR, meps VARCHAR) ### ANSWER SELECT MIN(influence) FROM table_name_58 WHERE population_millions < 60.64 AND meps < 22 AND inhabitants_per_mep = 454 OFFSET 059</s>
{ "answer": "SELECT MIN(influence) FROM table_name_58 WHERE population_millions < 60.64 AND meps < 22 AND inhabitants_per_mep = 454 OFFSET 059", "context": "CREATE TABLE table_name_58 (influence INTEGER, inhabitants_per_mep VARCHAR, population_millions VARCHAR, meps VARCHAR)", "question": "What is the lowest influence with population in the millions less than 60.64, and MEPs less than 22, and 454,059 inhabitant per MEP?" }
### QUESTION What is the highest population in the millions that has an influence of 1.02? ### CONTEXT CREATE TABLE table_name_55 (population_millions INTEGER, influence VARCHAR) ### ANSWER SELECT MAX(population_millions) FROM table_name_55 WHERE influence = 1.02</s>
{ "answer": "SELECT MAX(population_millions) FROM table_name_55 WHERE influence = 1.02", "context": "CREATE TABLE table_name_55 (population_millions INTEGER, influence VARCHAR)", "question": "What is the highest population in the millions that has an influence of 1.02?" }
### QUESTION What is the sum of the population in millions that has an influence less than 2.91, a MEP smaller than 13, a member of Latvia, and more than 286,875 inhabitants per MEP? ### CONTEXT CREATE TABLE table_name_49 (population_millions INTEGER, inhabitants_per_mep VARCHAR, member_state VARCHAR, influence VARCHAR, meps VARCHAR) ### ANSWER SELECT SUM(population_millions) FROM table_name_49 WHERE influence < 2.91 AND meps < 13 AND member_state = "latvia" AND inhabitants_per_mep > 286 OFFSET 875</s>
{ "answer": "SELECT SUM(population_millions) FROM table_name_49 WHERE influence < 2.91 AND meps < 13 AND member_state = \"latvia\" AND inhabitants_per_mep > 286 OFFSET 875", "context": "CREATE TABLE table_name_49 (population_millions INTEGER, inhabitants_per_mep VARCHAR, member_state VARCHAR, influence VARCHAR, meps VARCHAR)", "question": "What is the sum of the population in millions that has an influence less than 2.91, a MEP smaller than 13, a member of Latvia, and more than 286,875 inhabitants per MEP?" }
### QUESTION What is the highest number of inhabitants per MEP that has MEPs larger than 50, a member of Germany, and a population less than 82.43 million? ### CONTEXT CREATE TABLE table_name_26 (inhabitants_per_mep INTEGER, population_millions VARCHAR, meps VARCHAR, member_state VARCHAR) ### ANSWER SELECT MAX(inhabitants_per_mep) FROM table_name_26 WHERE meps > 50 AND member_state = "germany" AND population_millions < 82.43</s>
{ "answer": "SELECT MAX(inhabitants_per_mep) FROM table_name_26 WHERE meps > 50 AND member_state = \"germany\" AND population_millions < 82.43", "context": "CREATE TABLE table_name_26 (inhabitants_per_mep INTEGER, population_millions VARCHAR, meps VARCHAR, member_state VARCHAR)", "question": "What is the highest number of inhabitants per MEP that has MEPs larger than 50, a member of Germany, and a population less than 82.43 million?" }
### QUESTION What team does Reed Sorenson drive for? ### CONTEXT CREATE TABLE table_name_22 (team VARCHAR, driver_s_ VARCHAR) ### ANSWER SELECT team FROM table_name_22 WHERE driver_s_ = "reed sorenson"</s>
{ "answer": "SELECT team FROM table_name_22 WHERE driver_s_ = \"reed sorenson\"", "context": "CREATE TABLE table_name_22 (team VARCHAR, driver_s_ VARCHAR)", "question": "What team does Reed Sorenson drive for?" }
### QUESTION What is the average Year during which the Driver Adrian Quaife-Hobbs has fewer than 2 Poles, and 0 Fast laps? ### CONTEXT CREATE TABLE table_name_98 (year INTEGER, drivers VARCHAR, poles VARCHAR, fast_laps VARCHAR) ### ANSWER SELECT AVG(year) FROM table_name_98 WHERE poles < 2 AND fast_laps = 0 AND drivers = "adrian quaife-hobbs"</s>
{ "answer": "SELECT AVG(year) FROM table_name_98 WHERE poles < 2 AND fast_laps = 0 AND drivers = \"adrian quaife-hobbs\"", "context": "CREATE TABLE table_name_98 (year INTEGER, drivers VARCHAR, poles VARCHAR, fast_laps VARCHAR)", "question": "What is the average Year during which the Driver Adrian Quaife-Hobbs has fewer than 2 Poles, and 0 Fast laps?" }
### QUESTION Who is Eric McClure's and Tristar Motorsports' crew chief? ### CONTEXT CREATE TABLE table_name_36 (crew_chief VARCHAR, team VARCHAR, driver_s_ VARCHAR) ### ANSWER SELECT crew_chief FROM table_name_36 WHERE team = "tristar motorsports" AND driver_s_ = "eric mcclure"</s>
{ "answer": "SELECT crew_chief FROM table_name_36 WHERE team = \"tristar motorsports\" AND driver_s_ = \"eric mcclure\"", "context": "CREATE TABLE table_name_36 (crew_chief VARCHAR, team VARCHAR, driver_s_ VARCHAR)", "question": "Who is Eric McClure's and Tristar Motorsports' crew chief?" }
### QUESTION How many ranks are higher than lane 4 from Great Britain, raced by Margaretha Pedder? ### CONTEXT CREATE TABLE table_name_83 (rank VARCHAR, name VARCHAR, lane VARCHAR, nationality VARCHAR) ### ANSWER SELECT COUNT(rank) FROM table_name_83 WHERE lane > 4 AND nationality = "great britain" AND name = "margaretha pedder"</s>
{ "answer": "SELECT COUNT(rank) FROM table_name_83 WHERE lane > 4 AND nationality = \"great britain\" AND name = \"margaretha pedder\"", "context": "CREATE TABLE table_name_83 (rank VARCHAR, name VARCHAR, lane VARCHAR, nationality VARCHAR)", "question": "How many ranks are higher than lane 4 from Great Britain, raced by Margaretha Pedder?" }
### QUESTION What is the Name of the power station with a Capacity of 25 MW? ### CONTEXT CREATE TABLE table_name_9 (name VARCHAR, capacity__mw_ VARCHAR) ### ANSWER SELECT name FROM table_name_9 WHERE capacity__mw_ = 25</s>
{ "answer": "SELECT name FROM table_name_9 WHERE capacity__mw_ = 25", "context": "CREATE TABLE table_name_9 (name VARCHAR, capacity__mw_ VARCHAR)", "question": "What is the Name of the power station with a Capacity of 25 MW?" }
### QUESTION What is the number of claimed sales in the rock genre? ### CONTEXT CREATE TABLE table_name_85 (claimed_sales VARCHAR, genre VARCHAR) ### ANSWER SELECT claimed_sales FROM table_name_85 WHERE genre = "rock"</s>
{ "answer": "SELECT claimed_sales FROM table_name_85 WHERE genre = \"rock\"", "context": "CREATE TABLE table_name_85 (claimed_sales VARCHAR, genre VARCHAR)", "question": "What is the number of claimed sales in the rock genre?" }
### QUESTION What was the earliest release-year of the first charted record of Abba? ### CONTEXT CREATE TABLE table_name_88 (release_year_of_first_charted_record INTEGER, artist VARCHAR) ### ANSWER SELECT MIN(release_year_of_first_charted_record) FROM table_name_88 WHERE artist = "abba"</s>
{ "answer": "SELECT MIN(release_year_of_first_charted_record) FROM table_name_88 WHERE artist = \"abba\"", "context": "CREATE TABLE table_name_88 (release_year_of_first_charted_record INTEGER, artist VARCHAR)", "question": "What was the earliest release-year of the first charted record of Abba?" }
### QUESTION What is the average value of Bush# when the value for Others# is greater than 57, and the value for Bush% is 49.2%? ### CONTEXT CREATE TABLE table_name_70 (bush_number INTEGER, others_number VARCHAR, bush_percentage VARCHAR) ### ANSWER SELECT AVG(bush_number) FROM table_name_70 WHERE others_number > 57 AND bush_percentage = "49.2%"</s>
{ "answer": "SELECT AVG(bush_number) FROM table_name_70 WHERE others_number > 57 AND bush_percentage = \"49.2%\"", "context": "CREATE TABLE table_name_70 (bush_number INTEGER, others_number VARCHAR, bush_percentage VARCHAR)", "question": "What is the average value of Bush# when the value for Others# is greater than 57, and the value for Bush% is 49.2%?" }
### QUESTION A competition of test taking place on 23 Apr 1988 had what as a score? ### CONTEXT CREATE TABLE table_name_51 (score VARCHAR, competition VARCHAR, date VARCHAR) ### ANSWER SELECT score FROM table_name_51 WHERE competition = "test" AND date = "23 apr 1988"</s>
{ "answer": "SELECT score FROM table_name_51 WHERE competition = \"test\" AND date = \"23 apr 1988\"", "context": "CREATE TABLE table_name_51 (score VARCHAR, competition VARCHAR, date VARCHAR)", "question": "A competition of test taking place on 23 Apr 1988 had what as a score?" }
### QUESTION Which name has a lane smaller than 7, and a time greater than 54.32 with germany as the nationality and a rank less than 5? ### CONTEXT CREATE TABLE table_name_8 (name VARCHAR, rank VARCHAR, nationality VARCHAR, lane VARCHAR, time VARCHAR) ### ANSWER SELECT name FROM table_name_8 WHERE lane < 7 AND time > 54.32 AND nationality = "germany" AND rank < 5</s>
{ "answer": "SELECT name FROM table_name_8 WHERE lane < 7 AND time > 54.32 AND nationality = \"germany\" AND rank < 5", "context": "CREATE TABLE table_name_8 (name VARCHAR, rank VARCHAR, nationality VARCHAR, lane VARCHAR, time VARCHAR)", "question": "Which name has a lane smaller than 7, and a time greater than 54.32 with germany as the nationality and a rank less than 5?" }
### QUESTION Which average time has eithan urbach as a name with a lane bigger than 2? ### CONTEXT CREATE TABLE table_name_99 (time INTEGER, name VARCHAR, lane VARCHAR) ### ANSWER SELECT AVG(time) FROM table_name_99 WHERE name = "eithan urbach" AND lane > 2</s>
{ "answer": "SELECT AVG(time) FROM table_name_99 WHERE name = \"eithan urbach\" AND lane > 2", "context": "CREATE TABLE table_name_99 (time INTEGER, name VARCHAR, lane VARCHAR)", "question": "Which average time has eithan urbach as a name with a lane bigger than 2?" }
### QUESTION What is the average Year when there was a cosworth straight-4 engine, and the Entrant was ron harris / team lotus? ### CONTEXT CREATE TABLE table_name_17 (year INTEGER, engine VARCHAR, entrant VARCHAR) ### ANSWER SELECT AVG(year) FROM table_name_17 WHERE engine = "cosworth straight-4" AND entrant = "ron harris / team lotus"</s>
{ "answer": "SELECT AVG(year) FROM table_name_17 WHERE engine = \"cosworth straight-4\" AND entrant = \"ron harris / team lotus\"", "context": "CREATE TABLE table_name_17 (year INTEGER, engine VARCHAR, entrant VARCHAR)", "question": "What is the average Year when there was a cosworth straight-4 engine, and the Entrant was ron harris / team lotus?" }
### QUESTION What is the color code with a temperature classification of ordinary? ### CONTEXT CREATE TABLE table_name_67 (color_code__with_fusible_link_ VARCHAR, temperature_classification VARCHAR) ### ANSWER SELECT color_code__with_fusible_link_ FROM table_name_67 WHERE temperature_classification = "ordinary"</s>
{ "answer": "SELECT color_code__with_fusible_link_ FROM table_name_67 WHERE temperature_classification = \"ordinary\"", "context": "CREATE TABLE table_name_67 (color_code__with_fusible_link_ VARCHAR, temperature_classification VARCHAR)", "question": "What is the color code with a temperature classification of ordinary?" }
### QUESTION What is the temperature rating of the intermediate temperature classification? ### CONTEXT CREATE TABLE table_name_1 (temperature_rating VARCHAR, temperature_classification VARCHAR) ### ANSWER SELECT temperature_rating FROM table_name_1 WHERE temperature_classification = "intermediate"</s>
{ "answer": "SELECT temperature_rating FROM table_name_1 WHERE temperature_classification = \"intermediate\"", "context": "CREATE TABLE table_name_1 (temperature_rating VARCHAR, temperature_classification VARCHAR)", "question": "What is the temperature rating of the intermediate temperature classification?" }
### QUESTION What is the average number of points for a team that played 17 games and had more than 15 losses? ### CONTEXT CREATE TABLE table_name_37 (points INTEGER, games VARCHAR, losses VARCHAR) ### ANSWER SELECT AVG(points) FROM table_name_37 WHERE games = 17 AND losses > 15</s>
{ "answer": "SELECT AVG(points) FROM table_name_37 WHERE games = 17 AND losses > 15", "context": "CREATE TABLE table_name_37 (points INTEGER, games VARCHAR, losses VARCHAR)", "question": "What is the average number of points for a team that played 17 games and had more than 15 losses?" }
### QUESTION What is Home, when Ground is Humber College North, and when Time is 15:00? ### CONTEXT CREATE TABLE table_name_58 (home VARCHAR, ground VARCHAR, time VARCHAR) ### ANSWER SELECT home FROM table_name_58 WHERE ground = "humber college north" AND time = "15:00"</s>
{ "answer": "SELECT home FROM table_name_58 WHERE ground = \"humber college north\" AND time = \"15:00\"", "context": "CREATE TABLE table_name_58 (home VARCHAR, ground VARCHAR, time VARCHAR)", "question": "What is Home, when Ground is Humber College North, and when Time is 15:00?" }
### QUESTION What is the Challenge Cup total with a League of 1, Player Simon Storey, and a Total greater than 1? ### CONTEXT CREATE TABLE table_name_90 (challenge_cup INTEGER, total VARCHAR, league VARCHAR, player VARCHAR) ### ANSWER SELECT SUM(challenge_cup) FROM table_name_90 WHERE league = 1 AND player = "simon storey" AND total > 1</s>
{ "answer": "SELECT SUM(challenge_cup) FROM table_name_90 WHERE league = 1 AND player = \"simon storey\" AND total > 1", "context": "CREATE TABLE table_name_90 (challenge_cup INTEGER, total VARCHAR, league VARCHAR, player VARCHAR)", "question": "What is the Challenge Cup total with a League of 1, Player Simon Storey, and a Total greater than 1?" }
### QUESTION In what Year did Chernova come in 1st in GΓΆtzis, Austria? ### CONTEXT CREATE TABLE table_name_37 (year INTEGER, venue VARCHAR, position VARCHAR) ### ANSWER SELECT SUM(year) FROM table_name_37 WHERE venue = "gΓΆtzis, austria" AND position = "1st"</s>
{ "answer": "SELECT SUM(year) FROM table_name_37 WHERE venue = \"gΓΆtzis, austria\" AND position = \"1st\"", "context": "CREATE TABLE table_name_37 (year INTEGER, venue VARCHAR, position VARCHAR)", "question": "In what Year did Chernova come in 1st in GΓΆtzis, Austria?" }