text
stringlengths
150
1.06k
source
dict
### QUESTION What is the country with a 66-70-69=205 score? ### CONTEXT CREATE TABLE table_name_21 (country VARCHAR, score VARCHAR) ### ANSWER SELECT country FROM table_name_21 WHERE score = 66 - 70 - 69 = 205</s>
{ "answer": "SELECT country FROM table_name_21 WHERE score = 66 - 70 - 69 = 205", "context": "CREATE TABLE table_name_21 (country VARCHAR, score VARCHAR)", "question": "What is the country with a 66-70-69=205 score?" }
### QUESTION What is the Object Number for the item with wheels 4-4-0 and a location of Barrow Hill? ### CONTEXT CREATE TABLE table_name_95 (objectnumber VARCHAR, location VARCHAR, wheels VARCHAR) ### ANSWER SELECT objectnumber FROM table_name_95 WHERE location = "barrow hill" AND wheels = "4-4-0"</s>
{ "answer": "SELECT objectnumber FROM table_name_95 WHERE location = \"barrow hill\" AND wheels = \"4-4-0\"", "context": "CREATE TABLE table_name_95 (objectnumber VARCHAR, location VARCHAR, wheels VARCHAR)", "question": "What is the Object Number for the item with wheels 4-4-0 and a location of Barrow Hill?" }
### QUESTION How much Long has a Loss larger than 2, and a Gain of 157, and an Avg/G smaller than 129? ### CONTEXT CREATE TABLE table_name_58 (long INTEGER, avg_g VARCHAR, loss VARCHAR, gain VARCHAR) ### ANSWER SELECT SUM(long) FROM table_name_58 WHERE loss > 2 AND gain = 157 AND avg_g < 129</s>
{ "answer": "SELECT SUM(long) FROM table_name_58 WHERE loss > 2 AND gain = 157 AND avg_g < 129", "context": "CREATE TABLE table_name_58 (long INTEGER, avg_g VARCHAR, loss VARCHAR, gain VARCHAR)", "question": "How much Long has a Loss larger than 2, and a Gain of 157, and an Avg/G smaller than 129?" }
### QUESTION What is the country of player ian woosnam? ### CONTEXT CREATE TABLE table_name_93 (country VARCHAR, player VARCHAR) ### ANSWER SELECT country FROM table_name_93 WHERE player = "ian woosnam"</s>
{ "answer": "SELECT country FROM table_name_93 WHERE player = \"ian woosnam\"", "context": "CREATE TABLE table_name_93 (country VARCHAR, player VARCHAR)", "question": "What is the country of player ian woosnam?" }
### QUESTION what is the team nickname when joined tschl is 2010 and home arena is kettering rec center and the team website is dayton hockey? ### CONTEXT CREATE TABLE table_name_68 (team_nickname VARCHAR, team_website VARCHAR, joined_tschl VARCHAR, home_arena VARCHAR) ### ANSWER SELECT team_nickname FROM table_name_68 WHERE joined_tschl = 2010 AND home_arena = "kettering rec center" AND team_website = "dayton hockey"</s>
{ "answer": "SELECT team_nickname FROM table_name_68 WHERE joined_tschl = 2010 AND home_arena = \"kettering rec center\" AND team_website = \"dayton hockey\"", "context": "CREATE TABLE table_name_68 (team_nickname VARCHAR, team_website VARCHAR, joined_tschl VARCHAR, home_arena VARCHAR)", "question": "what is the team nickname when joined tschl is 2010 and home arena is kettering rec center and the team website is dayton hockey?" }
### QUESTION What was the result of the game after week 3 against the New York Giants? ### CONTEXT CREATE TABLE table_name_94 (result VARCHAR, week VARCHAR, opponent VARCHAR) ### ANSWER SELECT result FROM table_name_94 WHERE week > 3 AND opponent = "new york giants"</s>
{ "answer": "SELECT result FROM table_name_94 WHERE week > 3 AND opponent = \"new york giants\"", "context": "CREATE TABLE table_name_94 (result VARCHAR, week VARCHAR, opponent VARCHAR)", "question": "What was the result of the game after week 3 against the New York Giants?" }
### QUESTION Who has a grid smaller than 24, less than 61 laps, and a ferrari constructor? ### CONTEXT CREATE TABLE table_name_74 (driver VARCHAR, constructor VARCHAR, grid VARCHAR, laps VARCHAR) ### ANSWER SELECT driver FROM table_name_74 WHERE grid < 24 AND laps < 61 AND constructor = "ferrari"</s>
{ "answer": "SELECT driver FROM table_name_74 WHERE grid < 24 AND laps < 61 AND constructor = \"ferrari\"", "context": "CREATE TABLE table_name_74 (driver VARCHAR, constructor VARCHAR, grid VARCHAR, laps VARCHAR)", "question": "Who has a grid smaller than 24, less than 61 laps, and a ferrari constructor?" }
### QUESTION What year did J. Jones, trearddur bay build a boat with a current status of tbsc? ### CONTEXT CREATE TABLE table_name_54 (year_built VARCHAR, current_status VARCHAR, boat_builder VARCHAR) ### ANSWER SELECT year_built FROM table_name_54 WHERE current_status = "tbsc" AND boat_builder = "j. jones, trearddur bay"</s>
{ "answer": "SELECT year_built FROM table_name_54 WHERE current_status = \"tbsc\" AND boat_builder = \"j. jones, trearddur bay\"", "context": "CREATE TABLE table_name_54 (year_built VARCHAR, current_status VARCHAR, boat_builder VARCHAR)", "question": "What year did J. Jones, trearddur bay build a boat with a current status of tbsc?" }
### QUESTION What date was the Monsanto open located in Florida? ### CONTEXT CREATE TABLE table_name_58 (date VARCHAR, location VARCHAR, tournament VARCHAR) ### ANSWER SELECT date FROM table_name_58 WHERE location = "florida" AND tournament = "monsanto open"</s>
{ "answer": "SELECT date FROM table_name_58 WHERE location = \"florida\" AND tournament = \"monsanto open\"", "context": "CREATE TABLE table_name_58 (date VARCHAR, location VARCHAR, tournament VARCHAR)", "question": "What date was the Monsanto open located in Florida?" }
### QUESTION What is the boat builder for a boat built in 1910/11 and a number of 39? ### CONTEXT CREATE TABLE table_name_42 (boat_builder VARCHAR, year_built VARCHAR, number VARCHAR) ### ANSWER SELECT boat_builder FROM table_name_42 WHERE year_built = "1910/11" AND number = 39</s>
{ "answer": "SELECT boat_builder FROM table_name_42 WHERE year_built = \"1910/11\" AND number = 39", "context": "CREATE TABLE table_name_42 (boat_builder VARCHAR, year_built VARCHAR, number VARCHAR)", "question": "What is the boat builder for a boat built in 1910/11 and a number of 39?" }
### QUESTION What is the Week number on November 30, 1958 with more than 33,240 in Attendance? ### CONTEXT CREATE TABLE table_name_64 (week VARCHAR, date VARCHAR, attendance VARCHAR) ### ANSWER SELECT COUNT(week) FROM table_name_64 WHERE date = "november 30, 1958" AND attendance > 33 OFFSET 240</s>
{ "answer": "SELECT COUNT(week) FROM table_name_64 WHERE date = \"november 30, 1958\" AND attendance > 33 OFFSET 240", "context": "CREATE TABLE table_name_64 (week VARCHAR, date VARCHAR, attendance VARCHAR)", "question": "What is the Week number on November 30, 1958 with more than 33,240 in Attendance?" }
### QUESTION Name for me the tatsuhito takaiwa for Ryusuke Taguchi of taguchi (14:31) ### CONTEXT CREATE TABLE table_name_50 (tatsuhito_takaiwa VARCHAR, ryusuke_taguchi VARCHAR) ### ANSWER SELECT tatsuhito_takaiwa FROM table_name_50 WHERE ryusuke_taguchi = "taguchi (14:31)"</s>
{ "answer": "SELECT tatsuhito_takaiwa FROM table_name_50 WHERE ryusuke_taguchi = \"taguchi (14:31)\"", "context": "CREATE TABLE table_name_50 (tatsuhito_takaiwa VARCHAR, ryusuke_taguchi VARCHAR)", "question": "Name for me the tatsuhito takaiwa for Ryusuke Taguchi of taguchi (14:31)" }
### QUESTION What is the home team score for the team that has a home field of the Telstra Dome? ### CONTEXT CREATE TABLE table_name_98 (home_team VARCHAR, ground VARCHAR) ### ANSWER SELECT home_team AS score FROM table_name_98 WHERE ground = "telstra dome"</s>
{ "answer": "SELECT home_team AS score FROM table_name_98 WHERE ground = \"telstra dome\"", "context": "CREATE TABLE table_name_98 (home_team VARCHAR, ground VARCHAR)", "question": "What is the home team score for the team that has a home field of the Telstra Dome?" }
### QUESTION What was the sensor with a resolution of 355x288 for a Naturalpoint Trackir 3? ### CONTEXT CREATE TABLE table_name_53 (sensor VARCHAR, sensor_resolution VARCHAR, camera VARCHAR) ### ANSWER SELECT sensor FROM table_name_53 WHERE sensor_resolution = "355x288" AND camera = "naturalpoint trackir 3"</s>
{ "answer": "SELECT sensor FROM table_name_53 WHERE sensor_resolution = \"355x288\" AND camera = \"naturalpoint trackir 3\"", "context": "CREATE TABLE table_name_53 (sensor VARCHAR, sensor_resolution VARCHAR, camera VARCHAR)", "question": "What was the sensor with a resolution of 355x288 for a Naturalpoint Trackir 3?" }
### QUESTION What sensor has a resolution of 640x480 with small CPU usage, jpeg compressed output and a camera of sony playstation eyetoy? ### CONTEXT CREATE TABLE table_name_21 (sensor VARCHAR, camera VARCHAR, output VARCHAR, sensor_resolution VARCHAR, cpu_usage VARCHAR) ### ANSWER SELECT sensor FROM table_name_21 WHERE sensor_resolution = "640x480" AND cpu_usage = "small" AND output = "jpeg compressed" AND camera = "sony playstation eyetoy"</s>
{ "answer": "SELECT sensor FROM table_name_21 WHERE sensor_resolution = \"640x480\" AND cpu_usage = \"small\" AND output = \"jpeg compressed\" AND camera = \"sony playstation eyetoy\"", "context": "CREATE TABLE table_name_21 (sensor VARCHAR, camera VARCHAR, output VARCHAR, sensor_resolution VARCHAR, cpu_usage VARCHAR)", "question": "What sensor has a resolution of 640x480 with small CPU usage, jpeg compressed output and a camera of sony playstation eyetoy?" }
### QUESTION Result of w 21–7 had what average week? ### CONTEXT CREATE TABLE table_name_96 (week INTEGER, result VARCHAR) ### ANSWER SELECT AVG(week) FROM table_name_96 WHERE result = "w 21–7"</s>
{ "answer": "SELECT AVG(week) FROM table_name_96 WHERE result = \"w 21–7\"", "context": "CREATE TABLE table_name_96 (week INTEGER, result VARCHAR)", "question": "Result of w 21–7 had what average week?" }
### QUESTION What is the lowest figure for her age when the year of marriage is before 1853, the number of children is less than 8, and the bride was Eliza Maria Partridge? ### CONTEXT CREATE TABLE table_name_60 (her_age INTEGER, name VARCHAR, year_of_marriage VARCHAR, _number_of_children VARCHAR) ### ANSWER SELECT MIN(her_age) FROM table_name_60 WHERE year_of_marriage < 1853 AND _number_of_children < 8 AND name = "eliza maria partridge"</s>
{ "answer": "SELECT MIN(her_age) FROM table_name_60 WHERE year_of_marriage < 1853 AND _number_of_children < 8 AND name = \"eliza maria partridge\"", "context": "CREATE TABLE table_name_60 (her_age INTEGER, name VARCHAR, year_of_marriage VARCHAR, _number_of_children VARCHAR)", "question": "What is the lowest figure for her age when the year of marriage is before 1853, the number of children is less than 8, and the bride was Eliza Maria Partridge?" }
### QUESTION What is the total number of her age figures where his age is less than 33, the bride was diontha walker, and the number of children was less than 0? ### CONTEXT CREATE TABLE table_name_84 (her_age INTEGER, _number_of_children VARCHAR, his_age VARCHAR, name VARCHAR) ### ANSWER SELECT SUM(her_age) FROM table_name_84 WHERE his_age < 33 AND name = "diontha walker" AND _number_of_children < 0</s>
{ "answer": "SELECT SUM(her_age) FROM table_name_84 WHERE his_age < 33 AND name = \"diontha walker\" AND _number_of_children < 0", "context": "CREATE TABLE table_name_84 (her_age INTEGER, _number_of_children VARCHAR, his_age VARCHAR, name VARCHAR)", "question": "What is the total number of her age figures where his age is less than 33, the bride was diontha walker, and the number of children was less than 0?" }
### QUESTION Who took the loss against the California Angels when the attendance was 10,886? ### CONTEXT CREATE TABLE table_name_90 (loss VARCHAR, opponent VARCHAR, attendance VARCHAR) ### ANSWER SELECT loss FROM table_name_90 WHERE opponent = "california angels" AND attendance = "10,886"</s>
{ "answer": "SELECT loss FROM table_name_90 WHERE opponent = \"california angels\" AND attendance = \"10,886\"", "context": "CREATE TABLE table_name_90 (loss VARCHAR, opponent VARCHAR, attendance VARCHAR)", "question": "Who took the loss against the California Angels when the attendance was 10,886?" }
### QUESTION What opponent has october less than 20, and 8 for points? ### CONTEXT CREATE TABLE table_name_13 (opponent VARCHAR, october VARCHAR, points VARCHAR) ### ANSWER SELECT opponent FROM table_name_13 WHERE october < 20 AND points = 8</s>
{ "answer": "SELECT opponent FROM table_name_13 WHERE october < 20 AND points = 8", "context": "CREATE TABLE table_name_13 (opponent VARCHAR, october VARCHAR, points VARCHAR)", "question": "What opponent has october less than 20, and 8 for points?" }
### QUESTION What day did Yugoslavia play Luxembourg? ### CONTEXT CREATE TABLE table_name_56 (date VARCHAR, opponent VARCHAR) ### ANSWER SELECT date FROM table_name_56 WHERE opponent = "luxembourg"</s>
{ "answer": "SELECT date FROM table_name_56 WHERE opponent = \"luxembourg\"", "context": "CREATE TABLE table_name_56 (date VARCHAR, opponent VARCHAR)", "question": "What day did Yugoslavia play Luxembourg?" }
### QUESTION Which Partner has a Score of 7–6, 6–3? ### CONTEXT CREATE TABLE table_name_38 (partner VARCHAR, score VARCHAR) ### ANSWER SELECT partner FROM table_name_38 WHERE score = "7–6, 6–3"</s>
{ "answer": "SELECT partner FROM table_name_38 WHERE score = \"7–6, 6–3\"", "context": "CREATE TABLE table_name_38 (partner VARCHAR, score VARCHAR)", "question": "Which Partner has a Score of 7–6, 6–3?" }
### QUESTION What is the UCI rating of the race in Italy with the progetto ciclismo alplast team? ### CONTEXT CREATE TABLE table_name_81 (uci_rating VARCHAR, location VARCHAR, team VARCHAR) ### ANSWER SELECT uci_rating FROM table_name_81 WHERE location = "italy" AND team = "progetto ciclismo alplast"</s>
{ "answer": "SELECT uci_rating FROM table_name_81 WHERE location = \"italy\" AND team = \"progetto ciclismo alplast\"", "context": "CREATE TABLE table_name_81 (uci_rating VARCHAR, location VARCHAR, team VARCHAR)", "question": "What is the UCI rating of the race in Italy with the progetto ciclismo alplast team?" }
### QUESTION Which Points have a Year larger than 1966, and Wins larger than 1? ### CONTEXT CREATE TABLE table_name_78 (points INTEGER, year VARCHAR, wins VARCHAR) ### ANSWER SELECT AVG(points) FROM table_name_78 WHERE year > 1966 AND wins > 1</s>
{ "answer": "SELECT AVG(points) FROM table_name_78 WHERE year > 1966 AND wins > 1", "context": "CREATE TABLE table_name_78 (points INTEGER, year VARCHAR, wins VARCHAR)", "question": "Which Points have a Year larger than 1966, and Wins larger than 1?" }
### QUESTION Name the highest laps for time/retired of engine and grid of 5 ### CONTEXT CREATE TABLE table_name_37 (laps INTEGER, time_retired VARCHAR, grid VARCHAR) ### ANSWER SELECT MAX(laps) FROM table_name_37 WHERE time_retired = "engine" AND grid = 5</s>
{ "answer": "SELECT MAX(laps) FROM table_name_37 WHERE time_retired = \"engine\" AND grid = 5", "context": "CREATE TABLE table_name_37 (laps INTEGER, time_retired VARCHAR, grid VARCHAR)", "question": "Name the highest laps for time/retired of engine and grid of 5" }
### QUESTION Name the highest laps for maserati and +6 laps for grid more than 11 ### CONTEXT CREATE TABLE table_name_33 (laps INTEGER, grid VARCHAR, constructor VARCHAR, time_retired VARCHAR) ### ANSWER SELECT MAX(laps) FROM table_name_33 WHERE constructor = "maserati" AND time_retired = "+6 laps" AND grid > 11</s>
{ "answer": "SELECT MAX(laps) FROM table_name_33 WHERE constructor = \"maserati\" AND time_retired = \"+6 laps\" AND grid > 11", "context": "CREATE TABLE table_name_33 (laps INTEGER, grid VARCHAR, constructor VARCHAR, time_retired VARCHAR)", "question": "Name the highest laps for maserati and +6 laps for grid more than 11" }
### QUESTION Which Themed Area has a Name of troublesome trucks runaway coaster? ### CONTEXT CREATE TABLE table_name_12 (themed_area VARCHAR, name VARCHAR) ### ANSWER SELECT themed_area FROM table_name_12 WHERE name = "troublesome trucks runaway coaster"</s>
{ "answer": "SELECT themed_area FROM table_name_12 WHERE name = \"troublesome trucks runaway coaster\"", "context": "CREATE TABLE table_name_12 (themed_area VARCHAR, name VARCHAR)", "question": "Which Themed Area has a Name of troublesome trucks runaway coaster?" }
### QUESTION Which Manufacturer has a Style of steel sit down, and an Opened larger than 2008? ### CONTEXT CREATE TABLE table_name_31 (manufacturer VARCHAR, style VARCHAR, opened VARCHAR) ### ANSWER SELECT manufacturer FROM table_name_31 WHERE style = "steel sit down" AND opened > 2008</s>
{ "answer": "SELECT manufacturer FROM table_name_31 WHERE style = \"steel sit down\" AND opened > 2008", "context": "CREATE TABLE table_name_31 (manufacturer VARCHAR, style VARCHAR, opened VARCHAR)", "question": "Which Manufacturer has a Style of steel sit down, and an Opened larger than 2008?" }
### QUESTION Which Original Broadway production has a First US National Tour of roger bart? ### CONTEXT CREATE TABLE table_name_52 (original_broadway_production VARCHAR, first_us_national_tour VARCHAR) ### ANSWER SELECT original_broadway_production FROM table_name_52 WHERE first_us_national_tour = "roger bart"</s>
{ "answer": "SELECT original_broadway_production FROM table_name_52 WHERE first_us_national_tour = \"roger bart\"", "context": "CREATE TABLE table_name_52 (original_broadway_production VARCHAR, first_us_national_tour VARCHAR)", "question": "Which Original Broadway production has a First US National Tour of roger bart?" }
### QUESTION What is the crowd with Away team of hawthorn? ### CONTEXT CREATE TABLE table_name_94 (crowd INTEGER, away_team VARCHAR) ### ANSWER SELECT AVG(crowd) FROM table_name_94 WHERE away_team = "hawthorn"</s>
{ "answer": "SELECT AVG(crowd) FROM table_name_94 WHERE away_team = \"hawthorn\"", "context": "CREATE TABLE table_name_94 (crowd INTEGER, away_team VARCHAR)", "question": "What is the crowd with Away team of hawthorn?" }
### QUESTION What Gaelic Athletic Association stadium is located in Carrick-on-Shannon? ### CONTEXT CREATE TABLE table_name_72 (stadium VARCHAR, location VARCHAR) ### ANSWER SELECT stadium FROM table_name_72 WHERE location = "carrick-on-shannon"</s>
{ "answer": "SELECT stadium FROM table_name_72 WHERE location = \"carrick-on-shannon\"", "context": "CREATE TABLE table_name_72 (stadium VARCHAR, location VARCHAR)", "question": "What Gaelic Athletic Association stadium is located in Carrick-on-Shannon?" }
### QUESTION Which average Crowd has a Home team of south melbourne? ### CONTEXT CREATE TABLE table_name_72 (crowd INTEGER, home_team VARCHAR) ### ANSWER SELECT AVG(crowd) FROM table_name_72 WHERE home_team = "south melbourne"</s>
{ "answer": "SELECT AVG(crowd) FROM table_name_72 WHERE home_team = \"south melbourne\"", "context": "CREATE TABLE table_name_72 (crowd INTEGER, home_team VARCHAR)", "question": "Which average Crowd has a Home team of south melbourne?" }
### QUESTION with delivery date of 2001 2001 what is gross tonnage? ### CONTEXT CREATE TABLE table_name_35 (gross_tonnage INTEGER, delivery_date VARCHAR) ### ANSWER SELECT AVG(gross_tonnage) FROM table_name_35 WHERE delivery_date = "2001 2001"</s>
{ "answer": "SELECT AVG(gross_tonnage) FROM table_name_35 WHERE delivery_date = \"2001 2001\"", "context": "CREATE TABLE table_name_35 (gross_tonnage INTEGER, delivery_date VARCHAR)", "question": "with delivery date of 2001 2001 what is gross tonnage?" }
### QUESTION What is the location of the game that was friendly and resulted in 2-3? ### CONTEXT CREATE TABLE table_name_6 (venue VARCHAR, competition VARCHAR, result VARCHAR) ### ANSWER SELECT venue FROM table_name_6 WHERE competition = "friendly" AND result = "2-3"</s>
{ "answer": "SELECT venue FROM table_name_6 WHERE competition = \"friendly\" AND result = \"2-3\"", "context": "CREATE TABLE table_name_6 (venue VARCHAR, competition VARCHAR, result VARCHAR)", "question": "What is the location of the game that was friendly and resulted in 2-3?" }
### QUESTION Which DOB has Throws of r, and a Position of c, and a First of torey? ### CONTEXT CREATE TABLE table_name_25 (dob VARCHAR, first VARCHAR, throws VARCHAR, position VARCHAR) ### ANSWER SELECT dob FROM table_name_25 WHERE throws = "r" AND position = "c" AND first = "torey"</s>
{ "answer": "SELECT dob FROM table_name_25 WHERE throws = \"r\" AND position = \"c\" AND first = \"torey\"", "context": "CREATE TABLE table_name_25 (dob VARCHAR, first VARCHAR, throws VARCHAR, position VARCHAR)", "question": "Which DOB has Throws of r, and a Position of c, and a First of torey?" }
### QUESTION Tell me the sum of the grid with alfa romeo and toulo de graffenried ### CONTEXT CREATE TABLE table_name_86 (grid INTEGER, constructor VARCHAR, driver VARCHAR) ### ANSWER SELECT SUM(grid) FROM table_name_86 WHERE constructor = "alfa romeo" AND driver = "toulo de graffenried"</s>
{ "answer": "SELECT SUM(grid) FROM table_name_86 WHERE constructor = \"alfa romeo\" AND driver = \"toulo de graffenried\"", "context": "CREATE TABLE table_name_86 (grid INTEGER, constructor VARCHAR, driver VARCHAR)", "question": "Tell me the sum of the grid with alfa romeo and toulo de graffenried" }
### QUESTION When Bubbles of no, and a Category of miscellaneous, and a Type of propertychange, what was the Cancelable? ### CONTEXT CREATE TABLE table_name_97 (cancelable VARCHAR, type VARCHAR, bubbles VARCHAR, category VARCHAR) ### ANSWER SELECT cancelable FROM table_name_97 WHERE bubbles = "no" AND category = "miscellaneous" AND type = "propertychange"</s>
{ "answer": "SELECT cancelable FROM table_name_97 WHERE bubbles = \"no\" AND category = \"miscellaneous\" AND type = \"propertychange\"", "context": "CREATE TABLE table_name_97 (cancelable VARCHAR, type VARCHAR, bubbles VARCHAR, category VARCHAR)", "question": "When Bubbles of no, and a Category of miscellaneous, and a Type of propertychange, what was the Cancelable?" }
### QUESTION How many laps did Nick Heidfeld drive on grids larger than 4? ### CONTEXT CREATE TABLE table_name_77 (laps INTEGER, grid VARCHAR, driver VARCHAR) ### ANSWER SELECT SUM(laps) FROM table_name_77 WHERE grid > 4 AND driver = "nick heidfeld"</s>
{ "answer": "SELECT SUM(laps) FROM table_name_77 WHERE grid > 4 AND driver = \"nick heidfeld\"", "context": "CREATE TABLE table_name_77 (laps INTEGER, grid VARCHAR, driver VARCHAR)", "question": "How many laps did Nick Heidfeld drive on grids larger than 4?" }
### QUESTION When was chuck morris, back, drafted? ### CONTEXT CREATE TABLE table_name_51 (pick INTEGER, position VARCHAR, player VARCHAR) ### ANSWER SELECT MIN(pick) FROM table_name_51 WHERE position = "back" AND player = "chuck morris"</s>
{ "answer": "SELECT MIN(pick) FROM table_name_51 WHERE position = \"back\" AND player = \"chuck morris\"", "context": "CREATE TABLE table_name_51 (pick INTEGER, position VARCHAR, player VARCHAR)", "question": "When was chuck morris, back, drafted?" }
### QUESTION What is the council area for the Larkhall urban sub-area? ### CONTEXT CREATE TABLE table_name_51 (council_area VARCHAR, urban_sub_area VARCHAR) ### ANSWER SELECT council_area FROM table_name_51 WHERE urban_sub_area = "larkhall"</s>
{ "answer": "SELECT council_area FROM table_name_51 WHERE urban_sub_area = \"larkhall\"", "context": "CREATE TABLE table_name_51 (council_area VARCHAR, urban_sub_area VARCHAR)", "question": "What is the council area for the Larkhall urban sub-area?" }
### QUESTION During the hungarian grand prix where the pole position was michael schumacher and the fastest lap was driven by damon hill, what's the total number of rounds of races matching these standards? ### CONTEXT CREATE TABLE table_name_17 (round VARCHAR, grand_prix VARCHAR, fastest_lap VARCHAR, pole_position VARCHAR) ### ANSWER SELECT COUNT(round) FROM table_name_17 WHERE fastest_lap = "damon hill" AND pole_position = "michael schumacher" AND grand_prix = "hungarian grand prix"</s>
{ "answer": "SELECT COUNT(round) FROM table_name_17 WHERE fastest_lap = \"damon hill\" AND pole_position = \"michael schumacher\" AND grand_prix = \"hungarian grand prix\"", "context": "CREATE TABLE table_name_17 (round VARCHAR, grand_prix VARCHAR, fastest_lap VARCHAR, pole_position VARCHAR)", "question": "During the hungarian grand prix where the pole position was michael schumacher and the fastest lap was driven by damon hill, what's the total number of rounds of races matching these standards?" }
### QUESTION What nationality is Northwood School (N.Y.)? ### CONTEXT CREATE TABLE table_name_44 (nationality VARCHAR, college_junior_club_team__league_ VARCHAR) ### ANSWER SELECT nationality FROM table_name_44 WHERE college_junior_club_team__league_ = "northwood school (n.y.)"</s>
{ "answer": "SELECT nationality FROM table_name_44 WHERE college_junior_club_team__league_ = \"northwood school (n.y.)\"", "context": "CREATE TABLE table_name_44 (nationality VARCHAR, college_junior_club_team__league_ VARCHAR)", "question": "What nationality is Northwood School (N.Y.)?" }
### QUESTION I want to know the average Gold for total smaller 12 and bronze less than 1 and wushu with silver more than 3 ### CONTEXT CREATE TABLE table_name_2 (gold INTEGER, silver VARCHAR, sport VARCHAR, total VARCHAR, bronze VARCHAR) ### ANSWER SELECT AVG(gold) FROM table_name_2 WHERE total < 12 AND bronze < 1 AND sport = "wushu" AND silver > 3</s>
{ "answer": "SELECT AVG(gold) FROM table_name_2 WHERE total < 12 AND bronze < 1 AND sport = \"wushu\" AND silver > 3", "context": "CREATE TABLE table_name_2 (gold INTEGER, silver VARCHAR, sport VARCHAR, total VARCHAR, bronze VARCHAR)", "question": "I want to know the average Gold for total smaller 12 and bronze less than 1 and wushu with silver more than 3" }
### QUESTION I want the lowest Gold for silver being 2 and electronic sports ### CONTEXT CREATE TABLE table_name_98 (gold INTEGER, silver VARCHAR, sport VARCHAR) ### ANSWER SELECT MIN(gold) FROM table_name_98 WHERE silver = 2 AND sport = "electronic sports"</s>
{ "answer": "SELECT MIN(gold) FROM table_name_98 WHERE silver = 2 AND sport = \"electronic sports\"", "context": "CREATE TABLE table_name_98 (gold INTEGER, silver VARCHAR, sport VARCHAR)", "question": "I want the lowest Gold for silver being 2 and electronic sports" }
### QUESTION When was republican incumbent Joseph McKenna first elected? ### CONTEXT CREATE TABLE table_name_28 (first_elected VARCHAR, party VARCHAR, incumbent VARCHAR) ### ANSWER SELECT first_elected FROM table_name_28 WHERE party = "republican" AND incumbent = "joseph mckenna"</s>
{ "answer": "SELECT first_elected FROM table_name_28 WHERE party = \"republican\" AND incumbent = \"joseph mckenna\"", "context": "CREATE TABLE table_name_28 (first_elected VARCHAR, party VARCHAR, incumbent VARCHAR)", "question": "When was republican incumbent Joseph McKenna first elected?" }
### QUESTION Tell me the total number of total for vovinam and bronze less than 3 ### CONTEXT CREATE TABLE table_name_16 (total VARCHAR, sport VARCHAR, bronze VARCHAR) ### ANSWER SELECT COUNT(total) FROM table_name_16 WHERE sport = "vovinam" AND bronze < 3</s>
{ "answer": "SELECT COUNT(total) FROM table_name_16 WHERE sport = \"vovinam\" AND bronze < 3", "context": "CREATE TABLE table_name_16 (total VARCHAR, sport VARCHAR, bronze VARCHAR)", "question": "Tell me the total number of total for vovinam and bronze less than 3" }
### QUESTION What college, junior, or club team did defence player Rory Fitzpatrick play for? ### CONTEXT CREATE TABLE table_name_81 (college_junior_club_team VARCHAR, position VARCHAR, player VARCHAR) ### ANSWER SELECT college_junior_club_team FROM table_name_81 WHERE position = "defence" AND player = "rory fitzpatrick"</s>
{ "answer": "SELECT college_junior_club_team FROM table_name_81 WHERE position = \"defence\" AND player = \"rory fitzpatrick\"", "context": "CREATE TABLE table_name_81 (college_junior_club_team VARCHAR, position VARCHAR, player VARCHAR)", "question": "What college, junior, or club team did defence player Rory Fitzpatrick play for?" }
### QUESTION For a vehicle below 25 feet, that was retired in 2005 and had a navistar t444e engine, what was the total width? ### CONTEXT CREATE TABLE table_name_11 (width__inches_ VARCHAR, length__feet_ VARCHAR, engine VARCHAR, retired VARCHAR) ### ANSWER SELECT COUNT(width__inches_) FROM table_name_11 WHERE engine = "navistar t444e" AND retired = "2005" AND length__feet_ < 25</s>
{ "answer": "SELECT COUNT(width__inches_) FROM table_name_11 WHERE engine = \"navistar t444e\" AND retired = \"2005\" AND length__feet_ < 25", "context": "CREATE TABLE table_name_11 (width__inches_ VARCHAR, length__feet_ VARCHAR, engine VARCHAR, retired VARCHAR)", "question": "For a vehicle below 25 feet, that was retired in 2005 and had a navistar t444e engine, what was the total width?" }
### QUESTION What was the score of the game when the home was Atlanta? ### CONTEXT CREATE TABLE table_name_99 (score VARCHAR, home VARCHAR) ### ANSWER SELECT score FROM table_name_99 WHERE home = "atlanta"</s>
{ "answer": "SELECT score FROM table_name_99 WHERE home = \"atlanta\"", "context": "CREATE TABLE table_name_99 (score VARCHAR, home VARCHAR)", "question": "What was the score of the game when the home was Atlanta?" }
### QUESTION What is the sum of all mintage created by Pierre Leduc? ### CONTEXT CREATE TABLE table_name_61 (mintage INTEGER, artist VARCHAR) ### ANSWER SELECT SUM(mintage) FROM table_name_61 WHERE artist = "pierre leduc"</s>
{ "answer": "SELECT SUM(mintage) FROM table_name_61 WHERE artist = \"pierre leduc\"", "context": "CREATE TABLE table_name_61 (mintage INTEGER, artist VARCHAR)", "question": "What is the sum of all mintage created by Pierre Leduc?" }
### QUESTION What is the D 46 √ when the D 44 √ is ← majority? ### CONTEXT CREATE TABLE table_name_3 (d_46_√ VARCHAR, d_44_√ VARCHAR) ### ANSWER SELECT d_46_√ FROM table_name_3 WHERE d_44_√ = "← majority"</s>
{ "answer": "SELECT d_46_√ FROM table_name_3 WHERE d_44_√ = \"← majority\"", "context": "CREATE TABLE table_name_3 (d_46_√ VARCHAR, d_44_√ VARCHAR)", "question": "What is the D 46 √ when the D 44 √ is ← majority?" }
### QUESTION Which 2006 Tournament has a 2004, and a 2002 of not tier i? ### CONTEXT CREATE TABLE table_name_15 (Id VARCHAR) ### ANSWER SELECT 2006 FROM table_name_15 WHERE 2004 = "a" AND 2002 = "not tier i"</s>
{ "answer": "SELECT 2006 FROM table_name_15 WHERE 2004 = \"a\" AND 2002 = \"not tier i\"", "context": "CREATE TABLE table_name_15 (Id VARCHAR)", "question": "Which 2006 Tournament has a 2004, and a 2002 of not tier i?" }
### QUESTION Which hanzi's launch is before 2009, when the language was tibetan, and the name was qinghai tibetian general channel? ### CONTEXT CREATE TABLE table_name_71 (hanzi VARCHAR, name VARCHAR, launch VARCHAR, language VARCHAR) ### ANSWER SELECT hanzi FROM table_name_71 WHERE launch < 2009 AND language = "tibetan" AND name = "qinghai tibetian general channel"</s>
{ "answer": "SELECT hanzi FROM table_name_71 WHERE launch < 2009 AND language = \"tibetan\" AND name = \"qinghai tibetian general channel\"", "context": "CREATE TABLE table_name_71 (hanzi VARCHAR, name VARCHAR, launch VARCHAR, language VARCHAR)", "question": "Which hanzi's launch is before 2009, when the language was tibetan, and the name was qinghai tibetian general channel?" }
### QUESTION What is the highest average for a contestant with an evening gown larger than 9.449 from Kansas? ### CONTEXT CREATE TABLE table_name_56 (average INTEGER, evening_gown VARCHAR, state VARCHAR) ### ANSWER SELECT MAX(average) FROM table_name_56 WHERE evening_gown > 9.449 AND state = "kansas"</s>
{ "answer": "SELECT MAX(average) FROM table_name_56 WHERE evening_gown > 9.449 AND state = \"kansas\"", "context": "CREATE TABLE table_name_56 (average INTEGER, evening_gown VARCHAR, state VARCHAR)", "question": "What is the highest average for a contestant with an evening gown larger than 9.449 from Kansas?" }
### QUESTION What is the lowest interview for a contestant from North Carolina with a swimsuit larger than 9.021, an average smaller than 9.513, and an evening gown larger than 9.5? ### CONTEXT CREATE TABLE table_name_60 (interview INTEGER, evening_gown VARCHAR, state VARCHAR, swimsuit VARCHAR, average VARCHAR) ### ANSWER SELECT MIN(interview) FROM table_name_60 WHERE swimsuit > 9.021 AND average < 9.513 AND state = "north carolina" AND evening_gown > 9.5</s>
{ "answer": "SELECT MIN(interview) FROM table_name_60 WHERE swimsuit > 9.021 AND average < 9.513 AND state = \"north carolina\" AND evening_gown > 9.5", "context": "CREATE TABLE table_name_60 (interview INTEGER, evening_gown VARCHAR, state VARCHAR, swimsuit VARCHAR, average VARCHAR)", "question": "What is the lowest interview for a contestant from North Carolina with a swimsuit larger than 9.021, an average smaller than 9.513, and an evening gown larger than 9.5?" }
### QUESTION Which Division that has a Reg Season of 1st, western, and Playoffs of champions, and a Year smaller than 2013? ### CONTEXT CREATE TABLE table_name_36 (division INTEGER, year VARCHAR, reg_season VARCHAR, playoffs VARCHAR) ### ANSWER SELECT AVG(division) FROM table_name_36 WHERE reg_season = "1st, western" AND playoffs = "champions" AND year < 2013</s>
{ "answer": "SELECT AVG(division) FROM table_name_36 WHERE reg_season = \"1st, western\" AND playoffs = \"champions\" AND year < 2013", "context": "CREATE TABLE table_name_36 (division INTEGER, year VARCHAR, reg_season VARCHAR, playoffs VARCHAR)", "question": "Which Division that has a Reg Season of 1st, western, and Playoffs of champions, and a Year smaller than 2013?" }
### QUESTION Name the launch vehicle with Institutional authority of ndc ### CONTEXT CREATE TABLE table_name_59 (launch_vehicle VARCHAR, institutional_authority VARCHAR) ### ANSWER SELECT launch_vehicle FROM table_name_59 WHERE institutional_authority = "ndc"</s>
{ "answer": "SELECT launch_vehicle FROM table_name_59 WHERE institutional_authority = \"ndc\"", "context": "CREATE TABLE table_name_59 (launch_vehicle VARCHAR, institutional_authority VARCHAR)", "question": "Name the launch vehicle with Institutional authority of ndc" }
### QUESTION What was the date of the game against Norway with a 1:1 result? ### CONTEXT CREATE TABLE table_name_31 (date VARCHAR, opponent VARCHAR, results¹ VARCHAR) ### ANSWER SELECT date FROM table_name_31 WHERE opponent = "norway" AND results¹ = "1:1"</s>
{ "answer": "SELECT date FROM table_name_31 WHERE opponent = \"norway\" AND results¹ = \"1:1\"", "context": "CREATE TABLE table_name_31 (date VARCHAR, opponent VARCHAR, results¹ VARCHAR)", "question": "What was the date of the game against Norway with a 1:1 result?" }
### QUESTION Name the total number of NGC number for sagittarius and diffuse nebula with declination of °02′ ### CONTEXT CREATE TABLE table_name_86 (ngc_number VARCHAR, declination___j2000__ VARCHAR, constellation VARCHAR, object_type VARCHAR) ### ANSWER SELECT COUNT(ngc_number) FROM table_name_86 WHERE constellation = "sagittarius" AND object_type = "diffuse nebula" AND declination___j2000__ = "°02′"</s>
{ "answer": "SELECT COUNT(ngc_number) FROM table_name_86 WHERE constellation = \"sagittarius\" AND object_type = \"diffuse nebula\" AND declination___j2000__ = \"°02′\"", "context": "CREATE TABLE table_name_86 (ngc_number VARCHAR, declination___j2000__ VARCHAR, constellation VARCHAR, object_type VARCHAR)", "question": "Name the total number of NGC number for sagittarius and diffuse nebula with declination of °02′" }
### QUESTION Name the right ascension for sagittarius and NGC number larger than 6522 for open cluster and declination of °22′ ### CONTEXT CREATE TABLE table_name_78 (right_ascension___j2000__ VARCHAR, declination___j2000__ VARCHAR, object_type VARCHAR, constellation VARCHAR, ngc_number VARCHAR) ### ANSWER SELECT right_ascension___j2000__ FROM table_name_78 WHERE constellation = "sagittarius" AND ngc_number > 6522 AND object_type = "open cluster" AND declination___j2000__ = "°22′"</s>
{ "answer": "SELECT right_ascension___j2000__ FROM table_name_78 WHERE constellation = \"sagittarius\" AND ngc_number > 6522 AND object_type = \"open cluster\" AND declination___j2000__ = \"°22′\"", "context": "CREATE TABLE table_name_78 (right_ascension___j2000__ VARCHAR, declination___j2000__ VARCHAR, object_type VARCHAR, constellation VARCHAR, ngc_number VARCHAR)", "question": "Name the right ascension for sagittarius and NGC number larger than 6522 for open cluster and declination of °22′" }
### QUESTION What attendance has astros as the opponent, and april 29 as the date? ### CONTEXT CREATE TABLE table_name_69 (attendance INTEGER, opponent VARCHAR, date VARCHAR) ### ANSWER SELECT SUM(attendance) FROM table_name_69 WHERE opponent = "astros" AND date = "april 29"</s>
{ "answer": "SELECT SUM(attendance) FROM table_name_69 WHERE opponent = \"astros\" AND date = \"april 29\"", "context": "CREATE TABLE table_name_69 (attendance INTEGER, opponent VARCHAR, date VARCHAR)", "question": "What attendance has astros as the opponent, and april 29 as the date?" }
### QUESTION Most populous city/town of clonmel, and a Irish name of tiobraid árann (contae thiobraid árann) is which region? ### CONTEXT CREATE TABLE table_name_8 (region VARCHAR, most_populous_city_town VARCHAR, irish_name VARCHAR) ### ANSWER SELECT region FROM table_name_8 WHERE most_populous_city_town = "clonmel" AND irish_name = "tiobraid árann (contae thiobraid árann)"</s>
{ "answer": "SELECT region FROM table_name_8 WHERE most_populous_city_town = \"clonmel\" AND irish_name = \"tiobraid árann (contae thiobraid árann)\"", "context": "CREATE TABLE table_name_8 (region VARCHAR, most_populous_city_town VARCHAR, irish_name VARCHAR)", "question": "Most populous city/town of clonmel, and a Irish name of tiobraid árann (contae thiobraid árann) is which region?" }
### QUESTION Tell me the name for men's featherweight and sport of weightlifting ### CONTEXT CREATE TABLE table_name_71 (name VARCHAR, event VARCHAR, sport VARCHAR) ### ANSWER SELECT name FROM table_name_71 WHERE event = "men's featherweight" AND sport = "weightlifting"</s>
{ "answer": "SELECT name FROM table_name_71 WHERE event = \"men's featherweight\" AND sport = \"weightlifting\"", "context": "CREATE TABLE table_name_71 (name VARCHAR, event VARCHAR, sport VARCHAR)", "question": "Tell me the name for men's featherweight and sport of weightlifting" }
### QUESTION Tell me the sum of earnings for rank less than 1 ### CONTEXT CREATE TABLE table_name_63 (earnings__ INTEGER, rank INTEGER) ### ANSWER SELECT SUM(earnings__) AS $__ FROM table_name_63 WHERE rank < 1</s>
{ "answer": "SELECT SUM(earnings__) AS $__ FROM table_name_63 WHERE rank < 1", "context": "CREATE TABLE table_name_63 (earnings__ INTEGER, rank INTEGER)", "question": "Tell me the sum of earnings for rank less than 1" }
### QUESTION What Norwegian title has 218 pages and Translated Title of Breaking Dawn? ### CONTEXT CREATE TABLE table_name_37 (norwegian_title VARCHAR, pages VARCHAR, translated_title VARCHAR) ### ANSWER SELECT norwegian_title FROM table_name_37 WHERE pages = 218 AND translated_title = "breaking dawn"</s>
{ "answer": "SELECT norwegian_title FROM table_name_37 WHERE pages = 218 AND translated_title = \"breaking dawn\"", "context": "CREATE TABLE table_name_37 (norwegian_title VARCHAR, pages VARCHAR, translated_title VARCHAR)", "question": "What Norwegian title has 218 pages and Translated Title of Breaking Dawn?" }
### QUESTION Name the winning party 2007 for result of labour hold and swing to gain less than 7.11 for wrexham ### CONTEXT CREATE TABLE table_name_60 (winning_party_2007 VARCHAR, constituency VARCHAR, result VARCHAR, swing_to_gain VARCHAR) ### ANSWER SELECT winning_party_2007 FROM table_name_60 WHERE result = "labour hold" AND swing_to_gain < 7.11 AND constituency = "wrexham"</s>
{ "answer": "SELECT winning_party_2007 FROM table_name_60 WHERE result = \"labour hold\" AND swing_to_gain < 7.11 AND constituency = \"wrexham\"", "context": "CREATE TABLE table_name_60 (winning_party_2007 VARCHAR, constituency VARCHAR, result VARCHAR, swing_to_gain VARCHAR)", "question": "Name the winning party 2007 for result of labour hold and swing to gain less than 7.11 for wrexham" }
### QUESTION What score has vancouver as the home, and february 16 as the date? ### CONTEXT CREATE TABLE table_name_81 (score VARCHAR, home VARCHAR, date VARCHAR) ### ANSWER SELECT score FROM table_name_81 WHERE home = "vancouver" AND date = "february 16"</s>
{ "answer": "SELECT score FROM table_name_81 WHERE home = \"vancouver\" AND date = \"february 16\"", "context": "CREATE TABLE table_name_81 (score VARCHAR, home VARCHAR, date VARCHAR)", "question": "What score has vancouver as the home, and february 16 as the date?" }
### QUESTION Against smaller than 53, and a Drawn smaller than 10, and a Played smaller than 38 has what average points? ### CONTEXT CREATE TABLE table_name_88 (points INTEGER, played VARCHAR, against VARCHAR, drawn VARCHAR) ### ANSWER SELECT AVG(points) FROM table_name_88 WHERE against < 53 AND drawn < 10 AND played < 38</s>
{ "answer": "SELECT AVG(points) FROM table_name_88 WHERE against < 53 AND drawn < 10 AND played < 38", "context": "CREATE TABLE table_name_88 (points INTEGER, played VARCHAR, against VARCHAR, drawn VARCHAR)", "question": "Against smaller than 53, and a Drawn smaller than 10, and a Played smaller than 38 has what average points?" }
### QUESTION What report has a score of 0-0 with Sydney FC? ### CONTEXT CREATE TABLE table_name_49 (report VARCHAR, score VARCHAR, away_team VARCHAR) ### ANSWER SELECT report FROM table_name_49 WHERE score = "0-0" AND away_team = "sydney fc"</s>
{ "answer": "SELECT report FROM table_name_49 WHERE score = \"0-0\" AND away_team = \"sydney fc\"", "context": "CREATE TABLE table_name_49 (report VARCHAR, score VARCHAR, away_team VARCHAR)", "question": "What report has a score of 0-0 with Sydney FC?" }
### QUESTION What is the grid total for alain prost with over 14 laps? ### CONTEXT CREATE TABLE table_name_91 (grid INTEGER, laps VARCHAR, driver VARCHAR) ### ANSWER SELECT SUM(grid) FROM table_name_91 WHERE laps > 14 AND driver = "alain prost"</s>
{ "answer": "SELECT SUM(grid) FROM table_name_91 WHERE laps > 14 AND driver = \"alain prost\"", "context": "CREATE TABLE table_name_91 (grid INTEGER, laps VARCHAR, driver VARCHAR)", "question": "What is the grid total for alain prost with over 14 laps?" }
### QUESTION What is the Chipset based on with a Digital/analog signal of analog, with an Available interface of agp, with Retail name with all-in-wonder 9800? ### CONTEXT CREATE TABLE table_name_18 (chipset_based_on VARCHAR, retail_name VARCHAR, digital_analog_signal VARCHAR, available_interface VARCHAR) ### ANSWER SELECT chipset_based_on FROM table_name_18 WHERE digital_analog_signal = "analog" AND available_interface = "agp" AND retail_name = "all-in-wonder 9800"</s>
{ "answer": "SELECT chipset_based_on FROM table_name_18 WHERE digital_analog_signal = \"analog\" AND available_interface = \"agp\" AND retail_name = \"all-in-wonder 9800\"", "context": "CREATE TABLE table_name_18 (chipset_based_on VARCHAR, retail_name VARCHAR, digital_analog_signal VARCHAR, available_interface VARCHAR)", "question": "What is the Chipset based on with a Digital/analog signal of analog, with an Available interface of agp, with Retail name with all-in-wonder 9800?" }
### QUESTION Orbital period of 89 to 128 min has what specific orbital energy? ### CONTEXT CREATE TABLE table_name_73 (specific_orbital_energy VARCHAR, orbital_period VARCHAR) ### ANSWER SELECT specific_orbital_energy FROM table_name_73 WHERE orbital_period = "89 to 128 min"</s>
{ "answer": "SELECT specific_orbital_energy FROM table_name_73 WHERE orbital_period = \"89 to 128 min\"", "context": "CREATE TABLE table_name_73 (specific_orbital_energy VARCHAR, orbital_period VARCHAR)", "question": "Orbital period of 89 to 128 min has what specific orbital energy?" }
### QUESTION center-to-center distance of 6,900 to 46,300 km involves which orbital period? ### CONTEXT CREATE TABLE table_name_69 (orbital_period VARCHAR, center_to_center_distance VARCHAR) ### ANSWER SELECT orbital_period FROM table_name_69 WHERE center_to_center_distance = "6,900 to 46,300 km"</s>
{ "answer": "SELECT orbital_period FROM table_name_69 WHERE center_to_center_distance = \"6,900 to 46,300 km\"", "context": "CREATE TABLE table_name_69 (orbital_period VARCHAR, center_to_center_distance VARCHAR)", "question": "center-to-center distance of 6,900 to 46,300 km involves which orbital period?" }
### QUESTION What is Zamri Hassan's lowest Malaysia Cup when there were an FA Cup of 0? ### CONTEXT CREATE TABLE table_name_74 (malaysia_cup INTEGER, player VARCHAR, fa_cup VARCHAR) ### ANSWER SELECT MIN(malaysia_cup) FROM table_name_74 WHERE player = "zamri hassan" AND fa_cup < 0</s>
{ "answer": "SELECT MIN(malaysia_cup) FROM table_name_74 WHERE player = \"zamri hassan\" AND fa_cup < 0", "context": "CREATE TABLE table_name_74 (malaysia_cup INTEGER, player VARCHAR, fa_cup VARCHAR)", "question": "What is Zamri Hassan's lowest Malaysia Cup when there were an FA Cup of 0?" }
### QUESTION How many Bronze medals did Switzerland with less than 3 Silver medals receive? ### CONTEXT CREATE TABLE table_name_75 (bronze INTEGER, nation VARCHAR, silver VARCHAR) ### ANSWER SELECT MIN(bronze) FROM table_name_75 WHERE nation = "switzerland" AND silver < 3</s>
{ "answer": "SELECT MIN(bronze) FROM table_name_75 WHERE nation = \"switzerland\" AND silver < 3", "context": "CREATE TABLE table_name_75 (bronze INTEGER, nation VARCHAR, silver VARCHAR)", "question": "How many Bronze medals did Switzerland with less than 3 Silver medals receive?" }
### QUESTION Tell me the format with year more than 2000 and label of myuzyk with catalog number of mzykn08 ### CONTEXT CREATE TABLE table_name_48 (format VARCHAR, catalog_number VARCHAR, year VARCHAR, label VARCHAR) ### ANSWER SELECT format FROM table_name_48 WHERE year > 2000 AND label = "myuzyk" AND catalog_number = "mzykn08"</s>
{ "answer": "SELECT format FROM table_name_48 WHERE year > 2000 AND label = \"myuzyk\" AND catalog_number = \"mzykn08\"", "context": "CREATE TABLE table_name_48 (format VARCHAR, catalog_number VARCHAR, year VARCHAR, label VARCHAR)", "question": "Tell me the format with year more than 2000 and label of myuzyk with catalog number of mzykn08" }
### QUESTION Name the sscore for world cup qualifying october 15, 2008 ### CONTEXT CREATE TABLE table_name_49 (score VARCHAR, competition VARCHAR, date VARCHAR) ### ANSWER SELECT score FROM table_name_49 WHERE competition = "world cup qualifying" AND date = "october 15, 2008"</s>
{ "answer": "SELECT score FROM table_name_49 WHERE competition = \"world cup qualifying\" AND date = \"october 15, 2008\"", "context": "CREATE TABLE table_name_49 (score VARCHAR, competition VARCHAR, date VARCHAR)", "question": "Name the sscore for world cup qualifying october 15, 2008" }
### QUESTION When did the game in whalley range take place? ### CONTEXT CREATE TABLE table_name_87 (date VARCHAR, h___a VARCHAR) ### ANSWER SELECT date FROM table_name_87 WHERE h___a = "whalley range"</s>
{ "answer": "SELECT date FROM table_name_87 WHERE h___a = \"whalley range\"", "context": "CREATE TABLE table_name_87 (date VARCHAR, h___a VARCHAR)", "question": "When did the game in whalley range take place?" }
### QUESTION Which District has a Party of republican and a Result of lost re-election democratic gain? ### CONTEXT CREATE TABLE table_name_82 (district VARCHAR, party VARCHAR, result VARCHAR) ### ANSWER SELECT district FROM table_name_82 WHERE party = "republican" AND result = "lost re-election democratic gain"</s>
{ "answer": "SELECT district FROM table_name_82 WHERE party = \"republican\" AND result = \"lost re-election democratic gain\"", "context": "CREATE TABLE table_name_82 (district VARCHAR, party VARCHAR, result VARCHAR)", "question": "Which District has a Party of republican and a Result of lost re-election democratic gain?" }
### QUESTION What is the average amount of floors of the building that is ranked larger than 30, a year prior to 1977 and an address of 100 Van Ness Avenue? ### CONTEXT CREATE TABLE table_name_6 (floors INTEGER, name VARCHAR, rank VARCHAR, year VARCHAR) ### ANSWER SELECT AVG(floors) FROM table_name_6 WHERE rank > 30 AND year < 1977 AND name = "100 van ness avenue"</s>
{ "answer": "SELECT AVG(floors) FROM table_name_6 WHERE rank > 30 AND year < 1977 AND name = \"100 van ness avenue\"", "context": "CREATE TABLE table_name_6 (floors INTEGER, name VARCHAR, rank VARCHAR, year VARCHAR)", "question": "What is the average amount of floors of the building that is ranked larger than 30, a year prior to 1977 and an address of 100 Van Ness Avenue?" }
### QUESTION Name the episode number that aired on july 23, 2000 ### CONTEXT CREATE TABLE table_name_34 (episode__number VARCHAR, original_airdate VARCHAR) ### ANSWER SELECT episode__number FROM table_name_34 WHERE original_airdate = "july 23, 2000"</s>
{ "answer": "SELECT episode__number FROM table_name_34 WHERE original_airdate = \"july 23, 2000\"", "context": "CREATE TABLE table_name_34 (episode__number VARCHAR, original_airdate VARCHAR)", "question": "Name the episode number that aired on july 23, 2000" }
### QUESTION What is the wheel arrangement of the locomotive with number 6 or 4? ### CONTEXT CREATE TABLE table_name_95 (wheel_arrangement VARCHAR, number VARCHAR) ### ANSWER SELECT wheel_arrangement FROM table_name_95 WHERE number = "6 or 4"</s>
{ "answer": "SELECT wheel_arrangement FROM table_name_95 WHERE number = \"6 or 4\"", "context": "CREATE TABLE table_name_95 (wheel_arrangement VARCHAR, number VARCHAR)", "question": "What is the wheel arrangement of the locomotive with number 6 or 4?" }
### QUESTION Which Set 1 has a Date of 24 may, and a Total of 57–75? ### CONTEXT CREATE TABLE table_name_37 (set_1 VARCHAR, date VARCHAR, total VARCHAR) ### ANSWER SELECT set_1 FROM table_name_37 WHERE date = "24 may" AND total = "57–75"</s>
{ "answer": "SELECT set_1 FROM table_name_37 WHERE date = \"24 may\" AND total = \"57–75\"", "context": "CREATE TABLE table_name_37 (set_1 VARCHAR, date VARCHAR, total VARCHAR)", "question": "Which Set 1 has a Date of 24 may, and a Total of 57–75?" }
### QUESTION What team had less than 291 total points whole having 76 bronze and over 21 gold? ### CONTEXT CREATE TABLE table_name_67 (silver INTEGER, total VARCHAR, gold VARCHAR, bronze VARCHAR) ### ANSWER SELECT SUM(silver) FROM table_name_67 WHERE gold > 21 AND bronze = 76 AND total < 291</s>
{ "answer": "SELECT SUM(silver) FROM table_name_67 WHERE gold > 21 AND bronze = 76 AND total < 291", "context": "CREATE TABLE table_name_67 (silver INTEGER, total VARCHAR, gold VARCHAR, bronze VARCHAR)", "question": "What team had less than 291 total points whole having 76 bronze and over 21 gold?" }
### QUESTION When they were playing the detroit lions at tampa stadium, what was the score? ### CONTEXT CREATE TABLE table_name_49 (result VARCHAR, game_site VARCHAR, opponent VARCHAR) ### ANSWER SELECT result FROM table_name_49 WHERE game_site = "tampa stadium" AND opponent = "detroit lions"</s>
{ "answer": "SELECT result FROM table_name_49 WHERE game_site = \"tampa stadium\" AND opponent = \"detroit lions\"", "context": "CREATE TABLE table_name_49 (result VARCHAR, game_site VARCHAR, opponent VARCHAR)", "question": "When they were playing the detroit lions at tampa stadium, what was the score?" }
### QUESTION How many times was the total more than 1, the nation was east germany and silver was more than 1? ### CONTEXT CREATE TABLE table_name_25 (bronze VARCHAR, silver VARCHAR, total VARCHAR, nation VARCHAR) ### ANSWER SELECT COUNT(bronze) FROM table_name_25 WHERE total > 1 AND nation = "east germany" AND silver > 1</s>
{ "answer": "SELECT COUNT(bronze) FROM table_name_25 WHERE total > 1 AND nation = \"east germany\" AND silver > 1", "context": "CREATE TABLE table_name_25 (bronze VARCHAR, silver VARCHAR, total VARCHAR, nation VARCHAR)", "question": "How many times was the total more than 1, the nation was east germany and silver was more than 1?" }
### QUESTION What is the IHSAA class in Batesville? ### CONTEXT CREATE TABLE table_name_97 (ihsaa_class VARCHAR, city VARCHAR) ### ANSWER SELECT ihsaa_class FROM table_name_97 WHERE city = "batesville"</s>
{ "answer": "SELECT ihsaa_class FROM table_name_97 WHERE city = \"batesville\"", "context": "CREATE TABLE table_name_97 (ihsaa_class VARCHAR, city VARCHAR)", "question": "What is the IHSAA class in Batesville?" }
### QUESTION I want the outgoing manager for 19 february ### CONTEXT CREATE TABLE table_name_57 (outgoing_manager VARCHAR, date_of_appointment VARCHAR) ### ANSWER SELECT outgoing_manager FROM table_name_57 WHERE date_of_appointment = "19 february"</s>
{ "answer": "SELECT outgoing_manager FROM table_name_57 WHERE date_of_appointment = \"19 february\"", "context": "CREATE TABLE table_name_57 (outgoing_manager VARCHAR, date_of_appointment VARCHAR)", "question": "I want the outgoing manager for 19 february" }
### QUESTION I want the team with replaced by being csaba lászló ### CONTEXT CREATE TABLE table_name_24 (team VARCHAR, replaced_by VARCHAR) ### ANSWER SELECT team FROM table_name_24 WHERE replaced_by = "csaba lászló"</s>
{ "answer": "SELECT team FROM table_name_24 WHERE replaced_by = \"csaba lászló\"", "context": "CREATE TABLE table_name_24 (team VARCHAR, replaced_by VARCHAR)", "question": "I want the team with replaced by being csaba lászló" }
### QUESTION Which Vertices have a Dual Archimedean solid of truncated dodecahedron? ### CONTEXT CREATE TABLE table_name_28 (vertices INTEGER, dual_archimedean_solid VARCHAR) ### ANSWER SELECT MAX(vertices) FROM table_name_28 WHERE dual_archimedean_solid = "truncated dodecahedron"</s>
{ "answer": "SELECT MAX(vertices) FROM table_name_28 WHERE dual_archimedean_solid = \"truncated dodecahedron\"", "context": "CREATE TABLE table_name_28 (vertices INTEGER, dual_archimedean_solid VARCHAR)", "question": "Which Vertices have a Dual Archimedean solid of truncated dodecahedron?" }
### QUESTION Which Faces have a Dual Archimedean solid of truncated icosahedron, and Vertices larger than 32? ### CONTEXT CREATE TABLE table_name_39 (faces INTEGER, dual_archimedean_solid VARCHAR, vertices VARCHAR) ### ANSWER SELECT AVG(faces) FROM table_name_39 WHERE dual_archimedean_solid = "truncated icosahedron" AND vertices > 32</s>
{ "answer": "SELECT AVG(faces) FROM table_name_39 WHERE dual_archimedean_solid = \"truncated icosahedron\" AND vertices > 32", "context": "CREATE TABLE table_name_39 (faces INTEGER, dual_archimedean_solid VARCHAR, vertices VARCHAR)", "question": "Which Faces have a Dual Archimedean solid of truncated icosahedron, and Vertices larger than 32?" }
### QUESTION Which Set 3 has a Score of 3–2, and a Set 2 of 25–23, and a Time of 19:00? ### CONTEXT CREATE TABLE table_name_86 (set_3 VARCHAR, time VARCHAR, score VARCHAR, set_2 VARCHAR) ### ANSWER SELECT set_3 FROM table_name_86 WHERE score = "3–2" AND set_2 = "25–23" AND time = "19:00"</s>
{ "answer": "SELECT set_3 FROM table_name_86 WHERE score = \"3–2\" AND set_2 = \"25–23\" AND time = \"19:00\"", "context": "CREATE TABLE table_name_86 (set_3 VARCHAR, time VARCHAR, score VARCHAR, set_2 VARCHAR)", "question": "Which Set 3 has a Score of 3–2, and a Set 2 of 25–23, and a Time of 19:00?" }
### QUESTION What is the namesake of Ayashe at a longitude less than 270.7, latitude more than -47.1, and a diameter less than 7.2? ### CONTEXT CREATE TABLE table_name_87 (named VARCHAR, name VARCHAR, diameter__km_ VARCHAR, longitude VARCHAR, latitude VARCHAR) ### ANSWER SELECT named AS after FROM table_name_87 WHERE longitude < 270.7 AND latitude > -47.1 AND diameter__km_ < 7.2 AND name = "ayashe"</s>
{ "answer": "SELECT named AS after FROM table_name_87 WHERE longitude < 270.7 AND latitude > -47.1 AND diameter__km_ < 7.2 AND name = \"ayashe\"", "context": "CREATE TABLE table_name_87 (named VARCHAR, name VARCHAR, diameter__km_ VARCHAR, longitude VARCHAR, latitude VARCHAR)", "question": "What is the namesake of Ayashe at a longitude less than 270.7, latitude more than -47.1, and a diameter less than 7.2?" }
### QUESTION Which driver was in all rounds as an entrant of Motor Racing Developments? ### CONTEXT CREATE TABLE table_name_6 (driver VARCHAR, rounds VARCHAR, entrant VARCHAR) ### ANSWER SELECT driver FROM table_name_6 WHERE rounds = "all" AND entrant = "motor racing developments"</s>
{ "answer": "SELECT driver FROM table_name_6 WHERE rounds = \"all\" AND entrant = \"motor racing developments\"", "context": "CREATE TABLE table_name_6 (driver VARCHAR, rounds VARCHAR, entrant VARCHAR)", "question": "Which driver was in all rounds as an entrant of Motor Racing Developments?" }
### QUESTION What college or club did the round 9 draft pick from Canada come from? ### CONTEXT CREATE TABLE table_name_11 (college_junior_club_team__league_ VARCHAR, round VARCHAR, nationality VARCHAR) ### ANSWER SELECT college_junior_club_team__league_ FROM table_name_11 WHERE round = 9 AND nationality = "canada"</s>
{ "answer": "SELECT college_junior_club_team__league_ FROM table_name_11 WHERE round = 9 AND nationality = \"canada\"", "context": "CREATE TABLE table_name_11 (college_junior_club_team__league_ VARCHAR, round VARCHAR, nationality VARCHAR)", "question": "What college or club did the round 9 draft pick from Canada come from?" }
### QUESTION When in November were they 11-7-3 with over 21 games? ### CONTEXT CREATE TABLE table_name_80 (november INTEGER, record VARCHAR, game VARCHAR) ### ANSWER SELECT MAX(november) FROM table_name_80 WHERE record = "11-7-3" AND game > 21</s>
{ "answer": "SELECT MAX(november) FROM table_name_80 WHERE record = \"11-7-3\" AND game > 21", "context": "CREATE TABLE table_name_80 (november INTEGER, record VARCHAR, game VARCHAR)", "question": "When in November were they 11-7-3 with over 21 games?" }
### QUESTION I want to know the total number of national university of ireland with agricultural panel of 0 and labour panel more than 0 ### CONTEXT CREATE TABLE table_name_34 (national_university_of_ireland VARCHAR, agricultural_panel VARCHAR, labour_panel VARCHAR) ### ANSWER SELECT COUNT(national_university_of_ireland) FROM table_name_34 WHERE agricultural_panel = 0 AND labour_panel > 0</s>
{ "answer": "SELECT COUNT(national_university_of_ireland) FROM table_name_34 WHERE agricultural_panel = 0 AND labour_panel > 0", "context": "CREATE TABLE table_name_34 (national_university_of_ireland VARCHAR, agricultural_panel VARCHAR, labour_panel VARCHAR)", "question": "I want to know the total number of national university of ireland with agricultural panel of 0 and labour panel more than 0" }
### QUESTION Tell me the total number of administrative panel with labour panel more than 2, nominated by taoiseach more than 6 and total of 28 ### CONTEXT CREATE TABLE table_name_59 (administrative_panel VARCHAR, nominated_by_the_taoiseach VARCHAR, labour_panel VARCHAR, total VARCHAR) ### ANSWER SELECT COUNT(administrative_panel) FROM table_name_59 WHERE labour_panel > 2 AND total = 28 AND nominated_by_the_taoiseach > 6</s>
{ "answer": "SELECT COUNT(administrative_panel) FROM table_name_59 WHERE labour_panel > 2 AND total = 28 AND nominated_by_the_taoiseach > 6", "context": "CREATE TABLE table_name_59 (administrative_panel VARCHAR, nominated_by_the_taoiseach VARCHAR, labour_panel VARCHAR, total VARCHAR)", "question": "Tell me the total number of administrative panel with labour panel more than 2, nominated by taoiseach more than 6 and total of 28" }
### QUESTION What was the away team score at Hawthorn's home game? ### CONTEXT CREATE TABLE table_name_28 (away_team VARCHAR, home_team VARCHAR) ### ANSWER SELECT away_team AS score FROM table_name_28 WHERE home_team = "hawthorn"</s>
{ "answer": "SELECT away_team AS score FROM table_name_28 WHERE home_team = \"hawthorn\"", "context": "CREATE TABLE table_name_28 (away_team VARCHAR, home_team VARCHAR)", "question": "What was the away team score at Hawthorn's home game?" }
### QUESTION What is the lowest game number on February 20? ### CONTEXT CREATE TABLE table_name_69 (game INTEGER, date VARCHAR) ### ANSWER SELECT MIN(game) FROM table_name_69 WHERE date = "february 20"</s>
{ "answer": "SELECT MIN(game) FROM table_name_69 WHERE date = \"february 20\"", "context": "CREATE TABLE table_name_69 (game INTEGER, date VARCHAR)", "question": "What is the lowest game number on February 20?" }