text
stringlengths
150
1.06k
source
dict
### QUESTION When nicole dubuc duane capizzi is the writer who is the director? ### CONTEXT CREATE TABLE table_29475589_3 (director VARCHAR, writer_s_ VARCHAR) ### ANSWER SELECT director FROM table_29475589_3 WHERE writer_s_ = "Nicole Dubuc Duane Capizzi"</s>
{ "answer": "SELECT director FROM table_29475589_3 WHERE writer_s_ = \"Nicole Dubuc Duane Capizzi\"", "context": "CREATE TABLE table_29475589_3 (director VARCHAR, writer_s_ VARCHAR)", "question": "When nicole dubuc duane capizzi is the writer who is the director?" }
### QUESTION Name the average ERP W when it has a city of license of pound, virginia and frequency mhz more than 91.3 ### CONTEXT CREATE TABLE table_name_90 (erp_w INTEGER, city_of_license VARCHAR, frequency_mhz VARCHAR) ### ANSWER SELECT AVG(erp_w) FROM table_name_90 WHERE city_of_license = "pound, virginia" AND frequency_mhz > 91.3</s>
{ "answer": "SELECT AVG(erp_w) FROM table_name_90 WHERE city_of_license = \"pound, virginia\" AND frequency_mhz > 91.3", "context": "CREATE TABLE table_name_90 (erp_w INTEGER, city_of_license VARCHAR, frequency_mhz VARCHAR)", "question": "Name the average ERP W when it has a city of license of pound, virginia and frequency mhz more than 91.3" }
### QUESTION how many representatives from hanover twp were first elected in 2008 ### CONTEXT CREATE TABLE table_29486189_4 (representative VARCHAR, first_elected VARCHAR, residence VARCHAR) ### ANSWER SELECT COUNT(representative) FROM table_29486189_4 WHERE first_elected = "2008" AND residence = "Hanover Twp"</s>
{ "answer": "SELECT COUNT(representative) FROM table_29486189_4 WHERE first_elected = \"2008\" AND residence = \"Hanover Twp\"", "context": "CREATE TABLE table_29486189_4 (representative VARCHAR, first_elected VARCHAR, residence VARCHAR)", "question": "how many representatives from hanover twp were first elected in 2008" }
### QUESTION Name the most game for december 1 ### CONTEXT CREATE TABLE table_27722734_7 (game INTEGER, date VARCHAR) ### ANSWER SELECT MAX(game) FROM table_27722734_7 WHERE date = "December 1"</s>
{ "answer": "SELECT MAX(game) FROM table_27722734_7 WHERE date = \"December 1\"", "context": "CREATE TABLE table_27722734_7 (game INTEGER, date VARCHAR)", "question": "Name the most game for december 1" }
### QUESTION What is the game number where josh smith (4) had the high assists? ### CONTEXT CREATE TABLE table_27734577_13 (game INTEGER, high_assists VARCHAR) ### ANSWER SELECT MIN(game) FROM table_27734577_13 WHERE high_assists = "Josh Smith (4)"</s>
{ "answer": "SELECT MIN(game) FROM table_27734577_13 WHERE high_assists = \"Josh Smith (4)\"", "context": "CREATE TABLE table_27734577_13 (game INTEGER, high_assists VARCHAR)", "question": "What is the game number where josh smith (4) had the high assists?" }
### QUESTION How many athletes were named federico muller? ### CONTEXT CREATE TABLE table_29521180_35 (quarterfinals VARCHAR, athlete VARCHAR) ### ANSWER SELECT COUNT(quarterfinals) FROM table_29521180_35 WHERE athlete = "Federico Muller"</s>
{ "answer": "SELECT COUNT(quarterfinals) FROM table_29521180_35 WHERE athlete = \"Federico Muller\"", "context": "CREATE TABLE table_29521180_35 (quarterfinals VARCHAR, athlete VARCHAR)", "question": "How many athletes were named federico muller?" }
### QUESTION What is the date when the high points is michael beasley , martell webster (16)? ### CONTEXT CREATE TABLE table_27756314_10 (date VARCHAR, high_points VARCHAR) ### ANSWER SELECT date FROM table_27756314_10 WHERE high_points = "Michael Beasley , Martell Webster (16)"</s>
{ "answer": "SELECT date FROM table_27756314_10 WHERE high_points = \"Michael Beasley , Martell Webster (16)\"", "context": "CREATE TABLE table_27756314_10 (date VARCHAR, high_points VARCHAR)", "question": "What is the date when the high points is michael beasley , martell webster (16)?" }
### QUESTION Name the most peak performance for october 2006 - january 2010 ### CONTEXT CREATE TABLE table_27765443_2 (maximum_peak_performance___teraflops__ VARCHAR, period_of_operation VARCHAR) ### ANSWER SELECT maximum_peak_performance___teraflops__ FROM table_27765443_2 WHERE period_of_operation = "October 2006 - January 2010"</s>
{ "answer": "SELECT maximum_peak_performance___teraflops__ FROM table_27765443_2 WHERE period_of_operation = \"October 2006 - January 2010\"", "context": "CREATE TABLE table_27765443_2 (maximum_peak_performance___teraflops__ VARCHAR, period_of_operation VARCHAR)", "question": "Name the most peak performance for october 2006 - january 2010" }
### QUESTION What is the average year with an award of platinum? ### CONTEXT CREATE TABLE table_name_44 (year INTEGER, award_description_s_ VARCHAR) ### ANSWER SELECT AVG(year) FROM table_name_44 WHERE award_description_s_ = "platinum"</s>
{ "answer": "SELECT AVG(year) FROM table_name_44 WHERE award_description_s_ = \"platinum\"", "context": "CREATE TABLE table_name_44 (year INTEGER, award_description_s_ VARCHAR)", "question": "What is the average year with an award of platinum?" }
### QUESTION how many winnings does jeff gordon have? ### CONTEXT CREATE TABLE table_27781212_1 (winnings VARCHAR, driver VARCHAR) ### ANSWER SELECT winnings FROM table_27781212_1 WHERE driver = "Jeff Gordon"</s>
{ "answer": "SELECT winnings FROM table_27781212_1 WHERE driver = \"Jeff Gordon\"", "context": "CREATE TABLE table_27781212_1 (winnings VARCHAR, driver VARCHAR)", "question": "how many winnings does jeff gordon have?" }
### QUESTION Which skip (club) had 31 PA and 9 blank ends? ### CONTEXT CREATE TABLE table_29546030_2 (skip__club_ VARCHAR, pa VARCHAR, blank_ends VARCHAR) ### ANSWER SELECT skip__club_ FROM table_29546030_2 WHERE pa = 31 AND blank_ends = 9</s>
{ "answer": "SELECT skip__club_ FROM table_29546030_2 WHERE pa = 31 AND blank_ends = 9", "context": "CREATE TABLE table_29546030_2 (skip__club_ VARCHAR, pa VARCHAR, blank_ends VARCHAR)", "question": "Which skip (club) had 31 PA and 9 blank ends?" }
### QUESTION Name the catalog for alfa records and cd format ### CONTEXT CREATE TABLE table_name_84 (catalog VARCHAR, label VARCHAR, format VARCHAR) ### ANSWER SELECT catalog FROM table_name_84 WHERE label = "alfa records" AND format = "cd"</s>
{ "answer": "SELECT catalog FROM table_name_84 WHERE label = \"alfa records\" AND format = \"cd\"", "context": "CREATE TABLE table_name_84 (catalog VARCHAR, label VARCHAR, format VARCHAR)", "question": "Name the catalog for alfa records and cd format" }
### QUESTION What's the sum of years when the Artist of the queen were less than 1? ### CONTEXT CREATE TABLE table_name_59 (year VARCHAR, artist VARCHAR, weeks_at_number_one VARCHAR) ### ANSWER SELECT COUNT(year) FROM table_name_59 WHERE artist = "queen" AND weeks_at_number_one < 1</s>
{ "answer": "SELECT COUNT(year) FROM table_name_59 WHERE artist = \"queen\" AND weeks_at_number_one < 1", "context": "CREATE TABLE table_name_59 (year VARCHAR, artist VARCHAR, weeks_at_number_one VARCHAR)", "question": "What's the sum of years when the Artist of the queen were less than 1?" }
### QUESTION What is the result of the game that was played at Soldier Field? ### CONTEXT CREATE TABLE table_name_90 (result VARCHAR, game_site VARCHAR) ### ANSWER SELECT result FROM table_name_90 WHERE game_site = "soldier field"</s>
{ "answer": "SELECT result FROM table_name_90 WHERE game_site = \"soldier field\"", "context": "CREATE TABLE table_name_90 (result VARCHAR, game_site VARCHAR)", "question": "What is the result of the game that was played at Soldier Field?" }
### QUESTION How many different values of clubs involved were there when the league entering at this round was allsvenskan? ### CONTEXT CREATE TABLE table_29566686_1 (clubs_involved VARCHAR, leagues_entering_at_this_round VARCHAR) ### ANSWER SELECT COUNT(clubs_involved) FROM table_29566686_1 WHERE leagues_entering_at_this_round = "Allsvenskan"</s>
{ "answer": "SELECT COUNT(clubs_involved) FROM table_29566686_1 WHERE leagues_entering_at_this_round = \"Allsvenskan\"", "context": "CREATE TABLE table_29566686_1 (clubs_involved VARCHAR, leagues_entering_at_this_round VARCHAR)", "question": "How many different values of clubs involved were there when the league entering at this round was allsvenskan?" }
### QUESTION What is the score of the Devil Rays on April 24? ### CONTEXT CREATE TABLE table_name_28 (score VARCHAR, opponent VARCHAR, date VARCHAR) ### ANSWER SELECT score FROM table_name_28 WHERE opponent = "devil rays" AND date = "april 24"</s>
{ "answer": "SELECT score FROM table_name_28 WHERE opponent = \"devil rays\" AND date = \"april 24\"", "context": "CREATE TABLE table_name_28 (score VARCHAR, opponent VARCHAR, date VARCHAR)", "question": "What is the score of the Devil Rays on April 24?" }
### QUESTION How many episodes are directed by Jamie Payne? ### CONTEXT CREATE TABLE table_29574579_1 (episode VARCHAR, directed_by VARCHAR) ### ANSWER SELECT COUNT(episode) FROM table_29574579_1 WHERE directed_by = "Jamie Payne"</s>
{ "answer": "SELECT COUNT(episode) FROM table_29574579_1 WHERE directed_by = \"Jamie Payne\"", "context": "CREATE TABLE table_29574579_1 (episode VARCHAR, directed_by VARCHAR)", "question": "How many episodes are directed by Jamie Payne?" }
### QUESTION how many millions of North American people saw the episode whose director was Ed Sherin? ### CONTEXT CREATE TABLE table_2791668_1 (us_viewers__millions_ VARCHAR, directed_by VARCHAR) ### ANSWER SELECT us_viewers__millions_ FROM table_2791668_1 WHERE directed_by = "Ed Sherin"</s>
{ "answer": "SELECT us_viewers__millions_ FROM table_2791668_1 WHERE directed_by = \"Ed Sherin\"", "context": "CREATE TABLE table_2791668_1 (us_viewers__millions_ VARCHAR, directed_by VARCHAR)", "question": "how many millions of North American people saw the episode whose director was Ed Sherin? " }
### QUESTION What is the H.S. Asst. principal with a Glendale principal Joyce Brace during 2002-2003? ### CONTEXT CREATE TABLE table_name_47 (h_s_asst_principal VARCHAR, glendale_principal VARCHAR, year VARCHAR) ### ANSWER SELECT h_s_asst_principal FROM table_name_47 WHERE glendale_principal = "joyce brace" AND year = "2002-2003"</s>
{ "answer": "SELECT h_s_asst_principal FROM table_name_47 WHERE glendale_principal = \"joyce brace\" AND year = \"2002-2003\"", "context": "CREATE TABLE table_name_47 (h_s_asst_principal VARCHAR, glendale_principal VARCHAR, year VARCHAR)", "question": "What is the H.S. Asst. principal with a Glendale principal Joyce Brace during 2002-2003?" }
### QUESTION Who is the h.s. principal with Dave Lovering as w.r. principal and Marty Pizur as m.s. principal? ### CONTEXT CREATE TABLE table_name_99 (hs_principal VARCHAR, wr_principal VARCHAR, ms_principal VARCHAR) ### ANSWER SELECT hs_principal FROM table_name_99 WHERE wr_principal = "dave lovering" AND ms_principal = "marty pizur"</s>
{ "answer": "SELECT hs_principal FROM table_name_99 WHERE wr_principal = \"dave lovering\" AND ms_principal = \"marty pizur\"", "context": "CREATE TABLE table_name_99 (hs_principal VARCHAR, wr_principal VARCHAR, ms_principal VARCHAR)", "question": "Who is the h.s. principal with Dave Lovering as w.r. principal and Marty Pizur as m.s. principal?" }
### QUESTION What is the original air date of the episode that was number 31 in the series? ### CONTEXT CREATE TABLE table_29584044_1 (original_air_date VARCHAR, no_in_series VARCHAR) ### ANSWER SELECT original_air_date FROM table_29584044_1 WHERE no_in_series = 31</s>
{ "answer": "SELECT original_air_date FROM table_29584044_1 WHERE no_in_series = 31", "context": "CREATE TABLE table_29584044_1 (original_air_date VARCHAR, no_in_series VARCHAR)", "question": "What is the original air date of the episode that was number 31 in the series? " }
### QUESTION Who is the h.h. principal with Jim Haught as h.s. principal, Charlie Taylor as maplemere principal, and Rich Auerbach as w.r. principal? ### CONTEXT CREATE TABLE table_name_55 (hh_principal VARCHAR, wr_principal VARCHAR, hs_principal VARCHAR, maplemere_principal VARCHAR) ### ANSWER SELECT hh_principal FROM table_name_55 WHERE hs_principal = "jim haught" AND maplemere_principal = "charlie taylor" AND wr_principal = "rich auerbach"</s>
{ "answer": "SELECT hh_principal FROM table_name_55 WHERE hs_principal = \"jim haught\" AND maplemere_principal = \"charlie taylor\" AND wr_principal = \"rich auerbach\"", "context": "CREATE TABLE table_name_55 (hh_principal VARCHAR, wr_principal VARCHAR, hs_principal VARCHAR, maplemere_principal VARCHAR)", "question": "Who is the h.h. principal with Jim Haught as h.s. principal, Charlie Taylor as maplemere principal, and Rich Auerbach as w.r. principal?" }
### QUESTION Who is the Glendale principal with Greg Smorel as m.s. principal and Joleen Reinholz as H.S. principal during 2006-2007? ### CONTEXT CREATE TABLE table_name_58 (glendale_principal VARCHAR, year VARCHAR, ms_principal VARCHAR, hs_principal VARCHAR) ### ANSWER SELECT glendale_principal FROM table_name_58 WHERE ms_principal = "greg smorel" AND hs_principal = "joleen reinholz" AND year = "2006-2007"</s>
{ "answer": "SELECT glendale_principal FROM table_name_58 WHERE ms_principal = \"greg smorel\" AND hs_principal = \"joleen reinholz\" AND year = \"2006-2007\"", "context": "CREATE TABLE table_name_58 (glendale_principal VARCHAR, year VARCHAR, ms_principal VARCHAR, hs_principal VARCHAR)", "question": "Who is the Glendale principal with Greg Smorel as m.s. principal and Joleen Reinholz as H.S. principal during 2006-2007?" }
### QUESTION Which episode had viewership of 0.296 million? ### CONTEXT CREATE TABLE table_27987623_3 (episode VARCHAR, viewers__millions_ VARCHAR) ### ANSWER SELECT episode FROM table_27987623_3 WHERE viewers__millions_ = "0.296"</s>
{ "answer": "SELECT episode FROM table_27987623_3 WHERE viewers__millions_ = \"0.296\"", "context": "CREATE TABLE table_27987623_3 (episode VARCHAR, viewers__millions_ VARCHAR)", "question": "Which episode had viewership of 0.296 million?" }
### QUESTION Who was the winner in stage 7 with a general classification of Pavel Tonkov? ### CONTEXT CREATE TABLE table_name_97 (winner VARCHAR, general_classification VARCHAR, stage VARCHAR) ### ANSWER SELECT winner FROM table_name_97 WHERE general_classification = "pavel tonkov" AND stage = "7"</s>
{ "answer": "SELECT winner FROM table_name_97 WHERE general_classification = \"pavel tonkov\" AND stage = \"7\"", "context": "CREATE TABLE table_name_97 (winner VARCHAR, general_classification VARCHAR, stage VARCHAR)", "question": "Who was the winner in stage 7 with a general classification of Pavel Tonkov?" }
### QUESTION How big (in km2) is the district with a code BW? ### CONTEXT CREATE TABLE table_2801442_1 (area__km²_ INTEGER, code VARCHAR) ### ANSWER SELECT MIN(area__km²_) FROM table_2801442_1 WHERE code = "BW"</s>
{ "answer": "SELECT MIN(area__km²_) FROM table_2801442_1 WHERE code = \"BW\"", "context": "CREATE TABLE table_2801442_1 (area__km²_ INTEGER, code VARCHAR)", "question": "How big (in km2) is the district with a code BW?" }
### QUESTION What episode number of the season was written by Tom Garrigus and had 2.31 million u.s. viewers? ### CONTEXT CREATE TABLE table_28019988_5 (season__number INTEGER, us_viewers__million_ VARCHAR, written_by VARCHAR) ### ANSWER SELECT MAX(season__number) FROM table_28019988_5 WHERE us_viewers__million_ = "2.31" AND written_by = "Tom Garrigus"</s>
{ "answer": "SELECT MAX(season__number) FROM table_28019988_5 WHERE us_viewers__million_ = \"2.31\" AND written_by = \"Tom Garrigus\"", "context": "CREATE TABLE table_28019988_5 (season__number INTEGER, us_viewers__million_ VARCHAR, written_by VARCHAR)", "question": "What episode number of the season was written by Tom Garrigus and had 2.31 million u.s. viewers?" }
### QUESTION how many peaks where for the chinese episode named 萬凰之王 ### CONTEXT CREATE TABLE table_29633639_1 (peak VARCHAR, chinese_title VARCHAR) ### ANSWER SELECT COUNT(peak) FROM table_29633639_1 WHERE chinese_title = "萬凰之王"</s>
{ "answer": "SELECT COUNT(peak) FROM table_29633639_1 WHERE chinese_title = \"萬凰之王\"", "context": "CREATE TABLE table_29633639_1 (peak VARCHAR, chinese_title VARCHAR)", "question": "how many peaks where for the chinese episode named 萬凰之王" }
### QUESTION Who is the operator when willowbrook was the bodybuilder? ### CONTEXT CREATE TABLE table_28035004_1 (operator VARCHAR, bodybuilder VARCHAR) ### ANSWER SELECT operator FROM table_28035004_1 WHERE bodybuilder = "Willowbrook"</s>
{ "answer": "SELECT operator FROM table_28035004_1 WHERE bodybuilder = \"Willowbrook\"", "context": "CREATE TABLE table_28035004_1 (operator VARCHAR, bodybuilder VARCHAR)", "question": "Who is the operator when willowbrook was the bodybuilder?" }
### QUESTION What is the one mora for a low tone mora with a gloss of /˩okiru/ [òkìɽɯ́]? ### CONTEXT CREATE TABLE table_name_95 (one_mora VARCHAR, gloss VARCHAR, accented_mora VARCHAR) ### ANSWER SELECT one_mora FROM table_name_95 WHERE NOT accented_mora = "low tone" AND gloss = "/˩okiru/ [òkìɽɯ́]"</s>
{ "answer": "SELECT one_mora FROM table_name_95 WHERE NOT accented_mora = \"low tone\" AND gloss = \"/˩okiru/ [òkìɽɯ́]\"", "context": "CREATE TABLE table_name_95 (one_mora VARCHAR, gloss VARCHAR, accented_mora VARCHAR)", "question": "What is the one mora for a low tone mora with a gloss of /˩okiru/ [òkìɽɯ́]?" }
### QUESTION How many teams eliminated béziers from competition? ### CONTEXT CREATE TABLE table_28068063_3 (match_points VARCHAR, eliminated_from_competition VARCHAR) ### ANSWER SELECT COUNT(match_points) FROM table_28068063_3 WHERE eliminated_from_competition = "Béziers"</s>
{ "answer": "SELECT COUNT(match_points) FROM table_28068063_3 WHERE eliminated_from_competition = \"Béziers\"", "context": "CREATE TABLE table_28068063_3 (match_points VARCHAR, eliminated_from_competition VARCHAR)", "question": "How many teams eliminated béziers from competition?" }
### QUESTION Who proceeded to the quarter final when the london irish were eliminated from competition? ### CONTEXT CREATE TABLE table_28068063_3 (proceed_to_quarter_final VARCHAR, eliminated_from_competition VARCHAR) ### ANSWER SELECT proceed_to_quarter_final FROM table_28068063_3 WHERE eliminated_from_competition = "London Irish"</s>
{ "answer": "SELECT proceed_to_quarter_final FROM table_28068063_3 WHERE eliminated_from_competition = \"London Irish\"", "context": "CREATE TABLE table_28068063_3 (proceed_to_quarter_final VARCHAR, eliminated_from_competition VARCHAR)", "question": "Who proceeded to the quarter final when the london irish were eliminated from competition?" }
### QUESTION Who is the opponent of the match with a method of submission (armbar) and a 9-3-1 record? ### CONTEXT CREATE TABLE table_name_86 (opponent VARCHAR, method VARCHAR, record VARCHAR) ### ANSWER SELECT opponent FROM table_name_86 WHERE method = "submission (armbar)" AND record = "9-3-1"</s>
{ "answer": "SELECT opponent FROM table_name_86 WHERE method = \"submission (armbar)\" AND record = \"9-3-1\"", "context": "CREATE TABLE table_name_86 (opponent VARCHAR, method VARCHAR, record VARCHAR)", "question": "Who is the opponent of the match with a method of submission (armbar) and a 9-3-1 record?" }
### QUESTION What is the location of the match where the method was submission (armbar) and Mayra Conde was the opponent? ### CONTEXT CREATE TABLE table_name_19 (location VARCHAR, method VARCHAR, opponent VARCHAR) ### ANSWER SELECT location FROM table_name_19 WHERE method = "submission (armbar)" AND opponent = "mayra conde"</s>
{ "answer": "SELECT location FROM table_name_19 WHERE method = \"submission (armbar)\" AND opponent = \"mayra conde\"", "context": "CREATE TABLE table_name_19 (location VARCHAR, method VARCHAR, opponent VARCHAR)", "question": "What is the location of the match where the method was submission (armbar) and Mayra Conde was the opponent?" }
### QUESTION Which films participated when the category was Best Newcomer? ### CONTEXT CREATE TABLE table_29644931_1 (participants_recipients VARCHAR, category VARCHAR) ### ANSWER SELECT participants_recipients FROM table_29644931_1 WHERE category = "Best Newcomer"</s>
{ "answer": "SELECT participants_recipients FROM table_29644931_1 WHERE category = \"Best Newcomer\"", "context": "CREATE TABLE table_29644931_1 (participants_recipients VARCHAR, category VARCHAR)", "question": "Which films participated when the category was Best Newcomer?" }
### QUESTION What original air date was the episode with production code of 5.05? ### CONTEXT CREATE TABLE table_28089666_1 (original_air_date VARCHAR, production_code VARCHAR) ### ANSWER SELECT original_air_date FROM table_28089666_1 WHERE production_code = "5.05"</s>
{ "answer": "SELECT original_air_date FROM table_28089666_1 WHERE production_code = \"5.05\"", "context": "CREATE TABLE table_28089666_1 (original_air_date VARCHAR, production_code VARCHAR)", "question": "What original air date was the episode with production code of 5.05?" }
### QUESTION Who wrote episode with production code 1.01? ### CONTEXT CREATE TABLE table_28089666_1 (written_by VARCHAR, production_code VARCHAR) ### ANSWER SELECT written_by FROM table_28089666_1 WHERE production_code = "1.01"</s>
{ "answer": "SELECT written_by FROM table_28089666_1 WHERE production_code = \"1.01\"", "context": "CREATE TABLE table_28089666_1 (written_by VARCHAR, production_code VARCHAR)", "question": "Who wrote episode with production code 1.01?" }
### QUESTION What is the location of game 7? ### CONTEXT CREATE TABLE table_name_1 (location VARCHAR, game VARCHAR) ### ANSWER SELECT location FROM table_name_1 WHERE game = 7</s>
{ "answer": "SELECT location FROM table_name_1 WHERE game = 7", "context": "CREATE TABLE table_name_1 (location VARCHAR, game VARCHAR)", "question": "What is the location of game 7?" }
### QUESTION Who was eliminated by being pinned after a spear at 22:50? ### CONTEXT CREATE TABLE table_29692554_2 (wrestler VARCHAR, method_of_elimination VARCHAR, time VARCHAR) ### ANSWER SELECT wrestler FROM table_29692554_2 WHERE method_of_elimination = "Pinned after a spear" AND time = "22:50"</s>
{ "answer": "SELECT wrestler FROM table_29692554_2 WHERE method_of_elimination = \"Pinned after a spear\" AND time = \"22:50\"", "context": "CREATE TABLE table_29692554_2 (wrestler VARCHAR, method_of_elimination VARCHAR, time VARCHAR)", "question": "Who was eliminated by being pinned after a spear at 22:50?" }
### QUESTION what is the circuit where the fastest lap is sam lowes and the winning rider is luca scassa? ### CONTEXT CREATE TABLE table_29686983_1 (circuit VARCHAR, fastest_lap VARCHAR, winning_rider VARCHAR) ### ANSWER SELECT circuit FROM table_29686983_1 WHERE fastest_lap = "Sam Lowes" AND winning_rider = "Luca Scassa"</s>
{ "answer": "SELECT circuit FROM table_29686983_1 WHERE fastest_lap = \"Sam Lowes\" AND winning_rider = \"Luca Scassa\"", "context": "CREATE TABLE table_29686983_1 (circuit VARCHAR, fastest_lap VARCHAR, winning_rider VARCHAR)", "question": "what is the circuit where the fastest lap is sam lowes and the winning rider is luca scassa?" }
### QUESTION When was the game at Gillette Stadium that ended in a final score of 30-17? ### CONTEXT CREATE TABLE table_name_37 (date VARCHAR, final_score VARCHAR, stadium VARCHAR) ### ANSWER SELECT date FROM table_name_37 WHERE final_score = "30-17" AND stadium = "gillette stadium"</s>
{ "answer": "SELECT date FROM table_name_37 WHERE final_score = \"30-17\" AND stadium = \"gillette stadium\"", "context": "CREATE TABLE table_name_37 (date VARCHAR, final_score VARCHAR, stadium VARCHAR)", "question": "When was the game at Gillette Stadium that ended in a final score of 30-17?" }
### QUESTION What is the original air date the was written by mark st. germain and direct by jay sandrich? ### CONTEXT CREATE TABLE table_2818164_7 (original_air_date VARCHAR, written_by VARCHAR, directed_by VARCHAR) ### ANSWER SELECT original_air_date FROM table_2818164_7 WHERE written_by = "Mark St. Germain" AND directed_by = "Jay Sandrich"</s>
{ "answer": "SELECT original_air_date FROM table_2818164_7 WHERE written_by = \"Mark St. Germain\" AND directed_by = \"Jay Sandrich\"", "context": "CREATE TABLE table_2818164_7 (original_air_date VARCHAR, written_by VARCHAR, directed_by VARCHAR)", "question": "What is the original air date the was written by mark st. germain and direct by jay sandrich?" }
### QUESTION What year did the Nashville Metros have the Regular Season 2nd, central? ### CONTEXT CREATE TABLE table_name_74 (year VARCHAR, regular_season VARCHAR) ### ANSWER SELECT year FROM table_name_74 WHERE regular_season = "2nd, central"</s>
{ "answer": "SELECT year FROM table_name_74 WHERE regular_season = \"2nd, central\"", "context": "CREATE TABLE table_name_74 (year VARCHAR, regular_season VARCHAR)", "question": "What year did the Nashville Metros have the Regular Season 2nd, central?" }
### QUESTION What is every value for average on previous season if the competition is league two? ### CONTEXT CREATE TABLE table_2970978_1 (___ave_on_prev_season VARCHAR, competition VARCHAR) ### ANSWER SELECT ___ave_on_prev_season FROM table_2970978_1 WHERE competition = "League Two"</s>
{ "answer": "SELECT ___ave_on_prev_season FROM table_2970978_1 WHERE competition = \"League Two\"", "context": "CREATE TABLE table_2970978_1 (___ave_on_prev_season VARCHAR, competition VARCHAR)", "question": "What is every value for average on previous season if the competition is league two?" }
### QUESTION What was the average year that the Nashville Metros did not qualify for the Playoffs, did not qualify for the Open Cup, and had the Regular Season 7th, Southeast? ### CONTEXT CREATE TABLE table_name_78 (year INTEGER, regular_season VARCHAR, playoffs VARCHAR, open_cup VARCHAR) ### ANSWER SELECT AVG(year) FROM table_name_78 WHERE playoffs = "did not qualify" AND open_cup = "did not qualify" AND regular_season = "7th, southeast"</s>
{ "answer": "SELECT AVG(year) FROM table_name_78 WHERE playoffs = \"did not qualify\" AND open_cup = \"did not qualify\" AND regular_season = \"7th, southeast\"", "context": "CREATE TABLE table_name_78 (year INTEGER, regular_season VARCHAR, playoffs VARCHAR, open_cup VARCHAR)", "question": "What was the average year that the Nashville Metros did not qualify for the Playoffs, did not qualify for the Open Cup, and had the Regular Season 7th, Southeast?" }
### QUESTION How many sets of presenters are there for the version of the show named Celebrity Masterchef? ### CONTEXT CREATE TABLE table_28190363_1 (presenter_s_ VARCHAR, name VARCHAR) ### ANSWER SELECT COUNT(presenter_s_) FROM table_28190363_1 WHERE name = "Celebrity MasterChef"</s>
{ "answer": "SELECT COUNT(presenter_s_) FROM table_28190363_1 WHERE name = \"Celebrity MasterChef\"", "context": "CREATE TABLE table_28190363_1 (presenter_s_ VARCHAR, name VARCHAR)", "question": "How many sets of presenters are there for the version of the show named Celebrity Masterchef?" }
### QUESTION What is the most stolen ends? ### CONTEXT CREATE TABLE table_29704430_1 (stolen_ends INTEGER) ### ANSWER SELECT MAX(stolen_ends) FROM table_29704430_1</s>
{ "answer": "SELECT MAX(stolen_ends) FROM table_29704430_1", "context": "CREATE TABLE table_29704430_1 (stolen_ends INTEGER)", "question": "What is the most stolen ends?" }
### QUESTION How many times is the ethnic group other: total? ### CONTEXT CREATE TABLE table_282413_3 (ethnic_group VARCHAR) ### ANSWER SELECT COUNT(*) FROM table_282413_3 WHERE ethnic_group = "Other: Total"</s>
{ "answer": "SELECT COUNT(*) FROM table_282413_3 WHERE ethnic_group = \"Other: Total\"", "context": "CREATE TABLE table_282413_3 (ethnic_group VARCHAR)", "question": "How many times is the ethnic group other: total?" }
### QUESTION What is the series # when the director is john showalter? ### CONTEXT CREATE TABLE table_29747178_2 (series__number VARCHAR, directed_by VARCHAR) ### ANSWER SELECT series__number FROM table_29747178_2 WHERE directed_by = "John Showalter"</s>
{ "answer": "SELECT series__number FROM table_29747178_2 WHERE directed_by = \"John Showalter\"", "context": "CREATE TABLE table_29747178_2 (series__number VARCHAR, directed_by VARCHAR)", "question": "What is the series # when the director is john showalter?" }
### QUESTION Which episode had a share 16-19 of 23,22%? ### CONTEXT CREATE TABLE table_29773532_21 (episode INTEGER, share_16_39 VARCHAR) ### ANSWER SELECT MAX(episode) FROM table_29773532_21 WHERE share_16_39 = "23,22%"</s>
{ "answer": "SELECT MAX(episode) FROM table_29773532_21 WHERE share_16_39 = \"23,22%\"", "context": "CREATE TABLE table_29773532_21 (episode INTEGER, share_16_39 VARCHAR)", "question": "Which episode had a share 16-19 of 23,22%?" }
### QUESTION Name the least decile for state authority and area of eketahuna with roll more than 44 ### CONTEXT CREATE TABLE table_name_78 (decile INTEGER, roll VARCHAR, authority VARCHAR, area VARCHAR) ### ANSWER SELECT MIN(decile) FROM table_name_78 WHERE authority = "state" AND area = "eketahuna" AND roll > 44</s>
{ "answer": "SELECT MIN(decile) FROM table_name_78 WHERE authority = \"state\" AND area = \"eketahuna\" AND roll > 44", "context": "CREATE TABLE table_name_78 (decile INTEGER, roll VARCHAR, authority VARCHAR, area VARCHAR)", "question": "Name the least decile for state authority and area of eketahuna with roll more than 44" }
### QUESTION Name the launched for 13 september 1934 completion ### CONTEXT CREATE TABLE table_name_91 (launched VARCHAR, completed VARCHAR) ### ANSWER SELECT launched FROM table_name_91 WHERE completed = "13 september 1934"</s>
{ "answer": "SELECT launched FROM table_name_91 WHERE completed = \"13 september 1934\"", "context": "CREATE TABLE table_name_91 (launched VARCHAR, completed VARCHAR)", "question": "Name the launched for 13 september 1934 completion" }
### QUESTION Name the pennant number for completion of 30 october 1934 and launched 29 march 1934 ### CONTEXT CREATE TABLE table_name_43 (pennant_number VARCHAR, launched VARCHAR, completed VARCHAR) ### ANSWER SELECT pennant_number FROM table_name_43 WHERE launched = "29 march 1934" AND completed = "30 october 1934"</s>
{ "answer": "SELECT pennant_number FROM table_name_43 WHERE launched = \"29 march 1934\" AND completed = \"30 october 1934\"", "context": "CREATE TABLE table_name_43 (pennant_number VARCHAR, launched VARCHAR, completed VARCHAR)", "question": "Name the pennant number for completion of 30 october 1934 and launched 29 march 1934" }
### QUESTION Which Points Classification Navy Blue Jersey that has a Jersey of Graeme Brown ### CONTEXT CREATE TABLE table_name_8 (points_classification_navy_blue_jersey VARCHAR, general_classification_yellow_jersey VARCHAR) ### ANSWER SELECT points_classification_navy_blue_jersey FROM table_name_8 WHERE general_classification_yellow_jersey = "graeme brown"</s>
{ "answer": "SELECT points_classification_navy_blue_jersey FROM table_name_8 WHERE general_classification_yellow_jersey = \"graeme brown\"", "context": "CREATE TABLE table_name_8 (points_classification_navy_blue_jersey VARCHAR, general_classification_yellow_jersey VARCHAR)", "question": "Which Points Classification Navy Blue Jersey that has a Jersey of Graeme Brown" }
### QUESTION What is the Intermediate Sprints Classification Red Jersey that has a Green Jersey of Murilo Antonio Fischer, and Jose Joaquin Rojas Gil? ### CONTEXT CREATE TABLE table_name_34 (intermediate_sprints_classification_red_jersey VARCHAR, mountains_classification_green_jersey VARCHAR, points_classification_navy_blue_jersey VARCHAR) ### ANSWER SELECT intermediate_sprints_classification_red_jersey FROM table_name_34 WHERE mountains_classification_green_jersey = "murilo antonio fischer" AND points_classification_navy_blue_jersey = "jose joaquin rojas gil"</s>
{ "answer": "SELECT intermediate_sprints_classification_red_jersey FROM table_name_34 WHERE mountains_classification_green_jersey = \"murilo antonio fischer\" AND points_classification_navy_blue_jersey = \"jose joaquin rojas gil\"", "context": "CREATE TABLE table_name_34 (intermediate_sprints_classification_red_jersey VARCHAR, mountains_classification_green_jersey VARCHAR, points_classification_navy_blue_jersey VARCHAR)", "question": "What is the Intermediate Sprints Classification Red Jersey that has a Green Jersey of Murilo Antonio Fischer, and Jose Joaquin Rojas Gil?" }
### QUESTION What is General Classification Yellow Jersey that has a Murilo Antonio Fischer, and Lampre-Fondital? ### CONTEXT CREATE TABLE table_name_74 (general_classification_yellow_jersey VARCHAR, mountains_classification_green_jersey VARCHAR, team_classification VARCHAR) ### ANSWER SELECT general_classification_yellow_jersey FROM table_name_74 WHERE mountains_classification_green_jersey = "murilo antonio fischer" AND team_classification = "lampre-fondital"</s>
{ "answer": "SELECT general_classification_yellow_jersey FROM table_name_74 WHERE mountains_classification_green_jersey = \"murilo antonio fischer\" AND team_classification = \"lampre-fondital\"", "context": "CREATE TABLE table_name_74 (general_classification_yellow_jersey VARCHAR, mountains_classification_green_jersey VARCHAR, team_classification VARCHAR)", "question": "What is General Classification Yellow Jersey that has a Murilo Antonio Fischer, and Lampre-Fondital?" }
### QUESTION What is the Points Classification Navy Blue Jersey that has Yoann le Boulanger, and Gerolsteiner? ### CONTEXT CREATE TABLE table_name_11 (points_classification_navy_blue_jersey VARCHAR, mountains_classification_green_jersey VARCHAR, team_classification VARCHAR) ### ANSWER SELECT points_classification_navy_blue_jersey FROM table_name_11 WHERE mountains_classification_green_jersey = "yoann le boulanger" AND team_classification = "gerolsteiner"</s>
{ "answer": "SELECT points_classification_navy_blue_jersey FROM table_name_11 WHERE mountains_classification_green_jersey = \"yoann le boulanger\" AND team_classification = \"gerolsteiner\"", "context": "CREATE TABLE table_name_11 (points_classification_navy_blue_jersey VARCHAR, mountains_classification_green_jersey VARCHAR, team_classification VARCHAR)", "question": "What is the Points Classification Navy Blue Jersey that has Yoann le Boulanger, and Gerolsteiner?" }
### QUESTION What pick was Greg Strome? ### CONTEXT CREATE TABLE table_2850912_6 (pick__number INTEGER, player VARCHAR) ### ANSWER SELECT MAX(pick__number) FROM table_2850912_6 WHERE player = "Greg Strome"</s>
{ "answer": "SELECT MAX(pick__number) FROM table_2850912_6 WHERE player = \"Greg Strome\"", "context": "CREATE TABLE table_2850912_6 (pick__number INTEGER, player VARCHAR)", "question": "What pick was Greg Strome?" }
### QUESTION Which TV network had its series finale on May 7, 2012? ### CONTEXT CREATE TABLE table_29799700_2 (tv_network_s_ VARCHAR, series_finale VARCHAR) ### ANSWER SELECT tv_network_s_ FROM table_29799700_2 WHERE series_finale = "May 7, 2012"</s>
{ "answer": "SELECT tv_network_s_ FROM table_29799700_2 WHERE series_finale = \"May 7, 2012\"", "context": "CREATE TABLE table_29799700_2 (tv_network_s_ VARCHAR, series_finale VARCHAR)", "question": "Which TV network had its series finale on May 7, 2012?" }
### QUESTION What are all the winning records when the result is Scotland won on points table and the Runner-Up result is [[|]] 4 points? ### CONTEXT CREATE TABLE table_28601467_1 (winner VARCHAR, result VARCHAR, runner_up VARCHAR) ### ANSWER SELECT winner FROM table_28601467_1 WHERE result = "Scotland won on points table" AND runner_up = "[[|]] 4 points"</s>
{ "answer": "SELECT winner FROM table_28601467_1 WHERE result = \"Scotland won on points table\" AND runner_up = \"[[|]] 4 points\"", "context": "CREATE TABLE table_28601467_1 (winner VARCHAR, result VARCHAR, runner_up VARCHAR)", "question": "What are all the winning records when the result is Scotland won on points table and the Runner-Up result is [[|]] 4 points?" }
### QUESTION What is the runner-up record where winner record is Ireland 59 points? ### CONTEXT CREATE TABLE table_28601467_1 (runner_up VARCHAR, winner VARCHAR) ### ANSWER SELECT runner_up FROM table_28601467_1 WHERE winner = "Ireland 59 points"</s>
{ "answer": "SELECT runner_up FROM table_28601467_1 WHERE winner = \"Ireland 59 points\"", "context": "CREATE TABLE table_28601467_1 (runner_up VARCHAR, winner VARCHAR)", "question": "What is the runner-up record where winner record is Ireland 59 points?" }
### QUESTION What is every original air date with U.S. viewers of 0.23 million? ### CONTEXT CREATE TABLE table_29803475_2 (original_air_date VARCHAR, us_viewers__million_ VARCHAR) ### ANSWER SELECT original_air_date FROM table_29803475_2 WHERE us_viewers__million_ = "0.23"</s>
{ "answer": "SELECT original_air_date FROM table_29803475_2 WHERE us_viewers__million_ = \"0.23\"", "context": "CREATE TABLE table_29803475_2 (original_air_date VARCHAR, us_viewers__million_ VARCHAR)", "question": "What is every original air date with U.S. viewers of 0.23 million?" }
### QUESTION What was the final venue whene England hasted the competition and the runner-up record is [[|]] 4 points and the winner record is [[|]] 6 points? ### CONTEXT CREATE TABLE table_28601467_1 (final_venue VARCHAR, winner VARCHAR, host_nation_s_ VARCHAR, runner_up VARCHAR) ### ANSWER SELECT final_venue FROM table_28601467_1 WHERE host_nation_s_ = "England" AND runner_up = "[[|]] 4 points" AND winner = "[[|]] 6 points"</s>
{ "answer": "SELECT final_venue FROM table_28601467_1 WHERE host_nation_s_ = \"England\" AND runner_up = \"[[|]] 4 points\" AND winner = \"[[|]] 6 points\"", "context": "CREATE TABLE table_28601467_1 (final_venue VARCHAR, winner VARCHAR, host_nation_s_ VARCHAR, runner_up VARCHAR)", "question": "What was the final venue whene England hasted the competition and the runner-up record is [[|]] 4 points and the winner record is [[|]] 6 points?" }
### QUESTION What record was reached with a score of 7 - 2? ### CONTEXT CREATE TABLE table_name_8 (record VARCHAR, score VARCHAR) ### ANSWER SELECT record FROM table_name_8 WHERE score = "7 - 2"</s>
{ "answer": "SELECT record FROM table_name_8 WHERE score = \"7 - 2\"", "context": "CREATE TABLE table_name_8 (record VARCHAR, score VARCHAR)", "question": "What record was reached with a score of 7 - 2?" }
### QUESTION What is the number of games for Roger Merrett? ### CONTEXT CREATE TABLE table_name_39 (games VARCHAR, player VARCHAR) ### ANSWER SELECT games FROM table_name_39 WHERE player = "roger merrett"</s>
{ "answer": "SELECT games FROM table_name_39 WHERE player = \"roger merrett\"", "context": "CREATE TABLE table_name_39 (games VARCHAR, player VARCHAR)", "question": "What is the number of games for Roger Merrett?" }
### QUESTION What is every country with a flag with population of 11346670? ### CONTEXT CREATE TABLE table_298550_1 (country_with_flag VARCHAR, population__1_july_2005_est_ VARCHAR) ### ANSWER SELECT country_with_flag FROM table_298550_1 WHERE population__1_july_2005_est_ = 11346670</s>
{ "answer": "SELECT country_with_flag FROM table_298550_1 WHERE population__1_july_2005_est_ = 11346670", "context": "CREATE TABLE table_298550_1 (country_with_flag VARCHAR, population__1_july_2005_est_ VARCHAR)", "question": "What is every country with a flag with population of 11346670?" }
### QUESTION What are the dimensions of the coin with western sea barrage and locks at taedong gang on the reverse side? ### CONTEXT CREATE TABLE table_298883_5 (dimensions VARCHAR, reverse VARCHAR) ### ANSWER SELECT dimensions FROM table_298883_5 WHERE reverse = "Western sea barrage and locks at Taedong Gang"</s>
{ "answer": "SELECT dimensions FROM table_298883_5 WHERE reverse = \"Western sea barrage and locks at Taedong Gang\"", "context": "CREATE TABLE table_298883_5 (dimensions VARCHAR, reverse VARCHAR)", "question": "What are the dimensions of the coin with western sea barrage and locks at taedong gang on the reverse side?" }
### QUESTION Before 1987, what is the Entrant with bmw straight-4 (t/c) as Engine and a great than 2 Pts? ### CONTEXT CREATE TABLE table_name_12 (entrant VARCHAR, pts VARCHAR, year VARCHAR, engine VARCHAR) ### ANSWER SELECT entrant FROM table_name_12 WHERE year < 1987 AND engine = "bmw straight-4 (t/c)" AND pts > 2</s>
{ "answer": "SELECT entrant FROM table_name_12 WHERE year < 1987 AND engine = \"bmw straight-4 (t/c)\" AND pts > 2", "context": "CREATE TABLE table_name_12 (entrant VARCHAR, pts VARCHAR, year VARCHAR, engine VARCHAR)", "question": "Before 1987, what is the Entrant with bmw straight-4 (t/c) as Engine and a great than 2 Pts?" }
### QUESTION How many Miss Waters has Canada had? ### CONTEXT CREATE TABLE table_30008638_1 (miss_water INTEGER, country_territory VARCHAR) ### ANSWER SELECT MAX(miss_water) FROM table_30008638_1 WHERE country_territory = "Canada"</s>
{ "answer": "SELECT MAX(miss_water) FROM table_30008638_1 WHERE country_territory = \"Canada\"", "context": "CREATE TABLE table_30008638_1 (miss_water INTEGER, country_territory VARCHAR)", "question": "How many Miss Waters has Canada had?" }
### QUESTION What is the poor law union on Marshalstown? ### CONTEXT CREATE TABLE table_28802165_1 (poor_law_union VARCHAR, townland VARCHAR) ### ANSWER SELECT poor_law_union FROM table_28802165_1 WHERE townland = "Marshalstown"</s>
{ "answer": "SELECT poor_law_union FROM table_28802165_1 WHERE townland = \"Marshalstown\"", "context": "CREATE TABLE table_28802165_1 (poor_law_union VARCHAR, townland VARCHAR)", "question": "What is the poor law union on Marshalstown?" }
### QUESTION What is the original air date for episode graeme clifford directed and lindsay sturman wrote? ### CONTEXT CREATE TABLE table_28859177_3 (original_air_date VARCHAR, directed_by VARCHAR, written_by VARCHAR) ### ANSWER SELECT original_air_date FROM table_28859177_3 WHERE directed_by = "Graeme Clifford" AND written_by = "Lindsay Sturman"</s>
{ "answer": "SELECT original_air_date FROM table_28859177_3 WHERE directed_by = \"Graeme Clifford\" AND written_by = \"Lindsay Sturman\"", "context": "CREATE TABLE table_28859177_3 (original_air_date VARCHAR, directed_by VARCHAR, written_by VARCHAR)", "question": "What is the original air date for episode graeme clifford directed and lindsay sturman wrote?" }
### QUESTION What is the total number of points for the conference division, a league position of 9th, and a lost result less than 13? ### CONTEXT CREATE TABLE table_name_61 (points VARCHAR, lost VARCHAR, division VARCHAR, league_pos VARCHAR) ### ANSWER SELECT COUNT(points) FROM table_name_61 WHERE division = "conference" AND league_pos = "9th" AND lost < 13</s>
{ "answer": "SELECT COUNT(points) FROM table_name_61 WHERE division = \"conference\" AND league_pos = \"9th\" AND lost < 13", "context": "CREATE TABLE table_name_61 (points VARCHAR, lost VARCHAR, division VARCHAR, league_pos VARCHAR)", "question": "What is the total number of points for the conference division, a league position of 9th, and a lost result less than 13?" }
### QUESTION What country does the player who joined the Vancouver Canucks originally hail from? ### CONTEXT CREATE TABLE table_2886617_4 (nationality VARCHAR, nhl_team VARCHAR) ### ANSWER SELECT nationality FROM table_2886617_4 WHERE nhl_team = "Vancouver Canucks"</s>
{ "answer": "SELECT nationality FROM table_2886617_4 WHERE nhl_team = \"Vancouver Canucks\"", "context": "CREATE TABLE table_2886617_4 (nationality VARCHAR, nhl_team VARCHAR)", "question": "What country does the player who joined the Vancouver Canucks originally hail from?" }
### QUESTION Which nationality has left wing as the position and college/junior/team is portland winterhawks (whl)? ### CONTEXT CREATE TABLE table_2886617_3 (nationality VARCHAR, position VARCHAR, college_junior_club_team VARCHAR) ### ANSWER SELECT nationality FROM table_2886617_3 WHERE position = "Left Wing" AND college_junior_club_team = "Portland Winterhawks (WHL)"</s>
{ "answer": "SELECT nationality FROM table_2886617_3 WHERE position = \"Left Wing\" AND college_junior_club_team = \"Portland Winterhawks (WHL)\"", "context": "CREATE TABLE table_2886617_3 (nationality VARCHAR, position VARCHAR, college_junior_club_team VARCHAR)", "question": "Which nationality has left wing as the position and college/junior/team is portland winterhawks (whl)?" }
### QUESTION When 0,4, or 8 mb is the nupowr 117 what is the nupowr 183? ### CONTEXT CREATE TABLE table_3002894_4 (nupowr_183 VARCHAR, nupowr_117 VARCHAR) ### ANSWER SELECT nupowr_183 FROM table_3002894_4 WHERE nupowr_117 = "0,4, or 8 MB"</s>
{ "answer": "SELECT nupowr_183 FROM table_3002894_4 WHERE nupowr_117 = \"0,4, or 8 MB\"", "context": "CREATE TABLE table_3002894_4 (nupowr_183 VARCHAR, nupowr_117 VARCHAR)", "question": "When 0,4, or 8 mb is the nupowr 117 what is the nupowr 183?" }
### QUESTION Name the least point for mv agusta and rank of 13th for wins less than 0 ### CONTEXT CREATE TABLE table_name_52 (points INTEGER, wins VARCHAR, team VARCHAR, rank VARCHAR) ### ANSWER SELECT MIN(points) FROM table_name_52 WHERE team = "mv agusta" AND rank = "13th" AND wins < 0</s>
{ "answer": "SELECT MIN(points) FROM table_name_52 WHERE team = \"mv agusta\" AND rank = \"13th\" AND wins < 0", "context": "CREATE TABLE table_name_52 (points INTEGER, wins VARCHAR, team VARCHAR, rank VARCHAR)", "question": "Name the least point for mv agusta and rank of 13th for wins less than 0" }
### QUESTION Name the least rank when games are more than 34 and the season is 2009-10 ### CONTEXT CREATE TABLE table_name_98 (rank INTEGER, games VARCHAR, season VARCHAR) ### ANSWER SELECT MIN(rank) FROM table_name_98 WHERE games > 34 AND season = "2009-10"</s>
{ "answer": "SELECT MIN(rank) FROM table_name_98 WHERE games > 34 AND season = \"2009-10\"", "context": "CREATE TABLE table_name_98 (rank INTEGER, games VARCHAR, season VARCHAR)", "question": "Name the least rank when games are more than 34 and the season is 2009-10" }
### QUESTION Name how ashtagrama lyers say it for engal veetil, engal agathil ### CONTEXT CREATE TABLE table_name_6 (how_ashtagrama_iyers_say_it VARCHAR, pure_tamil VARCHAR) ### ANSWER SELECT how_ashtagrama_iyers_say_it FROM table_name_6 WHERE pure_tamil = "engal veetil, engal agathil"</s>
{ "answer": "SELECT how_ashtagrama_iyers_say_it FROM table_name_6 WHERE pure_tamil = \"engal veetil, engal agathil\"", "context": "CREATE TABLE table_name_6 (how_ashtagrama_iyers_say_it VARCHAR, pure_tamil VARCHAR)", "question": "Name how ashtagrama lyers say it for engal veetil, engal agathil" }
### QUESTION Name the english meaning for engey poringo ### CONTEXT CREATE TABLE table_name_8 (english_meaning VARCHAR, how_other_tamils_say_it VARCHAR) ### ANSWER SELECT english_meaning FROM table_name_8 WHERE how_other_tamils_say_it = "engey poringo"</s>
{ "answer": "SELECT english_meaning FROM table_name_8 WHERE how_other_tamils_say_it = \"engey poringo\"", "context": "CREATE TABLE table_name_8 (english_meaning VARCHAR, how_other_tamils_say_it VARCHAR)", "question": "Name the english meaning for engey poringo" }
### QUESTION in the detroit team who made the high points ### CONTEXT CREATE TABLE table_30049462_5 (high_points VARCHAR, team VARCHAR) ### ANSWER SELECT high_points FROM table_30049462_5 WHERE team = "Detroit"</s>
{ "answer": "SELECT high_points FROM table_30049462_5 WHERE team = \"Detroit\"", "context": "CREATE TABLE table_30049462_5 (high_points VARCHAR, team VARCHAR)", "question": "in the detroit team who made the high points" }
### QUESTION Name how other lyers say enga ullale ### CONTEXT CREATE TABLE table_name_22 (how_other_iyers_say_it VARCHAR, how_ashtagrama_iyers_say_it VARCHAR) ### ANSWER SELECT how_other_iyers_say_it FROM table_name_22 WHERE how_ashtagrama_iyers_say_it = "enga ullale"</s>
{ "answer": "SELECT how_other_iyers_say_it FROM table_name_22 WHERE how_ashtagrama_iyers_say_it = \"enga ullale\"", "context": "CREATE TABLE table_name_22 (how_other_iyers_say_it VARCHAR, how_ashtagrama_iyers_say_it VARCHAR)", "question": "Name how other lyers say enga ullale" }
### QUESTION What's the total built by the United Kingdom and holds 1,300 passengers? ### CONTEXT CREATE TABLE table_name_68 (built VARCHAR, registry VARCHAR, passengers VARCHAR) ### ANSWER SELECT COUNT(built) FROM table_name_68 WHERE registry = "united kingdom" AND passengers = 1 OFFSET 300</s>
{ "answer": "SELECT COUNT(built) FROM table_name_68 WHERE registry = \"united kingdom\" AND passengers = 1 OFFSET 300", "context": "CREATE TABLE table_name_68 (built VARCHAR, registry VARCHAR, passengers VARCHAR)", "question": "What's the total built by the United Kingdom and holds 1,300 passengers?" }
### QUESTION what is the most amount of cattle where they live in british columbia ### CONTEXT CREATE TABLE table_29012710_1 (number_of_dairy_cows INTEGER, province VARCHAR) ### ANSWER SELECT MAX(number_of_dairy_cows) FROM table_29012710_1 WHERE province = "British Columbia"</s>
{ "answer": "SELECT MAX(number_of_dairy_cows) FROM table_29012710_1 WHERE province = \"British Columbia\"", "context": "CREATE TABLE table_29012710_1 (number_of_dairy_cows INTEGER, province VARCHAR)", "question": "what is the most amount of cattle where they live in british columbia" }
### QUESTION what is the most number where cattle is 13000 ### CONTEXT CREATE TABLE table_29012710_1 (province VARCHAR, number_of_dairy_cows VARCHAR) ### ANSWER SELECT COUNT(province) FROM table_29012710_1 WHERE number_of_dairy_cows = 13000</s>
{ "answer": "SELECT COUNT(province) FROM table_29012710_1 WHERE number_of_dairy_cows = 13000", "context": "CREATE TABLE table_29012710_1 (province VARCHAR, number_of_dairy_cows VARCHAR)", "question": "what is the most number where cattle is 13000" }
### QUESTION How many entries are there for high rebounds when high points is inge – 19? ### CONTEXT CREATE TABLE table_30054758_3 (high_rebounds VARCHAR, high_points VARCHAR) ### ANSWER SELECT COUNT(high_rebounds) FROM table_30054758_3 WHERE high_points = "Inge – 19"</s>
{ "answer": "SELECT COUNT(high_rebounds) FROM table_30054758_3 WHERE high_points = \"Inge – 19\"", "context": "CREATE TABLE table_30054758_3 (high_rebounds VARCHAR, high_points VARCHAR)", "question": "How many entries are there for high rebounds when high points is inge – 19?" }
### QUESTION Which state has 67% Republicans and a ratio of 24/12 of Republicans to Democrats? ### CONTEXT CREATE TABLE table_name_28 (state_ranked_in_partisan_order VARCHAR, percentage_republicans VARCHAR, republican__democratic VARCHAR) ### ANSWER SELECT state_ranked_in_partisan_order FROM table_name_28 WHERE percentage_republicans = "67%" AND republican__democratic = "24/12"</s>
{ "answer": "SELECT state_ranked_in_partisan_order FROM table_name_28 WHERE percentage_republicans = \"67%\" AND republican__democratic = \"24/12\"", "context": "CREATE TABLE table_name_28 (state_ranked_in_partisan_order VARCHAR, percentage_republicans VARCHAR, republican__democratic VARCHAR)", "question": "Which state has 67% Republicans and a ratio of 24/12 of Republicans to Democrats?" }
### QUESTION What is the production code of the episode that was watched by 3.81 million U.S. viewers? ### CONTEXT CREATE TABLE table_29054902_1 (production_code VARCHAR, us_viewers__million_ VARCHAR) ### ANSWER SELECT production_code FROM table_29054902_1 WHERE us_viewers__million_ = "3.81"</s>
{ "answer": "SELECT production_code FROM table_29054902_1 WHERE us_viewers__million_ = \"3.81\"", "context": "CREATE TABLE table_29054902_1 (production_code VARCHAR, us_viewers__million_ VARCHAR)", "question": "What is the production code of the episode that was watched by 3.81 million U.S. viewers? " }
### QUESTION What is the ratio of Republicans to Democrats in South Carolina? ### CONTEXT CREATE TABLE table_name_91 (republican__democratic VARCHAR, state_ranked_in_partisan_order VARCHAR) ### ANSWER SELECT republican__democratic FROM table_name_91 WHERE state_ranked_in_partisan_order = "south carolina"</s>
{ "answer": "SELECT republican__democratic FROM table_name_91 WHERE state_ranked_in_partisan_order = \"south carolina\"", "context": "CREATE TABLE table_name_91 (republican__democratic VARCHAR, state_ranked_in_partisan_order VARCHAR)", "question": "What is the ratio of Republicans to Democrats in South Carolina?" }
### QUESTION What number episode in the series had and original United States air date of December 24, 2010? ### CONTEXT CREATE TABLE table_29087004_2 (series__number INTEGER, united_states_original_airdate VARCHAR) ### ANSWER SELECT MAX(series__number) FROM table_29087004_2 WHERE united_states_original_airdate = "December 24, 2010"</s>
{ "answer": "SELECT MAX(series__number) FROM table_29087004_2 WHERE united_states_original_airdate = \"December 24, 2010\"", "context": "CREATE TABLE table_29087004_2 (series__number INTEGER, united_states_original_airdate VARCHAR)", "question": "What number episode in the series had and original United States air date of December 24, 2010?" }
### QUESTION Who wrote the episode directed by Jos Humphrey that had an original Canadian air date that was unknown and a United States original air date of August 27, 2011? ### CONTEXT CREATE TABLE table_29087004_2 (written_by VARCHAR, united_states_original_airdate VARCHAR, directed_by VARCHAR, canada_original_airdate VARCHAR) ### ANSWER SELECT written_by FROM table_29087004_2 WHERE directed_by = "Jos Humphrey" AND canada_original_airdate = "Unknown" AND united_states_original_airdate = "August 27, 2011"</s>
{ "answer": "SELECT written_by FROM table_29087004_2 WHERE directed_by = \"Jos Humphrey\" AND canada_original_airdate = \"Unknown\" AND united_states_original_airdate = \"August 27, 2011\"", "context": "CREATE TABLE table_29087004_2 (written_by VARCHAR, united_states_original_airdate VARCHAR, directed_by VARCHAR, canada_original_airdate VARCHAR)", "question": "Who wrote the episode directed by Jos Humphrey that had an original Canadian air date that was unknown and a United States original air date of August 27, 2011?" }
### QUESTION What is the Republican seat plurality of North Carolina? ### CONTEXT CREATE TABLE table_name_18 (republican_seat_plurality VARCHAR, state_ranked_in_partisan_order VARCHAR) ### ANSWER SELECT republican_seat_plurality FROM table_name_18 WHERE state_ranked_in_partisan_order = "north carolina"</s>
{ "answer": "SELECT republican_seat_plurality FROM table_name_18 WHERE state_ranked_in_partisan_order = \"north carolina\"", "context": "CREATE TABLE table_name_18 (republican_seat_plurality VARCHAR, state_ranked_in_partisan_order VARCHAR)", "question": "What is the Republican seat plurality of North Carolina?" }
### QUESTION What shows for thurs 25 aug when fri 26 aug is 19' 30.70 116.023mph? ### CONTEXT CREATE TABLE table_30058355_2 (thurs_25_aug VARCHAR, fri_26_aug VARCHAR) ### ANSWER SELECT thurs_25_aug FROM table_30058355_2 WHERE fri_26_aug = "19' 30.70 116.023mph"</s>
{ "answer": "SELECT thurs_25_aug FROM table_30058355_2 WHERE fri_26_aug = \"19' 30.70 116.023mph\"", "context": "CREATE TABLE table_30058355_2 (thurs_25_aug VARCHAR, fri_26_aug VARCHAR)", "question": "What shows for thurs 25 aug when fri 26 aug is 19' 30.70 116.023mph?" }
### QUESTION When david ashburn richard westbrook is the gt3 winner and 1 is the round what is the length? ### CONTEXT CREATE TABLE table_30062172_3 (length VARCHAR, round VARCHAR, gt3_winner VARCHAR) ### ANSWER SELECT length FROM table_30062172_3 WHERE round = 1 AND gt3_winner = "David Ashburn Richard Westbrook"</s>
{ "answer": "SELECT length FROM table_30062172_3 WHERE round = 1 AND gt3_winner = \"David Ashburn Richard Westbrook\"", "context": "CREATE TABLE table_30062172_3 (length VARCHAR, round VARCHAR, gt3_winner VARCHAR)", "question": "When david ashburn richard westbrook is the gt3 winner and 1 is the round what is the length?" }
### QUESTION When charles bateman michael lyons is the gt3 winner and donington park is the circuit who is the gt4 winner? ### CONTEXT CREATE TABLE table_30062172_3 (gt4_winner VARCHAR, circuit VARCHAR, gt3_winner VARCHAR) ### ANSWER SELECT gt4_winner FROM table_30062172_3 WHERE circuit = "Donington Park" AND gt3_winner = "Charles Bateman Michael Lyons"</s>
{ "answer": "SELECT gt4_winner FROM table_30062172_3 WHERE circuit = \"Donington Park\" AND gt3_winner = \"Charles Bateman Michael Lyons\"", "context": "CREATE TABLE table_30062172_3 (gt4_winner VARCHAR, circuit VARCHAR, gt3_winner VARCHAR)", "question": "When charles bateman michael lyons is the gt3 winner and donington park is the circuit who is the gt4 winner?" }
### QUESTION How many appearances by Meek Mill? ### CONTEXT CREATE TABLE table_29160596_1 (appearances INTEGER, top_mc VARCHAR) ### ANSWER SELECT MAX(appearances) FROM table_29160596_1 WHERE top_mc = "Meek Mill"</s>
{ "answer": "SELECT MAX(appearances) FROM table_29160596_1 WHERE top_mc = \"Meek Mill\"", "context": "CREATE TABLE table_29160596_1 (appearances INTEGER, top_mc VARCHAR)", "question": "How many appearances by Meek Mill?" }
### QUESTION Name the number of troops for troops per $1 billion being 2.45 ### CONTEXT CREATE TABLE table_30108346_1 (number_of_troops VARCHAR, troops_per_$1_billion___usd___gdp VARCHAR) ### ANSWER SELECT COUNT(number_of_troops) FROM table_30108346_1 WHERE troops_per_$1_billion___usd___gdp = "2.45"</s>
{ "answer": "SELECT COUNT(number_of_troops) FROM table_30108346_1 WHERE troops_per_$1_billion___usd___gdp = \"2.45\"", "context": "CREATE TABLE table_30108346_1 (number_of_troops VARCHAR, troops_per_$1_billion___usd___gdp VARCHAR)", "question": "Name the number of troops for troops per $1 billion being 2.45" }
### QUESTION Name the total number of troops per one million being 2.76 ### CONTEXT CREATE TABLE table_30108346_1 (troops_per_one_million_population VARCHAR, troops_per_$1_billion___usd___gdp VARCHAR) ### ANSWER SELECT COUNT(troops_per_one_million_population) FROM table_30108346_1 WHERE troops_per_$1_billion___usd___gdp = "2.76"</s>
{ "answer": "SELECT COUNT(troops_per_one_million_population) FROM table_30108346_1 WHERE troops_per_$1_billion___usd___gdp = \"2.76\"", "context": "CREATE TABLE table_30108346_1 (troops_per_one_million_population VARCHAR, troops_per_$1_billion___usd___gdp VARCHAR)", "question": "Name the total number of troops per one million being 2.76" }
### QUESTION Which player(s) played at Howard college? ### CONTEXT CREATE TABLE table_30108930_6 (player VARCHAR, college VARCHAR) ### ANSWER SELECT player FROM table_30108930_6 WHERE college = "Howard"</s>
{ "answer": "SELECT player FROM table_30108930_6 WHERE college = \"Howard\"", "context": "CREATE TABLE table_30108930_6 (player VARCHAR, college VARCHAR)", "question": "Which player(s) played at Howard college?" }
### QUESTION Which start has 32 as the finish and laps more than 6? ### CONTEXT CREATE TABLE table_name_11 (start VARCHAR, finish VARCHAR, laps VARCHAR) ### ANSWER SELECT start FROM table_name_11 WHERE finish = "32" AND laps > 6</s>
{ "answer": "SELECT start FROM table_name_11 WHERE finish = \"32\" AND laps > 6", "context": "CREATE TABLE table_name_11 (start VARCHAR, finish VARCHAR, laps VARCHAR)", "question": "Which start has 32 as the finish and laps more than 6?" }
### QUESTION How many poles does the European F3 Open series have? ### CONTEXT CREATE TABLE table_29434211_1 (poles VARCHAR, series VARCHAR) ### ANSWER SELECT poles FROM table_29434211_1 WHERE series = "European F3 Open"</s>
{ "answer": "SELECT poles FROM table_29434211_1 WHERE series = \"European F3 Open\"", "context": "CREATE TABLE table_29434211_1 (poles VARCHAR, series VARCHAR)", "question": "How many poles does the European F3 Open series have?" }