text
stringlengths
146
1.06k
source
dict
### QUESTION What was Rut's Slovenes percentage in 1991? ### CONTEXT CREATE TABLE table_name_76 (percent_of_slovenes_1991 VARCHAR, village__slovenian_ VARCHAR) ### ANSWER SELECT percent_of_slovenes_1991 FROM table_name_76 WHERE village__slovenian_ = "rut"
{ "answer": "SELECT percent_of_slovenes_1991 FROM table_name_76 WHERE village__slovenian_ = \"rut\"", "context": "CREATE TABLE table_name_76 (percent_of_slovenes_1991 VARCHAR, village__slovenian_ VARCHAR)", "question": "What was Rut's Slovenes percentage in 1991?" }
### QUESTION When the population change 2002-2012 (%) is 35.5 what is the rank in nyagatare sectors? ### CONTEXT CREATE TABLE table_12496904_1 (_2012 VARCHAR, rank_in_nyagatare_sectors INTEGER, population_change_2002_2012___percentage_ VARCHAR) ### ANSWER SELECT MAX(rank_in_nyagatare_sectors), _2012 FROM table_12496904_1 WHERE population_change_2002_2012___percentage_ = "35.5"
{ "answer": "SELECT MAX(rank_in_nyagatare_sectors), _2012 FROM table_12496904_1 WHERE population_change_2002_2012___percentage_ = \"35.5\"", "context": "CREATE TABLE table_12496904_1 (_2012 VARCHAR, rank_in_nyagatare_sectors INTEGER, population_change_2002_2012___percentage_ VARCHAR)", "question": "When the population change 2002-2012 (%) is 35.5 what is the rank in nyagatare sectors?" }
### QUESTION What is the gross capacity of the unit that started commercial operation on August 28, 1987? ### CONTEXT CREATE TABLE table_name_17 (gross_capacity VARCHAR, commercial_operation VARCHAR) ### ANSWER SELECT gross_capacity FROM table_name_17 WHERE commercial_operation = "august 28, 1987"
{ "answer": "SELECT gross_capacity FROM table_name_17 WHERE commercial_operation = \"august 28, 1987\"", "context": "CREATE TABLE table_name_17 (gross_capacity VARCHAR, commercial_operation VARCHAR)", "question": "What is the gross capacity of the unit that started commercial operation on August 28, 1987?" }
### QUESTION What is the gross capacity where the reactor is ABWR type? ### CONTEXT CREATE TABLE table_name_54 (gross_capacity VARCHAR, reactor_type VARCHAR) ### ANSWER SELECT gross_capacity FROM table_name_54 WHERE reactor_type = "abwr"
{ "answer": "SELECT gross_capacity FROM table_name_54 WHERE reactor_type = \"abwr\"", "context": "CREATE TABLE table_name_54 (gross_capacity VARCHAR, reactor_type VARCHAR)", "question": "What is the gross capacity where the reactor is ABWR type?" }
### QUESTION what are the notes for date (from) 12 august 1897? ### CONTEXT CREATE TABLE table_12562214_1 (notes VARCHAR, date__from_ VARCHAR) ### ANSWER SELECT notes FROM table_12562214_1 WHERE date__from_ = "12 August 1897"
{ "answer": "SELECT notes FROM table_12562214_1 WHERE date__from_ = \"12 August 1897\"", "context": "CREATE TABLE table_12562214_1 (notes VARCHAR, date__from_ VARCHAR)", "question": "what are the notes for date (from) 12 august 1897?" }
### QUESTION What was the population in Stanthorpe in the year when the population in Rosenthal was 1548? ### CONTEXT CREATE TABLE table_12584173_1 (population__stanthorpe_ INTEGER, population__rosenthal_ VARCHAR) ### ANSWER SELECT MAX(population__stanthorpe_) FROM table_12584173_1 WHERE population__rosenthal_ = 1548
{ "answer": "SELECT MAX(population__stanthorpe_) FROM table_12584173_1 WHERE population__rosenthal_ = 1548", "context": "CREATE TABLE table_12584173_1 (population__stanthorpe_ INTEGER, population__rosenthal_ VARCHAR)", "question": "What was the population in Stanthorpe in the year when the population in Rosenthal was 1548?" }
### QUESTION What is the low grid for gerhard berger for laps over 56? ### CONTEXT CREATE TABLE table_name_18 (grid INTEGER, driver VARCHAR, laps VARCHAR) ### ANSWER SELECT MIN(grid) FROM table_name_18 WHERE driver = "gerhard berger" AND laps > 56
{ "answer": "SELECT MIN(grid) FROM table_name_18 WHERE driver = \"gerhard berger\" AND laps > 56", "context": "CREATE TABLE table_name_18 (grid INTEGER, driver VARCHAR, laps VARCHAR)", "question": "What is the low grid for gerhard berger for laps over 56?" }
### QUESTION What is the teaching language with the duration (years) 3.5? ### CONTEXT CREATE TABLE table_12591022_2 (teaching_language VARCHAR, duration__years_ VARCHAR) ### ANSWER SELECT teaching_language FROM table_12591022_2 WHERE duration__years_ = "3.5"
{ "answer": "SELECT teaching_language FROM table_12591022_2 WHERE duration__years_ = \"3.5\"", "context": "CREATE TABLE table_12591022_2 (teaching_language VARCHAR, duration__years_ VARCHAR)", "question": "What is the teaching language with the duration (years) 3.5?" }
### QUESTION What is the compound name listed where marine organism α is worm ### CONTEXT CREATE TABLE table_12715053_1 (compound_name VARCHAR, marine_organism_α VARCHAR) ### ANSWER SELECT compound_name FROM table_12715053_1 WHERE marine_organism_α = "Worm"
{ "answer": "SELECT compound_name FROM table_12715053_1 WHERE marine_organism_α = \"Worm\"", "context": "CREATE TABLE table_12715053_1 (compound_name VARCHAR, marine_organism_α VARCHAR)", "question": "What is the compound name listed where marine organism α is worm" }
### QUESTION How many compound names list a chemical class of depsipeptide and a clinical trials β value of 1/7? ### CONTEXT CREATE TABLE table_12715053_1 (compound_name VARCHAR, chemical_class VARCHAR, clinical_trials_β VARCHAR) ### ANSWER SELECT COUNT(compound_name) FROM table_12715053_1 WHERE chemical_class = "Depsipeptide" AND clinical_trials_β = "1/7"
{ "answer": "SELECT COUNT(compound_name) FROM table_12715053_1 WHERE chemical_class = \"Depsipeptide\" AND clinical_trials_β = \"1/7\"", "context": "CREATE TABLE table_12715053_1 (compound_name VARCHAR, chemical_class VARCHAR, clinical_trials_β VARCHAR)", "question": "How many compound names list a chemical class of depsipeptide and a clinical trials β value of 1/7?" }
### QUESTION What's the clock speed of the model that costs $910? ### CONTEXT CREATE TABLE table_12740151_8 (clock_speed VARCHAR, price___usd__ VARCHAR) ### ANSWER SELECT clock_speed FROM table_12740151_8 WHERE price___usd__ = "$910"
{ "answer": "SELECT clock_speed FROM table_12740151_8 WHERE price___usd__ = \"$910\"", "context": "CREATE TABLE table_12740151_8 (clock_speed VARCHAR, price___usd__ VARCHAR)", "question": "What's the clock speed of the model that costs $910?" }
### QUESTION what is the right ascension (j2000) when the constellation is sextans and the declination (j2000) is °28′01″? ### CONTEXT CREATE TABLE table_name_53 (right_ascension___j2000__ VARCHAR, constellation VARCHAR, declination___j2000__ VARCHAR) ### ANSWER SELECT right_ascension___j2000__ FROM table_name_53 WHERE constellation = "sextans" AND declination___j2000__ = "°28′01″"
{ "answer": "SELECT right_ascension___j2000__ FROM table_name_53 WHERE constellation = \"sextans\" AND declination___j2000__ = \"°28′01″\"", "context": "CREATE TABLE table_name_53 (right_ascension___j2000__ VARCHAR, constellation VARCHAR, declination___j2000__ VARCHAR)", "question": "what is the right ascension (j2000) when the constellation is sextans and the declination (j2000) is °28′01″?" }
### QUESTION what's the saturday saturnus ( saturn) with wednesday mercurius (mercury) being mercuridi ### CONTEXT CREATE TABLE table_1277350_1 (saturday_saturnus___saturn_ VARCHAR, wednesday_mercurius__mercury_ VARCHAR) ### ANSWER SELECT saturday_saturnus___saturn_ FROM table_1277350_1 WHERE wednesday_mercurius__mercury_ = "Mercuridi"
{ "answer": "SELECT saturday_saturnus___saturn_ FROM table_1277350_1 WHERE wednesday_mercurius__mercury_ = \"Mercuridi\"", "context": "CREATE TABLE table_1277350_1 (saturday_saturnus___saturn_ VARCHAR, wednesday_mercurius__mercury_ VARCHAR)", "question": "what's the saturday saturnus ( saturn) with wednesday mercurius (mercury) being mercuridi" }
### QUESTION what is the constellation when the Right ascension ( J2000 ) is 10h18m58.4s? ### CONTEXT CREATE TABLE table_name_10 (constellation VARCHAR, right_ascension___j2000__ VARCHAR) ### ANSWER SELECT constellation FROM table_name_10 WHERE right_ascension___j2000__ = "10h18m58.4s"
{ "answer": "SELECT constellation FROM table_name_10 WHERE right_ascension___j2000__ = \"10h18m58.4s\"", "context": "CREATE TABLE table_name_10 (constellation VARCHAR, right_ascension___j2000__ VARCHAR)", "question": "what is the constellation when the Right ascension ( J2000 ) is 10h18m58.4s?" }
### QUESTION How many Goals have a Result of 0 – 4? ### CONTEXT CREATE TABLE table_name_26 (goals INTEGER, result VARCHAR) ### ANSWER SELECT AVG(goals) FROM table_name_26 WHERE result = "0 – 4"
{ "answer": "SELECT AVG(goals) FROM table_name_26 WHERE result = \"0 – 4\"", "context": "CREATE TABLE table_name_26 (goals INTEGER, result VARCHAR)", "question": "How many Goals have a Result of 0 – 4?" }
### QUESTION In language where Thursday is برس وار bres'var, what is Sunday? ### CONTEXT CREATE TABLE table_1277350_3 (sunday_surya__the_sun_ VARCHAR, thursday_guru__jupiter_ VARCHAR) ### ANSWER SELECT sunday_surya__the_sun_ FROM table_1277350_3 WHERE thursday_guru__jupiter_ = "برس وار Bres'var"
{ "answer": "SELECT sunday_surya__the_sun_ FROM table_1277350_3 WHERE thursday_guru__jupiter_ = \"برس وار Bres'var\"", "context": "CREATE TABLE table_1277350_3 (sunday_surya__the_sun_ VARCHAR, thursday_guru__jupiter_ VARCHAR)", "question": "In language where Thursday is برس وار bres'var, what is Sunday?" }
### QUESTION What is the least amount of freight carried when the super b capacity reached was February 26? ### CONTEXT CREATE TABLE table_12791809_1 (freight_carried_s_tonne INTEGER, super_b_capacity_reached_ VARCHAR, _citation_needed_ VARCHAR) ### ANSWER SELECT MIN(freight_carried_s_tonne) FROM table_12791809_1 WHERE super_b_capacity_reached_[_citation_needed_] = "February 26"
{ "answer": "SELECT MIN(freight_carried_s_tonne) FROM table_12791809_1 WHERE super_b_capacity_reached_[_citation_needed_] = \"February 26\"", "context": "CREATE TABLE table_12791809_1 (freight_carried_s_tonne INTEGER, super_b_capacity_reached_ VARCHAR, _citation_needed_ VARCHAR)", "question": "What is the least amount of freight carried when the super b capacity reached was February 26?" }
### QUESTION What is the third entry in the row with a first entry of "club"? ### CONTEXT CREATE TABLE table_12792876_2 (won VARCHAR) ### ANSWER SELECT won FROM table_12792876_2 WHERE "club" = "club"
{ "answer": "SELECT won FROM table_12792876_2 WHERE \"club\" = \"club\"", "context": "CREATE TABLE table_12792876_2 (won VARCHAR)", "question": "What is the third entry in the row with a first entry of \"club\"?" }
### QUESTION What was the tries against when the drawn was 2? ### CONTEXT CREATE TABLE table_12792876_3 (tries_against VARCHAR, drawn VARCHAR) ### ANSWER SELECT tries_against FROM table_12792876_3 WHERE drawn = "2"
{ "answer": "SELECT tries_against FROM table_12792876_3 WHERE drawn = \"2\"", "context": "CREATE TABLE table_12792876_3 (tries_against VARCHAR, drawn VARCHAR)", "question": "What was the tries against when the drawn was 2?" }
### QUESTION Name the year that Birds of a feather category for most popular actress was nominated ### CONTEXT CREATE TABLE table_name_57 (year INTEGER, category VARCHAR, nominated_for VARCHAR) ### ANSWER SELECT AVG(year) FROM table_name_57 WHERE category = "most popular actress" AND nominated_for = "birds of a feather"
{ "answer": "SELECT AVG(year) FROM table_name_57 WHERE category = \"most popular actress\" AND nominated_for = \"birds of a feather\"", "context": "CREATE TABLE table_name_57 (year INTEGER, category VARCHAR, nominated_for VARCHAR)", "question": "Name the year that Birds of a feather category for most popular actress was nominated" }
### QUESTION What was the number of earnings were cuts made are 19 and money list rank is 3? ### CONTEXT CREATE TABLE table_12821159_14 (earnings__€_ VARCHAR, cuts_made VARCHAR, money_list_rank VARCHAR) ### ANSWER SELECT earnings__€_ FROM table_12821159_14 WHERE cuts_made = 19 AND money_list_rank = 3
{ "answer": "SELECT earnings__€_ FROM table_12821159_14 WHERE cuts_made = 19 AND money_list_rank = 3", "context": "CREATE TABLE table_12821159_14 (earnings__€_ VARCHAR, cuts_made VARCHAR, money_list_rank VARCHAR)", "question": "What was the number of earnings were cuts made are 19 and money list rank is 3?" }
### QUESTION Which party won in 2003, that had a swing to gain of less than 2.92 and which resulted in a ld hold? ### CONTEXT CREATE TABLE table_name_26 (winning_party_2003 VARCHAR, swing_to_gain VARCHAR, result VARCHAR) ### ANSWER SELECT winning_party_2003 FROM table_name_26 WHERE swing_to_gain < 2.92 AND result = "ld hold"
{ "answer": "SELECT winning_party_2003 FROM table_name_26 WHERE swing_to_gain < 2.92 AND result = \"ld hold\"", "context": "CREATE TABLE table_name_26 (winning_party_2003 VARCHAR, swing_to_gain VARCHAR, result VARCHAR)", "question": "Which party won in 2003, that had a swing to gain of less than 2.92 and which resulted in a ld hold?" }
### QUESTION Which rank had the Labour party winning in 2003, a swing to gain that was larger than 2.13, a lab hold as a result, and which took place in the Linlithgow constituency? ### CONTEXT CREATE TABLE table_name_21 (rank VARCHAR, constituency VARCHAR, result VARCHAR, winning_party_2003 VARCHAR, swing_to_gain VARCHAR) ### ANSWER SELECT rank FROM table_name_21 WHERE winning_party_2003 = "labour" AND swing_to_gain > 2.13 AND result = "lab hold" AND constituency = "linlithgow"
{ "answer": "SELECT rank FROM table_name_21 WHERE winning_party_2003 = \"labour\" AND swing_to_gain > 2.13 AND result = \"lab hold\" AND constituency = \"linlithgow\"", "context": "CREATE TABLE table_name_21 (rank VARCHAR, constituency VARCHAR, result VARCHAR, winning_party_2003 VARCHAR, swing_to_gain VARCHAR)", "question": "Which rank had the Labour party winning in 2003, a swing to gain that was larger than 2.13, a lab hold as a result, and which took place in the Linlithgow constituency?" }
### QUESTION How many rain figures are provided for sunlight hours in 1966? ### CONTEXT CREATE TABLE table_12837_1 (rain VARCHAR, sunlight_hours VARCHAR) ### ANSWER SELECT COUNT(rain) FROM table_12837_1 WHERE sunlight_hours = 1966
{ "answer": "SELECT COUNT(rain) FROM table_12837_1 WHERE sunlight_hours = 1966", "context": "CREATE TABLE table_12837_1 (rain VARCHAR, sunlight_hours VARCHAR)", "question": "How many rain figures are provided for sunlight hours in 1966?" }
### QUESTION What city was completed in 1910-1978? ### CONTEXT CREATE TABLE table_name_23 (city VARCHAR, completion VARCHAR) ### ANSWER SELECT city FROM table_name_23 WHERE completion = "1910-1978"
{ "answer": "SELECT city FROM table_name_23 WHERE completion = \"1910-1978\"", "context": "CREATE TABLE table_name_23 (city VARCHAR, completion VARCHAR)", "question": "What city was completed in 1910-1978?" }
### QUESTION Name the opponent when the field is mitchel athletic complex ### CONTEXT CREATE TABLE table_name_69 (opponent VARCHAR, field VARCHAR) ### ANSWER SELECT opponent FROM table_name_69 WHERE field = "mitchel athletic complex"
{ "answer": "SELECT opponent FROM table_name_69 WHERE field = \"mitchel athletic complex\"", "context": "CREATE TABLE table_name_69 (opponent VARCHAR, field VARCHAR)", "question": "Name the opponent when the field is mitchel athletic complex" }
### QUESTION Name the date for when the home/away is away and the opponent is bayhawks ### CONTEXT CREATE TABLE table_name_81 (date VARCHAR, home_away VARCHAR, opponent VARCHAR) ### ANSWER SELECT date FROM table_name_81 WHERE home_away = "away" AND opponent = "bayhawks"
{ "answer": "SELECT date FROM table_name_81 WHERE home_away = \"away\" AND opponent = \"bayhawks\"", "context": "CREATE TABLE table_name_81 (date VARCHAR, home_away VARCHAR, opponent VARCHAR)", "question": "Name the date for when the home/away is away and the opponent is bayhawks" }
### QUESTION Name the opponent when the result is w 16-15 and has home/away of home ### CONTEXT CREATE TABLE table_name_37 (opponent VARCHAR, home_away VARCHAR, result VARCHAR) ### ANSWER SELECT opponent FROM table_name_37 WHERE home_away = "home" AND result = "w 16-15"
{ "answer": "SELECT opponent FROM table_name_37 WHERE home_away = \"home\" AND result = \"w 16-15\"", "context": "CREATE TABLE table_name_37 (opponent VARCHAR, home_away VARCHAR, result VARCHAR)", "question": "Name the opponent when the result is w 16-15 and has home/away of home" }
### QUESTION What is the Clean & jerk for the bodyweight less than 76.55, and the Total (kg) of –? ### CONTEXT CREATE TABLE table_name_36 (clean_ VARCHAR, _jerk VARCHAR, bodyweight VARCHAR, total__kg_ VARCHAR) ### ANSWER SELECT clean_ & _jerk FROM table_name_36 WHERE bodyweight < 76.55 AND total__kg_ = "–"
{ "answer": "SELECT clean_ & _jerk FROM table_name_36 WHERE bodyweight < 76.55 AND total__kg_ = \"–\"", "context": "CREATE TABLE table_name_36 (clean_ VARCHAR, _jerk VARCHAR, bodyweight VARCHAR, total__kg_ VARCHAR)", "question": "What is the Clean & jerk for the bodyweight less than 76.55, and the Total (kg) of –?" }
### QUESTION What is the result of the europe/africa group i, round robin game in Murcia (esp) before 1999? ### CONTEXT CREATE TABLE table_name_9 (result VARCHAR, competition VARCHAR, location VARCHAR, year VARCHAR) ### ANSWER SELECT result FROM table_name_9 WHERE location = "murcia (esp)" AND year < 1999 AND competition = "europe/africa group i, round robin"
{ "answer": "SELECT result FROM table_name_9 WHERE location = \"murcia (esp)\" AND year < 1999 AND competition = \"europe/africa group i, round robin\"", "context": "CREATE TABLE table_name_9 (result VARCHAR, competition VARCHAR, location VARCHAR, year VARCHAR)", "question": "What is the result of the europe/africa group i, round robin game in Murcia (esp) before 1999?" }
### QUESTION Who is the MVP finals that includes Detroit shock from the eastern championship and Sacramento monarchs from western championship? ### CONTEXT CREATE TABLE table_name_26 (finals_mvp VARCHAR, eastern_champion VARCHAR, western_champion VARCHAR) ### ANSWER SELECT finals_mvp FROM table_name_26 WHERE eastern_champion = "detroit shock" AND western_champion = "sacramento monarchs"
{ "answer": "SELECT finals_mvp FROM table_name_26 WHERE eastern_champion = \"detroit shock\" AND western_champion = \"sacramento monarchs\"", "context": "CREATE TABLE table_name_26 (finals_mvp VARCHAR, eastern_champion VARCHAR, western_champion VARCHAR)", "question": "Who is the MVP finals that includes Detroit shock from the eastern championship and Sacramento monarchs from western championship?" }
### QUESTION What year was the player born who is 2.02m tall? ### CONTEXT CREATE TABLE table_12962773_14 (year_born INTEGER, height VARCHAR) ### ANSWER SELECT MAX(year_born) FROM table_12962773_14 WHERE height = "2.02"
{ "answer": "SELECT MAX(year_born) FROM table_12962773_14 WHERE height = \"2.02\"", "context": "CREATE TABLE table_12962773_14 (year_born INTEGER, height VARCHAR)", "question": "What year was the player born who is 2.02m tall?" }
### QUESTION How many clubs does number 6 play for? ### CONTEXT CREATE TABLE table_12962773_15 (current_club VARCHAR, no VARCHAR) ### ANSWER SELECT COUNT(current_club) FROM table_12962773_15 WHERE no = 6
{ "answer": "SELECT COUNT(current_club) FROM table_12962773_15 WHERE no = 6", "context": "CREATE TABLE table_12962773_15 (current_club VARCHAR, no VARCHAR)", "question": "How many clubs does number 6 play for?" }
### QUESTION What player has a college named san sebastian? ### CONTEXT CREATE TABLE table_name_97 (player VARCHAR, college VARCHAR) ### ANSWER SELECT player FROM table_name_97 WHERE college = "san sebastian"
{ "answer": "SELECT player FROM table_name_97 WHERE college = \"san sebastian\"", "context": "CREATE TABLE table_name_97 (player VARCHAR, college VARCHAR)", "question": "What player has a college named san sebastian?" }
### QUESTION Name the air date for the seasons before 14 and series less than 183 with production code more than 709 ### CONTEXT CREATE TABLE table_name_88 (original_air_date VARCHAR, series__number VARCHAR, season__number VARCHAR, production_code VARCHAR) ### ANSWER SELECT original_air_date FROM table_name_88 WHERE season__number < 14 AND production_code > 709 AND series__number < 183
{ "answer": "SELECT original_air_date FROM table_name_88 WHERE season__number < 14 AND production_code > 709 AND series__number < 183", "context": "CREATE TABLE table_name_88 (original_air_date VARCHAR, series__number VARCHAR, season__number VARCHAR, production_code VARCHAR)", "question": "Name the air date for the seasons before 14 and series less than 183 with production code more than 709" }
### QUESTION What's the total power of the unit whose construction finished on 14.06.1963? ### CONTEXT CREATE TABLE table_12983929_1 (total_power VARCHAR, construction_finish VARCHAR) ### ANSWER SELECT total_power FROM table_12983929_1 WHERE construction_finish = "14.06.1963"
{ "answer": "SELECT total_power FROM table_12983929_1 WHERE construction_finish = \"14.06.1963\"", "context": "CREATE TABLE table_12983929_1 (total_power VARCHAR, construction_finish VARCHAR)", "question": "What's the total power of the unit whose construction finished on 14.06.1963?" }
### QUESTION How many different values of total power are there for the unit whose construction started on 01.03.1977 and whose commercial operation started on 01.02.1984? ### CONTEXT CREATE TABLE table_12983929_1 (total_power VARCHAR, construction_start VARCHAR, commercial_operation VARCHAR) ### ANSWER SELECT COUNT(total_power) FROM table_12983929_1 WHERE construction_start = "01.03.1977" AND commercial_operation = "01.02.1984"
{ "answer": "SELECT COUNT(total_power) FROM table_12983929_1 WHERE construction_start = \"01.03.1977\" AND commercial_operation = \"01.02.1984\"", "context": "CREATE TABLE table_12983929_1 (total_power VARCHAR, construction_start VARCHAR, commercial_operation VARCHAR)", "question": "How many different values of total power are there for the unit whose construction started on 01.03.1977 and whose commercial operation started on 01.02.1984?" }
### QUESTION what is the total viewers where the date of first broadcast is 28 january 2010 and the episode number is 1? ### CONTEXT CREATE TABLE table_12995531_3 (total_viewers INTEGER, date_of_first_broadcast VARCHAR, episode_number VARCHAR) ### ANSWER SELECT MIN(total_viewers) FROM table_12995531_3 WHERE date_of_first_broadcast = "28 January 2010" AND episode_number = 1
{ "answer": "SELECT MIN(total_viewers) FROM table_12995531_3 WHERE date_of_first_broadcast = \"28 January 2010\" AND episode_number = 1", "context": "CREATE TABLE table_12995531_3 (total_viewers INTEGER, date_of_first_broadcast VARCHAR, episode_number VARCHAR)", "question": "what is the total viewers where the date of first broadcast is 28 january 2010 and the episode number is 1?" }
### QUESTION what is the grid when the driver is pierre levegh? ### CONTEXT CREATE TABLE table_name_11 (grid VARCHAR, driver VARCHAR) ### ANSWER SELECT grid FROM table_name_11 WHERE driver = "pierre levegh"
{ "answer": "SELECT grid FROM table_name_11 WHERE driver = \"pierre levegh\"", "context": "CREATE TABLE table_name_11 (grid VARCHAR, driver VARCHAR)", "question": "what is the grid when the driver is pierre levegh?" }
### QUESTION what is the series number where the date of first broadcast is 16 october 2008? ### CONTEXT CREATE TABLE table_12995531_3 (series_number VARCHAR, date_of_first_broadcast VARCHAR) ### ANSWER SELECT series_number FROM table_12995531_3 WHERE date_of_first_broadcast = "16 October 2008"
{ "answer": "SELECT series_number FROM table_12995531_3 WHERE date_of_first_broadcast = \"16 October 2008\"", "context": "CREATE TABLE table_12995531_3 (series_number VARCHAR, date_of_first_broadcast VARCHAR)", "question": "what is the series number where the date of first broadcast is 16 october 2008?" }
### QUESTION What round was the debut of defender Stephen Laybutt? ### CONTEXT CREATE TABLE table_name_11 (debut VARCHAR, position VARCHAR, name VARCHAR) ### ANSWER SELECT debut FROM table_name_11 WHERE position = "defender" AND name = "stephen laybutt"
{ "answer": "SELECT debut FROM table_name_11 WHERE position = \"defender\" AND name = \"stephen laybutt\"", "context": "CREATE TABLE table_name_11 (debut VARCHAR, position VARCHAR, name VARCHAR)", "question": "What round was the debut of defender Stephen Laybutt?" }
### QUESTION Who is the winning team when the year is more than 2003, the score is 19½–14½ and the venue is harding park golf club? ### CONTEXT CREATE TABLE table_name_31 (winning_team VARCHAR, venue VARCHAR, year VARCHAR, score VARCHAR) ### ANSWER SELECT winning_team FROM table_name_31 WHERE year > 2003 AND score = "19½–14½" AND venue = "harding park golf club"
{ "answer": "SELECT winning_team FROM table_name_31 WHERE year > 2003 AND score = \"19½–14½\" AND venue = \"harding park golf club\"", "context": "CREATE TABLE table_name_31 (winning_team VARCHAR, venue VARCHAR, year VARCHAR, score VARCHAR)", "question": "Who is the winning team when the year is more than 2003, the score is 19½–14½ and the venue is harding park golf club?" }
### QUESTION what is the location when the year is less than 1998 and the international captain is david graham? ### CONTEXT CREATE TABLE table_name_21 (location VARCHAR, year VARCHAR, international_captain VARCHAR) ### ANSWER SELECT location FROM table_name_21 WHERE year < 1998 AND international_captain = "david graham"
{ "answer": "SELECT location FROM table_name_21 WHERE year < 1998 AND international_captain = \"david graham\"", "context": "CREATE TABLE table_name_21 (location VARCHAR, year VARCHAR, international_captain VARCHAR)", "question": "what is the location when the year is less than 1998 and the international captain is david graham?" }
### QUESTION What was the date of the game in week 14? ### CONTEXT CREATE TABLE table_13023925_2 (date VARCHAR, week VARCHAR) ### ANSWER SELECT date FROM table_13023925_2 WHERE week = 14
{ "answer": "SELECT date FROM table_13023925_2 WHERE week = 14", "context": "CREATE TABLE table_13023925_2 (date VARCHAR, week VARCHAR)", "question": "What was the date of the game in week 14?" }
### QUESTION Name the vice captain for melbourne victory ### CONTEXT CREATE TABLE table_1301373_7 (Vice VARCHAR, captain VARCHAR, club VARCHAR) ### ANSWER SELECT Vice - captain FROM table_1301373_7 WHERE club = "Melbourne Victory"
{ "answer": "SELECT Vice - captain FROM table_1301373_7 WHERE club = \"Melbourne Victory\"", "context": "CREATE TABLE table_1301373_7 (Vice VARCHAR, captain VARCHAR, club VARCHAR)", "question": "Name the vice captain for melbourne victory" }
### QUESTION What was the margin of the Masters Tournament? ### CONTEXT CREATE TABLE table_13026799_1 (margin VARCHAR, championship VARCHAR) ### ANSWER SELECT margin FROM table_13026799_1 WHERE championship = "Masters Tournament"
{ "answer": "SELECT margin FROM table_13026799_1 WHERE championship = \"Masters Tournament\"", "context": "CREATE TABLE table_13026799_1 (margin VARCHAR, championship VARCHAR)", "question": "What was the margin of the Masters Tournament?" }
### QUESTION What was the winning score of the PGA Championship (3)? ### CONTEXT CREATE TABLE table_13026799_1 (winning_score VARCHAR, championship VARCHAR) ### ANSWER SELECT winning_score FROM table_13026799_1 WHERE championship = "PGA championship (3)"
{ "answer": "SELECT winning_score FROM table_13026799_1 WHERE championship = \"PGA championship (3)\"", "context": "CREATE TABLE table_13026799_1 (winning_score VARCHAR, championship VARCHAR)", "question": "What was the winning score of the PGA Championship (3)?" }
### QUESTION What's the heigh of the player who went to lake howell high school? ### CONTEXT CREATE TABLE table_name_72 (height VARCHAR, school VARCHAR) ### ANSWER SELECT height FROM table_name_72 WHERE school = "lake howell high school"
{ "answer": "SELECT height FROM table_name_72 WHERE school = \"lake howell high school\"", "context": "CREATE TABLE table_name_72 (height VARCHAR, school VARCHAR)", "question": "What's the heigh of the player who went to lake howell high school?" }
### QUESTION What week was the game played at Robert f. Kennedy memorial stadium with more than 54,633 people in attendance? ### CONTEXT CREATE TABLE table_name_71 (week VARCHAR, game_site VARCHAR, attendance VARCHAR) ### ANSWER SELECT COUNT(week) FROM table_name_71 WHERE game_site = "robert f. kennedy memorial stadium" AND attendance > 54 OFFSET 633
{ "answer": "SELECT COUNT(week) FROM table_name_71 WHERE game_site = \"robert f. kennedy memorial stadium\" AND attendance > 54 OFFSET 633", "context": "CREATE TABLE table_name_71 (week VARCHAR, game_site VARCHAR, attendance VARCHAR)", "question": "What week was the game played at Robert f. Kennedy memorial stadium with more than 54,633 people in attendance?" }
### QUESTION What's the percentage of votes for other candidates in the county where Bush got 51.6% of the votes? ### CONTEXT CREATE TABLE table_1304443_2 (others_percentage VARCHAR, bush_percentage VARCHAR) ### ANSWER SELECT others_percentage FROM table_1304443_2 WHERE bush_percentage = "51.6%"
{ "answer": "SELECT others_percentage FROM table_1304443_2 WHERE bush_percentage = \"51.6%\"", "context": "CREATE TABLE table_1304443_2 (others_percentage VARCHAR, bush_percentage VARCHAR)", "question": "What's the percentage of votes for other candidates in the county where Bush got 51.6% of the votes?" }
### QUESTION What's the name of the county where 54.6% voted for Bush? ### CONTEXT CREATE TABLE table_1304443_2 (county VARCHAR, bush_percentage VARCHAR) ### ANSWER SELECT county FROM table_1304443_2 WHERE bush_percentage = "54.6%"
{ "answer": "SELECT county FROM table_1304443_2 WHERE bush_percentage = \"54.6%\"", "context": "CREATE TABLE table_1304443_2 (county VARCHAR, bush_percentage VARCHAR)", "question": "What's the name of the county where 54.6% voted for Bush?" }
### QUESTION What is the total number of silver medals for karate athletes with over 2 golds? ### CONTEXT CREATE TABLE table_name_33 (silver VARCHAR, sport VARCHAR, gold VARCHAR) ### ANSWER SELECT COUNT(silver) FROM table_name_33 WHERE sport = "karate" AND gold > 2
{ "answer": "SELECT COUNT(silver) FROM table_name_33 WHERE sport = \"karate\" AND gold > 2", "context": "CREATE TABLE table_name_33 (silver VARCHAR, sport VARCHAR, gold VARCHAR)", "question": "What is the total number of silver medals for karate athletes with over 2 golds?" }
### QUESTION what is the maximum round for gt3 winner hector lester tim mullen and pole position of jonny cocker paul drayson ### CONTEXT CREATE TABLE table_13079788_3 (round INTEGER, gt3_winner VARCHAR, pole_position VARCHAR) ### ANSWER SELECT MAX(round) FROM table_13079788_3 WHERE gt3_winner = "Hector Lester Tim Mullen" AND pole_position = "Jonny Cocker Paul Drayson"
{ "answer": "SELECT MAX(round) FROM table_13079788_3 WHERE gt3_winner = \"Hector Lester Tim Mullen\" AND pole_position = \"Jonny Cocker Paul Drayson\"", "context": "CREATE TABLE table_13079788_3 (round INTEGER, gt3_winner VARCHAR, pole_position VARCHAR)", "question": "what is the maximum round for gt3 winner hector lester tim mullen and pole position of jonny cocker paul drayson" }
### QUESTION what are all the circuit for gtc winner graeme mundy jamie smyth and pole position bradley ellis alex mortimer ### CONTEXT CREATE TABLE table_13079788_3 (circuit VARCHAR, gtc_winner VARCHAR, pole_position VARCHAR) ### ANSWER SELECT circuit FROM table_13079788_3 WHERE gtc_winner = "Graeme Mundy Jamie Smyth" AND pole_position = "Bradley Ellis Alex Mortimer"
{ "answer": "SELECT circuit FROM table_13079788_3 WHERE gtc_winner = \"Graeme Mundy Jamie Smyth\" AND pole_position = \"Bradley Ellis Alex Mortimer\"", "context": "CREATE TABLE table_13079788_3 (circuit VARCHAR, gtc_winner VARCHAR, pole_position VARCHAR)", "question": "what are all the circuit for gtc winner graeme mundy jamie smyth and pole position bradley ellis alex mortimer" }
### QUESTION what was the attendance for a home venue and a w 3-0 result? ### CONTEXT CREATE TABLE table_name_34 (attendance INTEGER, venue VARCHAR, result VARCHAR) ### ANSWER SELECT AVG(attendance) FROM table_name_34 WHERE venue = "home" AND result = "w 3-0"
{ "answer": "SELECT AVG(attendance) FROM table_name_34 WHERE venue = \"home\" AND result = \"w 3-0\"", "context": "CREATE TABLE table_name_34 (attendance INTEGER, venue VARCHAR, result VARCHAR)", "question": "what was the attendance for a home venue and a w 3-0 result?" }
### QUESTION what is the lowest qualifying rank? ### CONTEXT CREATE TABLE table_13114949_3 (qualifying_rank INTEGER) ### ANSWER SELECT MIN(qualifying_rank) FROM table_13114949_3
{ "answer": "SELECT MIN(qualifying_rank) FROM table_13114949_3", "context": "CREATE TABLE table_13114949_3 (qualifying_rank INTEGER)", "question": "what is the lowest qualifying rank?" }
### QUESTION what is the highest qualifying rank where the competition is olympic trials, the final-rank is 4 and qualifying score is 15.100? ### CONTEXT CREATE TABLE table_13114949_3 (qualifying_rank INTEGER, qualifying_score VARCHAR, competition VARCHAR, final_rank VARCHAR) ### ANSWER SELECT MAX(qualifying_rank) FROM table_13114949_3 WHERE competition = "Olympic Trials" AND final_rank = "4" AND qualifying_score = "15.100"
{ "answer": "SELECT MAX(qualifying_rank) FROM table_13114949_3 WHERE competition = \"Olympic Trials\" AND final_rank = \"4\" AND qualifying_score = \"15.100\"", "context": "CREATE TABLE table_13114949_3 (qualifying_rank INTEGER, qualifying_score VARCHAR, competition VARCHAR, final_rank VARCHAR)", "question": "what is the highest qualifying rank where the competition is olympic trials, the final-rank is 4 and qualifying score is 15.100?" }
### QUESTION What is the # for the episode with a Production code of 3T7057? ### CONTEXT CREATE TABLE table_13183076_3 (_number VARCHAR, production_code VARCHAR) ### ANSWER SELECT _number FROM table_13183076_3 WHERE production_code = "3T7057"
{ "answer": "SELECT _number FROM table_13183076_3 WHERE production_code = \"3T7057\"", "context": "CREATE TABLE table_13183076_3 (_number VARCHAR, production_code VARCHAR)", "question": "What is the # for the episode with a Production code of 3T7057?" }
### QUESTION What is the Original air date for the episode directed by Tricia Brock? ### CONTEXT CREATE TABLE table_13183076_3 (original_air_date VARCHAR, directed_by VARCHAR) ### ANSWER SELECT original_air_date FROM table_13183076_3 WHERE directed_by = "Tricia Brock"
{ "answer": "SELECT original_air_date FROM table_13183076_3 WHERE directed_by = \"Tricia Brock\"", "context": "CREATE TABLE table_13183076_3 (original_air_date VARCHAR, directed_by VARCHAR)", "question": "What is the Original air date for the episode directed by Tricia Brock?" }
### QUESTION How many michelob ultra mountains classification for darren lill ### CONTEXT CREATE TABLE table_13223187_1 (michelob_ultra_mountains_classification_gold_polka_dot_jersey VARCHAR, drury_hotels_most_aggressive_rider_red_jersey VARCHAR) ### ANSWER SELECT COUNT(michelob_ultra_mountains_classification_gold_polka_dot_jersey) FROM table_13223187_1 WHERE drury_hotels_most_aggressive_rider_red_jersey = "Darren Lill"
{ "answer": "SELECT COUNT(michelob_ultra_mountains_classification_gold_polka_dot_jersey) FROM table_13223187_1 WHERE drury_hotels_most_aggressive_rider_red_jersey = \"Darren Lill\"", "context": "CREATE TABLE table_13223187_1 (michelob_ultra_mountains_classification_gold_polka_dot_jersey VARCHAR, drury_hotels_most_aggressive_rider_red_jersey VARCHAR)", "question": "How many michelob ultra mountains classification for darren lill" }
### QUESTION What is the average number of goals conceded where more than 19 goals were scored, the team had 31 points, and more than 7 draws? ### CONTEXT CREATE TABLE table_name_80 (goals_conceded__gc_ INTEGER, draw__pe_ VARCHAR, goals_scored__gf_ VARCHAR, points__pts_ VARCHAR) ### ANSWER SELECT AVG(goals_conceded__gc_) FROM table_name_80 WHERE goals_scored__gf_ > 19 AND points__pts_ = 31 AND draw__pe_ > 7
{ "answer": "SELECT AVG(goals_conceded__gc_) FROM table_name_80 WHERE goals_scored__gf_ > 19 AND points__pts_ = 31 AND draw__pe_ > 7", "context": "CREATE TABLE table_name_80 (goals_conceded__gc_ INTEGER, draw__pe_ VARCHAR, goals_scored__gf_ VARCHAR, points__pts_ VARCHAR)", "question": "What is the average number of goals conceded where more than 19 goals were scored, the team had 31 points, and more than 7 draws?" }
### QUESTION Who was the constructor of the officine alfieri maserati that was driven by Sergio Mantovani? ### CONTEXT CREATE TABLE table_name_77 (constructor VARCHAR, entrant VARCHAR, driver VARCHAR) ### ANSWER SELECT constructor FROM table_name_77 WHERE entrant = "officine alfieri maserati" AND driver = "sergio mantovani"
{ "answer": "SELECT constructor FROM table_name_77 WHERE entrant = \"officine alfieri maserati\" AND driver = \"sergio mantovani\"", "context": "CREATE TABLE table_name_77 (constructor VARCHAR, entrant VARCHAR, driver VARCHAR)", "question": "Who was the constructor of the officine alfieri maserati that was driven by Sergio Mantovani?" }
### QUESTION What team was the opponent at Mile High Stadium? ### CONTEXT CREATE TABLE table_13259009_2 (opponent VARCHAR, game_site VARCHAR) ### ANSWER SELECT opponent FROM table_13259009_2 WHERE game_site = "Mile High Stadium"
{ "answer": "SELECT opponent FROM table_13259009_2 WHERE game_site = \"Mile High Stadium\"", "context": "CREATE TABLE table_13259009_2 (opponent VARCHAR, game_site VARCHAR)", "question": "What team was the opponent at Mile High Stadium?" }
### QUESTION What is the average year they finished 5th in santiago, chile? ### CONTEXT CREATE TABLE table_name_57 (year INTEGER, position VARCHAR, venue VARCHAR) ### ANSWER SELECT AVG(year) FROM table_name_57 WHERE position = "5th" AND venue = "santiago, chile"
{ "answer": "SELECT AVG(year) FROM table_name_57 WHERE position = \"5th\" AND venue = \"santiago, chile\"", "context": "CREATE TABLE table_name_57 (year INTEGER, position VARCHAR, venue VARCHAR)", "question": "What is the average year they finished 5th in santiago, chile?" }
### QUESTION How many U.S. viewers, in millions, watched the episode that aired on November 13, 2007? ### CONTEXT CREATE TABLE table_13301516_1 (us_viewers__millions_ VARCHAR, original_air_date VARCHAR) ### ANSWER SELECT us_viewers__millions_ FROM table_13301516_1 WHERE original_air_date = "November 13, 2007"
{ "answer": "SELECT us_viewers__millions_ FROM table_13301516_1 WHERE original_air_date = \"November 13, 2007\"", "context": "CREATE TABLE table_13301516_1 (us_viewers__millions_ VARCHAR, original_air_date VARCHAR)", "question": "How many U.S. viewers, in millions, watched the episode that aired on November 13, 2007?" }
### QUESTION Which nation has 0 gold, a rank greater than 14, a total of 1, and silver less than 1? ### CONTEXT CREATE TABLE table_name_10 (nation VARCHAR, silver VARCHAR, total VARCHAR, gold VARCHAR, rank VARCHAR) ### ANSWER SELECT nation FROM table_name_10 WHERE gold = 0 AND rank > 14 AND total = 1 AND silver < 1
{ "answer": "SELECT nation FROM table_name_10 WHERE gold = 0 AND rank > 14 AND total = 1 AND silver < 1", "context": "CREATE TABLE table_name_10 (nation VARCHAR, silver VARCHAR, total VARCHAR, gold VARCHAR, rank VARCHAR)", "question": "Which nation has 0 gold, a rank greater than 14, a total of 1, and silver less than 1?" }
### QUESTION How many millions of U.S. viewers watched episode 185? ### CONTEXT CREATE TABLE table_13301516_1 (us_viewers__millions_ VARCHAR, no_in_series VARCHAR) ### ANSWER SELECT us_viewers__millions_ FROM table_13301516_1 WHERE no_in_series = 185
{ "answer": "SELECT us_viewers__millions_ FROM table_13301516_1 WHERE no_in_series = 185", "context": "CREATE TABLE table_13301516_1 (us_viewers__millions_ VARCHAR, no_in_series VARCHAR)", "question": "How many millions of U.S. viewers watched episode 185?" }
### QUESTION What was the election date for Arthur Hodges? ### CONTEXT CREATE TABLE table_1329532_2 (date_of_election VARCHAR, elected_successor VARCHAR) ### ANSWER SELECT date_of_election FROM table_1329532_2 WHERE elected_successor = "Arthur Hodges"
{ "answer": "SELECT date_of_election FROM table_1329532_2 WHERE elected_successor = \"Arthur Hodges\"", "context": "CREATE TABLE table_1329532_2 (date_of_election VARCHAR, elected_successor VARCHAR)", "question": "What was the election date for Arthur Hodges?" }
### QUESTION When was the game happening at Halton Stadium? ### CONTEXT CREATE TABLE table_13328239_4 (date VARCHAR, venue VARCHAR) ### ANSWER SELECT date FROM table_13328239_4 WHERE venue = "Halton Stadium"
{ "answer": "SELECT date FROM table_13328239_4 WHERE venue = \"Halton Stadium\"", "context": "CREATE TABLE table_13328239_4 (date VARCHAR, venue VARCHAR)", "question": "When was the game happening at Halton Stadium?" }
### QUESTION what's the country with es mulatto being 3.5% ### CONTEXT CREATE TABLE table_1333612_1 (country VARCHAR, es_mulatto VARCHAR) ### ANSWER SELECT country FROM table_1333612_1 WHERE es_mulatto = "3.5%"
{ "answer": "SELECT country FROM table_1333612_1 WHERE es_mulatto = \"3.5%\"", "context": "CREATE TABLE table_1333612_1 (country VARCHAR, es_mulatto VARCHAR)", "question": "what's the country with es mulatto being 3.5%" }
### QUESTION What is the maximum power at rpm for the engine named 2.0 TDI that has a 1968cc displacement? ### CONTEXT CREATE TABLE table_name_90 (max_power_at_rpm VARCHAR, displacement VARCHAR, engine_name VARCHAR) ### ANSWER SELECT max_power_at_rpm FROM table_name_90 WHERE displacement = "1968cc" AND engine_name = "2.0 tdi"
{ "answer": "SELECT max_power_at_rpm FROM table_name_90 WHERE displacement = \"1968cc\" AND engine_name = \"2.0 tdi\"", "context": "CREATE TABLE table_name_90 (max_power_at_rpm VARCHAR, displacement VARCHAR, engine_name VARCHAR)", "question": "What is the maximum power at rpm for the engine named 2.0 TDI that has a 1968cc displacement?" }
### QUESTION What is the engine name that has a maximum torque at rpm of n·m ( lbf·ft ) @ 3,800? ### CONTEXT CREATE TABLE table_name_42 (engine_name VARCHAR, max_torque_at_rpm VARCHAR) ### ANSWER SELECT engine_name FROM table_name_42 WHERE max_torque_at_rpm = "n·m ( lbf·ft ) @ 3,800"
{ "answer": "SELECT engine_name FROM table_name_42 WHERE max_torque_at_rpm = \"n·m ( lbf·ft ) @ 3,800\"", "context": "CREATE TABLE table_name_42 (engine_name VARCHAR, max_torque_at_rpm VARCHAR)", "question": "What is the engine name that has a maximum torque at rpm of n·m ( lbf·ft ) @ 3,800?" }
### QUESTION What is the number of region 4 for the series of the complete seventh series? ### CONTEXT CREATE TABLE table_1337525_1 (region_4 VARCHAR, complete_series VARCHAR) ### ANSWER SELECT COUNT(region_4) FROM table_1337525_1 WHERE complete_series = "The Complete Seventh Series"
{ "answer": "SELECT COUNT(region_4) FROM table_1337525_1 WHERE complete_series = \"The Complete Seventh Series\"", "context": "CREATE TABLE table_1337525_1 (region_4 VARCHAR, complete_series VARCHAR)", "question": "What is the number of region 4 for the series of the complete seventh series?" }
### QUESTION Name the region 4 for the complete fifth series ### CONTEXT CREATE TABLE table_1337525_1 (region_4 VARCHAR, complete_series VARCHAR) ### ANSWER SELECT region_4 FROM table_1337525_1 WHERE complete_series = "The Complete Fifth Series"
{ "answer": "SELECT region_4 FROM table_1337525_1 WHERE complete_series = \"The Complete Fifth Series\"", "context": "CREATE TABLE table_1337525_1 (region_4 VARCHAR, complete_series VARCHAR)", "question": "Name the region 4 for the complete fifth series" }
### QUESTION How many numbers were listed under losing bonus when there were 68 tries for? ### CONTEXT CREATE TABLE table_13399573_3 (losing_bonus VARCHAR, tries_for VARCHAR) ### ANSWER SELECT COUNT(losing_bonus) FROM table_13399573_3 WHERE tries_for = "68"
{ "answer": "SELECT COUNT(losing_bonus) FROM table_13399573_3 WHERE tries_for = \"68\"", "context": "CREATE TABLE table_13399573_3 (losing_bonus VARCHAR, tries_for VARCHAR)", "question": "How many numbers were listed under losing bonus when there were 68 tries for?" }
### QUESTION What amount of points for were there when there was 52 points? ### CONTEXT CREATE TABLE table_13399573_3 (points_for VARCHAR, points VARCHAR) ### ANSWER SELECT points_for FROM table_13399573_3 WHERE points = "52"
{ "answer": "SELECT points_for FROM table_13399573_3 WHERE points = \"52\"", "context": "CREATE TABLE table_13399573_3 (points_for VARCHAR, points VARCHAR)", "question": "What amount of points for were there when there was 52 points?" }
### QUESTION I want to know the total for silver more than 0 with bronze more than 21 and gold more than 29 ### CONTEXT CREATE TABLE table_name_74 (total VARCHAR, gold VARCHAR, silver VARCHAR, bronze VARCHAR) ### ANSWER SELECT COUNT(total) FROM table_name_74 WHERE silver > 0 AND bronze > 21 AND gold > 29
{ "answer": "SELECT COUNT(total) FROM table_name_74 WHERE silver > 0 AND bronze > 21 AND gold > 29", "context": "CREATE TABLE table_name_74 (total VARCHAR, gold VARCHAR, silver VARCHAR, bronze VARCHAR)", "question": "I want to know the total for silver more than 0 with bronze more than 21 and gold more than 29" }
### QUESTION What is the Tournament with a Opponents in the final with rod laver fred stolle? ### CONTEXT CREATE TABLE table_name_15 (tournament VARCHAR, opponents_in_the_final VARCHAR) ### ANSWER SELECT tournament FROM table_name_15 WHERE opponents_in_the_final = "rod laver fred stolle"
{ "answer": "SELECT tournament FROM table_name_15 WHERE opponents_in_the_final = \"rod laver fred stolle\"", "context": "CREATE TABLE table_name_15 (tournament VARCHAR, opponents_in_the_final VARCHAR)", "question": "What is the Tournament with a Opponents in the final with rod laver fred stolle?" }
### QUESTION What is the Tournament with a Date larger than 1973, with Opponents in the final with hank pfister sherwood stewart? ### CONTEXT CREATE TABLE table_name_66 (tournament VARCHAR, date VARCHAR, opponents_in_the_final VARCHAR) ### ANSWER SELECT tournament FROM table_name_66 WHERE date > 1973 AND opponents_in_the_final = "hank pfister sherwood stewart"
{ "answer": "SELECT tournament FROM table_name_66 WHERE date > 1973 AND opponents_in_the_final = \"hank pfister sherwood stewart\"", "context": "CREATE TABLE table_name_66 (tournament VARCHAR, date VARCHAR, opponents_in_the_final VARCHAR)", "question": "What is the Tournament with a Date larger than 1973, with Opponents in the final with hank pfister sherwood stewart?" }
### QUESTION Name the polyunsaturated fat with total fat of 100g and monounsaturated fat of 20g (84g in high oleic variety) ### CONTEXT CREATE TABLE table_name_96 (polyunsaturated_fat VARCHAR, total_fat VARCHAR, monounsaturated_fat VARCHAR) ### ANSWER SELECT polyunsaturated_fat FROM table_name_96 WHERE total_fat = "100g" AND monounsaturated_fat = "20g (84g in high oleic variety)"
{ "answer": "SELECT polyunsaturated_fat FROM table_name_96 WHERE total_fat = \"100g\" AND monounsaturated_fat = \"20g (84g in high oleic variety)\"", "context": "CREATE TABLE table_name_96 (polyunsaturated_fat VARCHAR, total_fat VARCHAR, monounsaturated_fat VARCHAR)", "question": "Name the polyunsaturated fat with total fat of 100g and monounsaturated fat of 20g (84g in high oleic variety)" }
### QUESTION For the group name European Progressive Democrats what is the French abbr? ### CONTEXT CREATE TABLE table_name_23 (french_abbr VARCHAR, group_name VARCHAR) ### ANSWER SELECT french_abbr FROM table_name_23 WHERE group_name = "european progressive democrats"
{ "answer": "SELECT french_abbr FROM table_name_23 WHERE group_name = \"european progressive democrats\"", "context": "CREATE TABLE table_name_23 (french_abbr VARCHAR, group_name VARCHAR)", "question": "For the group name European Progressive Democrats what is the French abbr?" }
### QUESTION Who were the candidates in district Pennsylvania 3? ### CONTEXT CREATE TABLE table_1341423_38 (candidates VARCHAR, district VARCHAR) ### ANSWER SELECT candidates FROM table_1341423_38 WHERE district = "Pennsylvania 3"
{ "answer": "SELECT candidates FROM table_1341423_38 WHERE district = \"Pennsylvania 3\"", "context": "CREATE TABLE table_1341423_38 (candidates VARCHAR, district VARCHAR)", "question": "Who were the candidates in district Pennsylvania 3?" }
### QUESTION How many lost when the number managed is over 2 and the period is from 12 november 2012 – 27 november 2012? ### CONTEXT CREATE TABLE table_name_66 (lost VARCHAR, period VARCHAR, managed VARCHAR) ### ANSWER SELECT COUNT(lost) FROM table_name_66 WHERE period = "12 november 2012 – 27 november 2012" AND managed > 2
{ "answer": "SELECT COUNT(lost) FROM table_name_66 WHERE period = \"12 november 2012 – 27 november 2012\" AND managed > 2", "context": "CREATE TABLE table_name_66 (lost VARCHAR, period VARCHAR, managed VARCHAR)", "question": "How many lost when the number managed is over 2 and the period is from 12 november 2012 – 27 november 2012?" }
### QUESTION When is the earliest season at waverley park, a Score of 15.12 (102) – 9.14 (68), and a Margin larger than 34? ### CONTEXT CREATE TABLE table_name_46 (season INTEGER, margin VARCHAR, venue VARCHAR, score VARCHAR) ### ANSWER SELECT MIN(season) FROM table_name_46 WHERE venue = "waverley park" AND score = "15.12 (102) – 9.14 (68)" AND margin > 34
{ "answer": "SELECT MIN(season) FROM table_name_46 WHERE venue = \"waverley park\" AND score = \"15.12 (102) – 9.14 (68)\" AND margin > 34", "context": "CREATE TABLE table_name_46 (season INTEGER, margin VARCHAR, venue VARCHAR, score VARCHAR)", "question": "When is the earliest season at waverley park, a Score of 15.12 (102) – 9.14 (68), and a Margin larger than 34?" }
### QUESTION What was the crowd size for the game where Footscray was the away team? ### CONTEXT CREATE TABLE table_name_21 (crowd VARCHAR, away_team VARCHAR) ### ANSWER SELECT COUNT(crowd) FROM table_name_21 WHERE away_team = "footscray"
{ "answer": "SELECT COUNT(crowd) FROM table_name_21 WHERE away_team = \"footscray\"", "context": "CREATE TABLE table_name_21 (crowd VARCHAR, away_team VARCHAR)", "question": "What was the crowd size for the game where Footscray was the away team?" }
### QUESTION What's the average of shows that had a timeslot rank greater that 3 but still had a smaller viewership less than 4.87? ### CONTEXT CREATE TABLE table_name_29 (share INTEGER, viewers__m_ VARCHAR, timeslot VARCHAR) ### ANSWER SELECT AVG(share) FROM table_name_29 WHERE RANK(timeslot) > 3 AND viewers__m_ < 4.87
{ "answer": "SELECT AVG(share) FROM table_name_29 WHERE RANK(timeslot) > 3 AND viewers__m_ < 4.87", "context": "CREATE TABLE table_name_29 (share INTEGER, viewers__m_ VARCHAR, timeslot VARCHAR)", "question": "What's the average of shows that had a timeslot rank greater that 3 but still had a smaller viewership less than 4.87?" }
### QUESTION What is the record when they play the canucks and have under 98 points? ### CONTEXT CREATE TABLE table_name_61 (record VARCHAR, points VARCHAR, opponent VARCHAR) ### ANSWER SELECT record FROM table_name_61 WHERE points < 98 AND opponent = "canucks"
{ "answer": "SELECT record FROM table_name_61 WHERE points < 98 AND opponent = \"canucks\"", "context": "CREATE TABLE table_name_61 (record VARCHAR, points VARCHAR, opponent VARCHAR)", "question": "What is the record when they play the canucks and have under 98 points?" }
### QUESTION When was Chaka Fattah first elected in the Pennsylvania 2 district? ### CONTEXT CREATE TABLE table_1341453_40 (first_elected VARCHAR, district VARCHAR) ### ANSWER SELECT first_elected FROM table_1341453_40 WHERE district = "Pennsylvania 2"
{ "answer": "SELECT first_elected FROM table_1341453_40 WHERE district = \"Pennsylvania 2\"", "context": "CREATE TABLE table_1341453_40 (first_elected VARCHAR, district VARCHAR)", "question": "When was Chaka Fattah first elected in the Pennsylvania 2 district? " }
### QUESTION On the album titled “Loud” who was the other performer on the song directed by Melina Matsoukas? ### CONTEXT CREATE TABLE table_name_4 (other_performer_s_ VARCHAR, director_s_ VARCHAR, album VARCHAR) ### ANSWER SELECT other_performer_s_ FROM table_name_4 WHERE director_s_ = "melina matsoukas" AND album = "loud"
{ "answer": "SELECT other_performer_s_ FROM table_name_4 WHERE director_s_ = \"melina matsoukas\" AND album = \"loud\"", "context": "CREATE TABLE table_name_4 (other_performer_s_ VARCHAR, director_s_ VARCHAR, album VARCHAR)", "question": "On the album titled “Loud” who was the other performer on the song directed by Melina Matsoukas?" }
### QUESTION Which position has a club of Meralomas and a player named David Biddle? ### CONTEXT CREATE TABLE table_name_59 (position VARCHAR, club_province VARCHAR, player VARCHAR) ### ANSWER SELECT position FROM table_name_59 WHERE club_province = "meralomas" AND player = "david biddle"
{ "answer": "SELECT position FROM table_name_59 WHERE club_province = \"meralomas\" AND player = \"david biddle\"", "context": "CREATE TABLE table_name_59 (position VARCHAR, club_province VARCHAR, player VARCHAR)", "question": "Which position has a club of Meralomas and a player named David Biddle?" }
### QUESTION How many districts does gary condit represent? ### CONTEXT CREATE TABLE table_1341453_7 (district VARCHAR, incumbent VARCHAR) ### ANSWER SELECT COUNT(district) FROM table_1341453_7 WHERE incumbent = "Gary Condit"
{ "answer": "SELECT COUNT(district) FROM table_1341453_7 WHERE incumbent = \"Gary Condit\"", "context": "CREATE TABLE table_1341453_7 (district VARCHAR, incumbent VARCHAR)", "question": "How many districts does gary condit represent?" }
### QUESTION What is the average area for code 98030 with population over 312? ### CONTEXT CREATE TABLE table_name_80 (area__km_2__ INTEGER, code VARCHAR, population VARCHAR) ### ANSWER SELECT AVG(area__km_2__) FROM table_name_80 WHERE code = 98030 AND population > 312
{ "answer": "SELECT AVG(area__km_2__) FROM table_name_80 WHERE code = 98030 AND population > 312", "context": "CREATE TABLE table_name_80 (area__km_2__ INTEGER, code VARCHAR, population VARCHAR)", "question": "What is the average area for code 98030 with population over 312?" }
### QUESTION What district is Mac Collins an incumbent in? ### CONTEXT CREATE TABLE table_1341472_12 (district VARCHAR, incumbent VARCHAR) ### ANSWER SELECT district FROM table_1341472_12 WHERE incumbent = "Mac Collins"
{ "answer": "SELECT district FROM table_1341472_12 WHERE incumbent = \"Mac Collins\"", "context": "CREATE TABLE table_1341472_12 (district VARCHAR, incumbent VARCHAR)", "question": "What district is Mac Collins an incumbent in?" }
### QUESTION Who were the candidates in the district where Charlie Norwood is the incumbent? ### CONTEXT CREATE TABLE table_1341472_12 (candidates VARCHAR, incumbent VARCHAR) ### ANSWER SELECT candidates FROM table_1341472_12 WHERE incumbent = "Charlie Norwood"
{ "answer": "SELECT candidates FROM table_1341472_12 WHERE incumbent = \"Charlie Norwood\"", "context": "CREATE TABLE table_1341472_12 (candidates VARCHAR, incumbent VARCHAR)", "question": "Who were the candidates in the district where Charlie Norwood is the incumbent?" }
### QUESTION what's the party with candidates  jerry weller (r) 51.77% clem balanoff (d) 48.23% ### CONTEXT CREATE TABLE table_1341472_15 (party VARCHAR, candidates VARCHAR) ### ANSWER SELECT party FROM table_1341472_15 WHERE candidates = "Jerry Weller (R) 51.77% Clem Balanoff (D) 48.23%"
{ "answer": "SELECT party FROM table_1341472_15 WHERE candidates = \"Jerry Weller (R) 51.77% Clem Balanoff (D) 48.23%\"", "context": "CREATE TABLE table_1341472_15 (party VARCHAR, candidates VARCHAR)", "question": "what's the party with candidates  jerry weller (r) 51.77% clem balanoff (d) 48.23%" }
### QUESTION What type has an unspecified species and less than 367 genes? ### CONTEXT CREATE TABLE table_name_65 (type VARCHAR, species VARCHAR, genes VARCHAR) ### ANSWER SELECT type FROM table_name_65 WHERE species = "unspecified" AND genes < 367
{ "answer": "SELECT type FROM table_name_65 WHERE species = \"unspecified\" AND genes < 367", "context": "CREATE TABLE table_name_65 (type VARCHAR, species VARCHAR, genes VARCHAR)", "question": "What type has an unspecified species and less than 367 genes?" }
### QUESTION What is the lowest played 2 number with less than 83 losses and less than 65 draws with Chernomorets Novorossiysk in season 8? ### CONTEXT CREATE TABLE table_name_65 (played_2 INTEGER, drawn VARCHAR, club_1 VARCHAR, lost VARCHAR, seasons VARCHAR) ### ANSWER SELECT MIN(played_2) FROM table_name_65 WHERE lost > 83 AND seasons = 8 AND club_1 = "chernomorets novorossiysk" AND drawn < 65
{ "answer": "SELECT MIN(played_2) FROM table_name_65 WHERE lost > 83 AND seasons = 8 AND club_1 = \"chernomorets novorossiysk\" AND drawn < 65", "context": "CREATE TABLE table_name_65 (played_2 INTEGER, drawn VARCHAR, club_1 VARCHAR, lost VARCHAR, seasons VARCHAR)", "question": "What is the lowest played 2 number with less than 83 losses and less than 65 draws with Chernomorets Novorossiysk in season 8?" }
### QUESTION how many district with candidates being eliot l. engel (d) 85.2% martin richman (r) 14.8% ### CONTEXT CREATE TABLE table_1341549_33 (district VARCHAR, candidates VARCHAR) ### ANSWER SELECT COUNT(district) FROM table_1341549_33 WHERE candidates = "Eliot L. Engel (D) 85.2% Martin Richman (R) 14.8%"
{ "answer": "SELECT COUNT(district) FROM table_1341549_33 WHERE candidates = \"Eliot L. Engel (D) 85.2% Martin Richman (R) 14.8%\"", "context": "CREATE TABLE table_1341549_33 (district VARCHAR, candidates VARCHAR)", "question": " how many district with candidates being eliot l. engel (d) 85.2% martin richman (r) 14.8%" }
### QUESTION how many candidates with party being democratic and dbeingtrict being new york5 ### CONTEXT CREATE TABLE table_1341549_33 (candidates VARCHAR, party VARCHAR, district VARCHAR) ### ANSWER SELECT COUNT(candidates) FROM table_1341549_33 WHERE party = "Democratic" AND district = "New York5"
{ "answer": "SELECT COUNT(candidates) FROM table_1341549_33 WHERE party = \"Democratic\" AND district = \"New York5\"", "context": "CREATE TABLE table_1341549_33 (candidates VARCHAR, party VARCHAR, district VARCHAR)", "question": " how many candidates with party being democratic and dbeingtrict being new york5" }
### QUESTION Tell me the lowest tries for goals more than 0 with centre position and points less than 54 ### CONTEXT CREATE TABLE table_name_40 (tries INTEGER, points VARCHAR, goals VARCHAR, position VARCHAR) ### ANSWER SELECT MIN(tries) FROM table_name_40 WHERE goals > 0 AND position = "centre" AND points < 54
{ "answer": "SELECT MIN(tries) FROM table_name_40 WHERE goals > 0 AND position = \"centre\" AND points < 54", "context": "CREATE TABLE table_name_40 (tries INTEGER, points VARCHAR, goals VARCHAR, position VARCHAR)", "question": "Tell me the lowest tries for goals more than 0 with centre position and points less than 54" }