text
stringlengths
150
1.06k
source
dict
### QUESTION When playing on grass who was the opponents in a year greater than 1993, and playing with Jonas Björkman? ### CONTEXT CREATE TABLE table_name_10 (opponents VARCHAR, partner VARCHAR, surface VARCHAR, year VARCHAR) ### ANSWER SELECT opponents FROM table_name_10 WHERE surface = "grass" AND year > 1993 AND partner = "jonas björkman"</s>
{ "answer": "SELECT opponents FROM table_name_10 WHERE surface = \"grass\" AND year > 1993 AND partner = \"jonas björkman\"", "context": "CREATE TABLE table_name_10 (opponents VARCHAR, partner VARCHAR, surface VARCHAR, year VARCHAR)", "question": "When playing on grass who was the opponents in a year greater than 1993, and playing with Jonas Björkman?" }
### QUESTION What is the ICAO for Riyadh, Saudi Arabia? ### CONTEXT CREATE TABLE table_name_35 (icao VARCHAR, country VARCHAR, city VARCHAR) ### ANSWER SELECT icao FROM table_name_35 WHERE country = "saudi arabia" AND city = "riyadh"</s>
{ "answer": "SELECT icao FROM table_name_35 WHERE country = \"saudi arabia\" AND city = \"riyadh\"", "context": "CREATE TABLE table_name_35 (icao VARCHAR, country VARCHAR, city VARCHAR)", "question": "What is the ICAO for Riyadh, Saudi Arabia?" }
### QUESTION How many totals have 0 as Gold, a bronze greater than 1, and a silver less than 1? ### CONTEXT CREATE TABLE table_name_94 (total VARCHAR, silver VARCHAR, gold VARCHAR, bronze VARCHAR) ### ANSWER SELECT COUNT(total) FROM table_name_94 WHERE gold = 0 AND bronze > 1 AND silver < 1</s>
{ "answer": "SELECT COUNT(total) FROM table_name_94 WHERE gold = 0 AND bronze > 1 AND silver < 1", "context": "CREATE TABLE table_name_94 (total VARCHAR, silver VARCHAR, gold VARCHAR, bronze VARCHAR)", "question": "How many totals have 0 as Gold, a bronze greater than 1, and a silver less than 1?" }
### QUESTION What was Lee Smith's highest number of goals when he made fewer than 364 appearances? ### CONTEXT CREATE TABLE table_name_51 (goals INTEGER, name VARCHAR, appearances VARCHAR) ### ANSWER SELECT MAX(goals) FROM table_name_51 WHERE name = "lee smith" AND appearances < 364</s>
{ "answer": "SELECT MAX(goals) FROM table_name_51 WHERE name = \"lee smith\" AND appearances < 364", "context": "CREATE TABLE table_name_51 (goals INTEGER, name VARCHAR, appearances VARCHAR)", "question": "What was Lee Smith's highest number of goals when he made fewer than 364 appearances?" }
### QUESTION What driver has 5 as the zan 2? ### CONTEXT CREATE TABLE table_name_69 (driver VARCHAR, zan_2 VARCHAR) ### ANSWER SELECT driver FROM table_name_69 WHERE zan_2 = "5"</s>
{ "answer": "SELECT driver FROM table_name_69 WHERE zan_2 = \"5\"", "context": "CREATE TABLE table_name_69 (driver VARCHAR, zan_2 VARCHAR)", "question": "What driver has 5 as the zan 2?" }
### QUESTION What is the Away captain when the Result was draw, and a Venue of lord's? ### CONTEXT CREATE TABLE table_name_72 (away_captain VARCHAR, result VARCHAR, venue VARCHAR) ### ANSWER SELECT away_captain FROM table_name_72 WHERE result = "draw" AND venue = "lord's"</s>
{ "answer": "SELECT away_captain FROM table_name_72 WHERE result = \"draw\" AND venue = \"lord's\"", "context": "CREATE TABLE table_name_72 (away_captain VARCHAR, result VARCHAR, venue VARCHAR)", "question": "What is the Away captain when the Result was draw, and a Venue of lord's?" }
### QUESTION Which lane ranked less than 4 for the Netherlands? ### CONTEXT CREATE TABLE table_name_4 (lane VARCHAR, rank VARCHAR, nationality VARCHAR) ### ANSWER SELECT lane FROM table_name_4 WHERE rank < 4 AND nationality = "netherlands"</s>
{ "answer": "SELECT lane FROM table_name_4 WHERE rank < 4 AND nationality = \"netherlands\"", "context": "CREATE TABLE table_name_4 (lane VARCHAR, rank VARCHAR, nationality VARCHAR)", "question": "Which lane ranked less than 4 for the Netherlands?" }
### QUESTION What was the winning score in the Alfred Dunhill links championship? ### CONTEXT CREATE TABLE table_name_35 (winning_score VARCHAR, tournament VARCHAR) ### ANSWER SELECT winning_score FROM table_name_35 WHERE tournament = "alfred dunhill links championship"</s>
{ "answer": "SELECT winning_score FROM table_name_35 WHERE tournament = \"alfred dunhill links championship\"", "context": "CREATE TABLE table_name_35 (winning_score VARCHAR, tournament VARCHAR)", "question": "What was the winning score in the Alfred Dunhill links championship?" }
### QUESTION What is the Score of the match on a clay surface with an outcome of winner, at the tournament ciudad juárez, and an Opponent in the final of estefania craciún? ### CONTEXT CREATE TABLE table_name_48 (score VARCHAR, opponent_in_the_final VARCHAR, tournament VARCHAR, surface VARCHAR, outcome VARCHAR) ### ANSWER SELECT score FROM table_name_48 WHERE surface = "clay" AND outcome = "winner" AND tournament = "ciudad juárez" AND opponent_in_the_final = "estefania craciún"</s>
{ "answer": "SELECT score FROM table_name_48 WHERE surface = \"clay\" AND outcome = \"winner\" AND tournament = \"ciudad juárez\" AND opponent_in_the_final = \"estefania craciún\"", "context": "CREATE TABLE table_name_48 (score VARCHAR, opponent_in_the_final VARCHAR, tournament VARCHAR, surface VARCHAR, outcome VARCHAR)", "question": "What is the Score of the match on a clay surface with an outcome of winner, at the tournament ciudad juárez, and an Opponent in the final of estefania craciún?" }
### QUESTION What is the frequency of the Turion 64 X2 TL-62? ### CONTEXT CREATE TABLE table_name_8 (frequency VARCHAR, model_number VARCHAR) ### ANSWER SELECT frequency FROM table_name_8 WHERE model_number = "turion 64 x2 tl-62"</s>
{ "answer": "SELECT frequency FROM table_name_8 WHERE model_number = \"turion 64 x2 tl-62\"", "context": "CREATE TABLE table_name_8 (frequency VARCHAR, model_number VARCHAR)", "question": "What is the frequency of the Turion 64 X2 TL-62?" }
### QUESTION What is the socket type for the processor with a multiplier 1 of 11.5x? ### CONTEXT CREATE TABLE table_name_66 (socket VARCHAR, multiplier_1 VARCHAR) ### ANSWER SELECT socket FROM table_name_66 WHERE multiplier_1 = "11.5x"</s>
{ "answer": "SELECT socket FROM table_name_66 WHERE multiplier_1 = \"11.5x\"", "context": "CREATE TABLE table_name_66 (socket VARCHAR, multiplier_1 VARCHAR)", "question": "What is the socket type for the processor with a multiplier 1 of 11.5x?" }
### QUESTION What LINER class has a W.A. of 0-6-0st with a 2 No. Built? ### CONTEXT CREATE TABLE table_name_44 (lner_class VARCHAR, wa VARCHAR, no_built VARCHAR) ### ANSWER SELECT lner_class FROM table_name_44 WHERE wa = "0-6-0st" AND no_built = 2</s>
{ "answer": "SELECT lner_class FROM table_name_44 WHERE wa = \"0-6-0st\" AND no_built = 2", "context": "CREATE TABLE table_name_44 (lner_class VARCHAR, wa VARCHAR, no_built VARCHAR)", "question": "What LINER class has a W.A. of 0-6-0st with a 2 No. Built?" }
### QUESTION How many pints does the Cambrian Welfare RFC have? ### CONTEXT CREATE TABLE table_name_50 (points_for VARCHAR, club VARCHAR) ### ANSWER SELECT points_for FROM table_name_50 WHERE club = "cambrian welfare rfc"</s>
{ "answer": "SELECT points_for FROM table_name_50 WHERE club = \"cambrian welfare rfc\"", "context": "CREATE TABLE table_name_50 (points_for VARCHAR, club VARCHAR)", "question": "How many pints does the Cambrian Welfare RFC have?" }
### QUESTION What is the highest Rank with a density less than 376.37, the province was valverde, and an Area larger than 823? ### CONTEXT CREATE TABLE table_name_68 (rank INTEGER, area VARCHAR, density VARCHAR, province VARCHAR) ### ANSWER SELECT MAX(rank) FROM table_name_68 WHERE density < 376.37 AND province = "valverde" AND area > 823</s>
{ "answer": "SELECT MAX(rank) FROM table_name_68 WHERE density < 376.37 AND province = \"valverde\" AND area > 823", "context": "CREATE TABLE table_name_68 (rank INTEGER, area VARCHAR, density VARCHAR, province VARCHAR)", "question": "What is the highest Rank with a density less than 376.37, the province was valverde, and an Area larger than 823?" }
### QUESTION What is the lowest rank that the protestants population holds? ### CONTEXT CREATE TABLE table_name_67 (rank INTEGER, name VARCHAR) ### ANSWER SELECT MIN(rank) FROM table_name_67 WHERE name = "protestants population"</s>
{ "answer": "SELECT MIN(rank) FROM table_name_67 WHERE name = \"protestants population\"", "context": "CREATE TABLE table_name_67 (rank INTEGER, name VARCHAR)", "question": "What is the lowest rank that the protestants population holds?" }
### QUESTION What is the result on Saturday when it's रविवार ravivār on Sunday and मंगळवार mangaḷavār on Tuesday? ### CONTEXT CREATE TABLE table_name_41 (saturday_shani__saturn_ VARCHAR, sunday_surya__the_sun_ VARCHAR, tuesday_mangala__mars_ VARCHAR) ### ANSWER SELECT saturday_shani__saturn_ FROM table_name_41 WHERE sunday_surya__the_sun_ = "रविवार ravivār" AND tuesday_mangala__mars_ = "मंगळवार mangaḷavār"</s>
{ "answer": "SELECT saturday_shani__saturn_ FROM table_name_41 WHERE sunday_surya__the_sun_ = \"रविवार ravivār\" AND tuesday_mangala__mars_ = \"मंगळवार mangaḷavār\"", "context": "CREATE TABLE table_name_41 (saturday_shani__saturn_ VARCHAR, sunday_surya__the_sun_ VARCHAR, tuesday_mangala__mars_ VARCHAR)", "question": "What is the result on Saturday when it's रविवार ravivār on Sunday and मंगळवार mangaḷavār on Tuesday?" }
### QUESTION What is the result on Sunday that's सोमवार somavār on Monday and मंगलवार mangalavār on Tuesday? ### CONTEXT CREATE TABLE table_name_29 (sunday_surya__the_sun_ VARCHAR, monday_soma__the_moon_ VARCHAR, tuesday_mangala__mars_ VARCHAR) ### ANSWER SELECT sunday_surya__the_sun_ FROM table_name_29 WHERE monday_soma__the_moon_ = "सोमवार somavār" AND tuesday_mangala__mars_ = "मंगलवार mangalavār"</s>
{ "answer": "SELECT sunday_surya__the_sun_ FROM table_name_29 WHERE monday_soma__the_moon_ = \"सोमवार somavār\" AND tuesday_mangala__mars_ = \"मंगलवार mangalavār\"", "context": "CREATE TABLE table_name_29 (sunday_surya__the_sun_ VARCHAR, monday_soma__the_moon_ VARCHAR, tuesday_mangala__mars_ VARCHAR)", "question": "What is the result on Sunday that's सोमवार somavār on Monday and मंगलवार mangalavār on Tuesday?" }
### QUESTION What was album of the year after 2009? ### CONTEXT CREATE TABLE table_name_99 (result VARCHAR, year VARCHAR, category VARCHAR) ### ANSWER SELECT result FROM table_name_99 WHERE year > 2009 AND category = "album of the year"</s>
{ "answer": "SELECT result FROM table_name_99 WHERE year > 2009 AND category = \"album of the year\"", "context": "CREATE TABLE table_name_99 (result VARCHAR, year VARCHAR, category VARCHAR)", "question": "What was album of the year after 2009?" }
### QUESTION For a Lost of 10 and a Try Bonus of 4, what are the points against them? ### CONTEXT CREATE TABLE table_name_54 (points_against VARCHAR, try_bonus VARCHAR, lost VARCHAR) ### ANSWER SELECT points_against FROM table_name_54 WHERE try_bonus = "4" AND lost = "10"</s>
{ "answer": "SELECT points_against FROM table_name_54 WHERE try_bonus = \"4\" AND lost = \"10\"", "context": "CREATE TABLE table_name_54 (points_against VARCHAR, try_bonus VARCHAR, lost VARCHAR)", "question": "For a Lost of 10 and a Try Bonus of 4, what are the points against them?" }
### QUESTION Which player is the NHL right, who was born in Downers Grove, Illinois? ### CONTEXT CREATE TABLE table_name_7 (nhl_rights VARCHAR, _if_any VARCHAR, birthplace VARCHAR) ### ANSWER SELECT nhl_rights, _if_any FROM table_name_7 WHERE birthplace = "downers grove, illinois"</s>
{ "answer": "SELECT nhl_rights, _if_any FROM table_name_7 WHERE birthplace = \"downers grove, illinois\"", "context": "CREATE TABLE table_name_7 (nhl_rights VARCHAR, _if_any VARCHAR, birthplace VARCHAR)", "question": "Which player is the NHL right, who was born in Downers Grove, Illinois?" }
### QUESTION What is the nationality of the School/Club team of Louisville? ### CONTEXT CREATE TABLE table_name_43 (nationality VARCHAR, school_club_team VARCHAR) ### ANSWER SELECT nationality FROM table_name_43 WHERE school_club_team = "louisville"</s>
{ "answer": "SELECT nationality FROM table_name_43 WHERE school_club_team = \"louisville\"", "context": "CREATE TABLE table_name_43 (nationality VARCHAR, school_club_team VARCHAR)", "question": "What is the nationality of the School/Club team of Louisville?" }
### QUESTION Name the sum of population 1.1.2008 for tønsberg and population 1.1.2006 more than 45.447 ### CONTEXT CREATE TABLE table_name_62 (population_112008 INTEGER, urban_area VARCHAR, population_112006 VARCHAR) ### ANSWER SELECT SUM(population_112008) FROM table_name_62 WHERE urban_area = "tønsberg" AND population_112006 > 45.447</s>
{ "answer": "SELECT SUM(population_112008) FROM table_name_62 WHERE urban_area = \"tønsberg\" AND population_112006 > 45.447", "context": "CREATE TABLE table_name_62 (population_112008 INTEGER, urban_area VARCHAR, population_112006 VARCHAR)", "question": "Name the sum of population 1.1.2008 for tønsberg and population 1.1.2006 more than 45.447" }
### QUESTION Which country had more than 2 silvers and less than 4 golds? ### CONTEXT CREATE TABLE table_name_65 (nation VARCHAR, silver VARCHAR, gold VARCHAR) ### ANSWER SELECT nation FROM table_name_65 WHERE silver > 2 AND gold < 4</s>
{ "answer": "SELECT nation FROM table_name_65 WHERE silver > 2 AND gold < 4", "context": "CREATE TABLE table_name_65 (nation VARCHAR, silver VARCHAR, gold VARCHAR)", "question": "Which country had more than 2 silvers and less than 4 golds?" }
### QUESTION In the 2005 season, how many races did the 15th place team complete? ### CONTEXT CREATE TABLE table_name_98 (races INTEGER, final_placing VARCHAR, season VARCHAR) ### ANSWER SELECT AVG(races) FROM table_name_98 WHERE final_placing = "15th" AND season = "2005"</s>
{ "answer": "SELECT AVG(races) FROM table_name_98 WHERE final_placing = \"15th\" AND season = \"2005\"", "context": "CREATE TABLE table_name_98 (races INTEGER, final_placing VARCHAR, season VARCHAR)", "question": "In the 2005 season, how many races did the 15th place team complete?" }
### QUESTION What is the height of the fort peck dam which was built before 1968, is located in the united states and has a dam type of TE ? ### CONTEXT CREATE TABLE table_name_93 (structure_height_ VARCHAR, m VARCHAR, name VARCHAR, country VARCHAR, year VARCHAR, type VARCHAR) ### ANSWER SELECT structure_height_[m] FROM table_name_93 WHERE year < 1968 AND type = "te" AND country = "united states" AND name = "fort peck dam"</s>
{ "answer": "SELECT structure_height_[m] FROM table_name_93 WHERE year < 1968 AND type = \"te\" AND country = \"united states\" AND name = \"fort peck dam\"", "context": "CREATE TABLE table_name_93 (structure_height_ VARCHAR, m VARCHAR, name VARCHAR, country VARCHAR, year VARCHAR, type VARCHAR)", "question": "What is the height of the fort peck dam which was built before 1968, is located in the united states and has a dam type of TE ?" }
### QUESTION in what year were 2 points scored? ### CONTEXT CREATE TABLE table_name_19 (year INTEGER, points VARCHAR) ### ANSWER SELECT MAX(year) FROM table_name_19 WHERE points = "2"</s>
{ "answer": "SELECT MAX(year) FROM table_name_19 WHERE points = \"2\"", "context": "CREATE TABLE table_name_19 (year INTEGER, points VARCHAR)", "question": "in what year were 2 points scored?" }
### QUESTION What is the Location when the individual was josé maria cañizares? ### CONTEXT CREATE TABLE table_name_23 (location VARCHAR, individual VARCHAR) ### ANSWER SELECT location FROM table_name_23 WHERE individual = "josé maria cañizares"</s>
{ "answer": "SELECT location FROM table_name_23 WHERE individual = \"josé maria cañizares\"", "context": "CREATE TABLE table_name_23 (location VARCHAR, individual VARCHAR)", "question": "What is the Location when the individual was josé maria cañizares?" }
### QUESTION How many countries in 2009 have fewer than 1 in 1999, more than 0 in 2006 and none in 1997? ### CONTEXT CREATE TABLE table_name_49 (Id VARCHAR) ### ANSWER SELECT COUNT(2009) FROM table_name_49 WHERE 1999 < 1 AND 2006 > 0 AND 1997 < 0</s>
{ "answer": "SELECT COUNT(2009) FROM table_name_49 WHERE 1999 < 1 AND 2006 > 0 AND 1997 < 0", "context": "CREATE TABLE table_name_49 (Id VARCHAR)", "question": "How many countries in 2009 have fewer than 1 in 1999, more than 0 in 2006 and none in 1997?" }
### QUESTION What is the date of the Last Ballet Style Performance of Rhys kosakowski as Billy Elliot? ### CONTEXT CREATE TABLE table_name_7 (last_performance VARCHAR, style VARCHAR, name VARCHAR) ### ANSWER SELECT last_performance FROM table_name_7 WHERE style = "ballet" AND name = "rhys kosakowski"</s>
{ "answer": "SELECT last_performance FROM table_name_7 WHERE style = \"ballet\" AND name = \"rhys kosakowski\"", "context": "CREATE TABLE table_name_7 (last_performance VARCHAR, style VARCHAR, name VARCHAR)", "question": "What is the date of the Last Ballet Style Performance of Rhys kosakowski as Billy Elliot?" }
### QUESTION What year was the Grand Prix Passing Shot Bordeaux that had Runners-up of Diego Nargiso? ### CONTEXT CREATE TABLE table_name_96 (year VARCHAR, tournament_name VARCHAR, runners_up VARCHAR) ### ANSWER SELECT year FROM table_name_96 WHERE tournament_name = "grand prix passing shot bordeaux" AND runners_up = "diego nargiso"</s>
{ "answer": "SELECT year FROM table_name_96 WHERE tournament_name = \"grand prix passing shot bordeaux\" AND runners_up = \"diego nargiso\"", "context": "CREATE TABLE table_name_96 (year VARCHAR, tournament_name VARCHAR, runners_up VARCHAR)", "question": "What year was the Grand Prix Passing Shot Bordeaux that had Runners-up of Diego Nargiso?" }
### QUESTION After 1989, what was the score of the Grand Prix Passing Shot where the Runners-up were Jeff Tarango? ### CONTEXT CREATE TABLE table_name_65 (score VARCHAR, runners_up VARCHAR, year VARCHAR, tournament_name VARCHAR) ### ANSWER SELECT score FROM table_name_65 WHERE year > 1989 AND tournament_name = "grand prix passing shot" AND runners_up = "jeff tarango"</s>
{ "answer": "SELECT score FROM table_name_65 WHERE year > 1989 AND tournament_name = \"grand prix passing shot\" AND runners_up = \"jeff tarango\"", "context": "CREATE TABLE table_name_65 (score VARCHAR, runners_up VARCHAR, year VARCHAR, tournament_name VARCHAR)", "question": "After 1989, what was the score of the Grand Prix Passing Shot where the Runners-up were Jeff Tarango?" }
### QUESTION What engine does Garvey Team Lotus use? ### CONTEXT CREATE TABLE table_name_50 (engine VARCHAR, entrant VARCHAR) ### ANSWER SELECT engine FROM table_name_50 WHERE entrant = "garvey team lotus"</s>
{ "answer": "SELECT engine FROM table_name_50 WHERE entrant = \"garvey team lotus\"", "context": "CREATE TABLE table_name_50 (engine VARCHAR, entrant VARCHAR)", "question": "What engine does Garvey Team Lotus use?" }
### QUESTION Who was the constitutional ticket when william karlin was the socialist ticket? ### CONTEXT CREATE TABLE table_name_95 (constitutional_ticket VARCHAR, socialist_ticket VARCHAR) ### ANSWER SELECT constitutional_ticket FROM table_name_95 WHERE socialist_ticket = "william karlin"</s>
{ "answer": "SELECT constitutional_ticket FROM table_name_95 WHERE socialist_ticket = \"william karlin\"", "context": "CREATE TABLE table_name_95 (constitutional_ticket VARCHAR, socialist_ticket VARCHAR)", "question": "Who was the constitutional ticket when william karlin was the socialist ticket?" }
### QUESTION Where were the Pan American Games held? ### CONTEXT CREATE TABLE table_name_80 (venue VARCHAR, competition VARCHAR) ### ANSWER SELECT venue FROM table_name_80 WHERE competition = "pan american games"</s>
{ "answer": "SELECT venue FROM table_name_80 WHERE competition = \"pan american games\"", "context": "CREATE TABLE table_name_80 (venue VARCHAR, competition VARCHAR)", "question": "Where were the Pan American Games held?" }
### QUESTION What game, played on October 17 in front of 49,347 fans, had the lowest score? ### CONTEXT CREATE TABLE table_name_93 (game INTEGER, date VARCHAR, attendance VARCHAR) ### ANSWER SELECT MIN(game) FROM table_name_93 WHERE date = "october 17" AND attendance > 49 OFFSET 347</s>
{ "answer": "SELECT MIN(game) FROM table_name_93 WHERE date = \"october 17\" AND attendance > 49 OFFSET 347", "context": "CREATE TABLE table_name_93 (game INTEGER, date VARCHAR, attendance VARCHAR)", "question": "What game, played on October 17 in front of 49,347 fans, had the lowest score?" }
### QUESTION What is the highest Total Foreign-born (1000) from a non EU state (1000) of 685 and a population (1000) smaller than 10,666? ### CONTEXT CREATE TABLE table_name_53 (total_foreign_born__1000_ INTEGER, born_in_a_non_eu_state__1000_ VARCHAR, total_population__1000_ VARCHAR) ### ANSWER SELECT MAX(total_foreign_born__1000_) FROM table_name_53 WHERE born_in_a_non_eu_state__1000_ = 685 AND total_population__1000_ > 10 OFFSET 666</s>
{ "answer": "SELECT MAX(total_foreign_born__1000_) FROM table_name_53 WHERE born_in_a_non_eu_state__1000_ = 685 AND total_population__1000_ > 10 OFFSET 666", "context": "CREATE TABLE table_name_53 (total_foreign_born__1000_ INTEGER, born_in_a_non_eu_state__1000_ VARCHAR, total_population__1000_ VARCHAR)", "question": "What is the highest Total Foreign-born (1000) from a non EU state (1000) of 685 and a population (1000) smaller than 10,666?" }
### QUESTION What is the highest number born in a none EU state (1000) from Denmark with a total population (1000) less than 5,534? ### CONTEXT CREATE TABLE table_name_20 (born_in_a_non_eu_state__1000_ INTEGER, country VARCHAR, total_population__1000_ VARCHAR) ### ANSWER SELECT MAX(born_in_a_non_eu_state__1000_) FROM table_name_20 WHERE country = "denmark" AND total_population__1000_ < 5 OFFSET 534</s>
{ "answer": "SELECT MAX(born_in_a_non_eu_state__1000_) FROM table_name_20 WHERE country = \"denmark\" AND total_population__1000_ < 5 OFFSET 534", "context": "CREATE TABLE table_name_20 (born_in_a_non_eu_state__1000_ INTEGER, country VARCHAR, total_population__1000_ VARCHAR)", "question": "What is the highest number born in a none EU state (1000) from Denmark with a total population (1000) less than 5,534?" }
### QUESTION What is the greatest Total population (1000) from Sweden and born in a non EU state (1000) less than 859? ### CONTEXT CREATE TABLE table_name_79 (total_population__1000_ INTEGER, country VARCHAR, born_in_a_non_eu_state__1000_ VARCHAR) ### ANSWER SELECT MAX(total_population__1000_) FROM table_name_79 WHERE country = "sweden" AND born_in_a_non_eu_state__1000_ < 859</s>
{ "answer": "SELECT MAX(total_population__1000_) FROM table_name_79 WHERE country = \"sweden\" AND born_in_a_non_eu_state__1000_ < 859", "context": "CREATE TABLE table_name_79 (total_population__1000_ INTEGER, country VARCHAR, born_in_a_non_eu_state__1000_ VARCHAR)", "question": "What is the greatest Total population (1000) from Sweden and born in a non EU state (1000) less than 859?" }
### QUESTION How many ranks had 367 matches and more than 216 goals? ### CONTEXT CREATE TABLE table_name_94 (rank INTEGER, matches VARCHAR, goals VARCHAR) ### ANSWER SELECT SUM(rank) FROM table_name_94 WHERE matches = 367 AND goals > 216</s>
{ "answer": "SELECT SUM(rank) FROM table_name_94 WHERE matches = 367 AND goals > 216", "context": "CREATE TABLE table_name_94 (rank INTEGER, matches VARCHAR, goals VARCHAR)", "question": "How many ranks had 367 matches and more than 216 goals?" }
### QUESTION What episode number has an audience share of 10%? ### CONTEXT CREATE TABLE table_name_80 (episode_number VARCHAR, audience_share__average_ VARCHAR) ### ANSWER SELECT COUNT(episode_number) FROM table_name_80 WHERE audience_share__average_ = "10%"</s>
{ "answer": "SELECT COUNT(episode_number) FROM table_name_80 WHERE audience_share__average_ = \"10%\"", "context": "CREATE TABLE table_name_80 (episode_number VARCHAR, audience_share__average_ VARCHAR)", "question": "What episode number has an audience share of 10%?" }
### QUESTION What country is Yerevan located in? ### CONTEXT CREATE TABLE table_name_21 (country VARCHAR, city VARCHAR) ### ANSWER SELECT country FROM table_name_21 WHERE city = "yerevan"</s>
{ "answer": "SELECT country FROM table_name_21 WHERE city = \"yerevan\"", "context": "CREATE TABLE table_name_21 (country VARCHAR, city VARCHAR)", "question": "What country is Yerevan located in?" }
### QUESTION When were there less than 1 point with a cosworth v8 engine in jolly club switzerland? ### CONTEXT CREATE TABLE table_name_73 (year VARCHAR, entrant VARCHAR, points VARCHAR, engine VARCHAR) ### ANSWER SELECT year FROM table_name_73 WHERE points < 1 AND engine = "cosworth v8" AND entrant = "jolly club switzerland"</s>
{ "answer": "SELECT year FROM table_name_73 WHERE points < 1 AND engine = \"cosworth v8\" AND entrant = \"jolly club switzerland\"", "context": "CREATE TABLE table_name_73 (year VARCHAR, entrant VARCHAR, points VARCHAR, engine VARCHAR)", "question": "When were there less than 1 point with a cosworth v8 engine in jolly club switzerland?" }
### QUESTION Which team has an overall playoff of (0-0), a home record of (0-1) and played the Green Bay Blizzard team? ### CONTEXT CREATE TABLE table_name_74 (overall VARCHAR, opponent VARCHAR, plyff VARCHAR, home VARCHAR) ### ANSWER SELECT overall FROM table_name_74 WHERE plyff = "(0-0)" AND home = "(0-1)" AND opponent = "green bay blizzard"</s>
{ "answer": "SELECT overall FROM table_name_74 WHERE plyff = \"(0-0)\" AND home = \"(0-1)\" AND opponent = \"green bay blizzard\"", "context": "CREATE TABLE table_name_74 (overall VARCHAR, opponent VARCHAR, plyff VARCHAR, home VARCHAR)", "question": "Which team has an overall playoff of (0-0), a home record of (0-1) and played the Green Bay Blizzard team?" }
### QUESTION Name the most FA cup for championship of 18 and total of 19 ### CONTEXT CREATE TABLE table_name_74 (fa_cup INTEGER, championship VARCHAR, total VARCHAR) ### ANSWER SELECT MAX(fa_cup) FROM table_name_74 WHERE championship = 18 AND total = 19</s>
{ "answer": "SELECT MAX(fa_cup) FROM table_name_74 WHERE championship = 18 AND total = 19", "context": "CREATE TABLE table_name_74 (fa_cup INTEGER, championship VARCHAR, total VARCHAR)", "question": "Name the most FA cup for championship of 18 and total of 19" }
### QUESTION Who's Fourth District has a Second District of bob springstead? ### CONTEXT CREATE TABLE table_name_72 (fourth_district VARCHAR, second_district VARCHAR) ### ANSWER SELECT fourth_district FROM table_name_72 WHERE second_district = "bob springstead"</s>
{ "answer": "SELECT fourth_district FROM table_name_72 WHERE second_district = \"bob springstead\"", "context": "CREATE TABLE table_name_72 (fourth_district VARCHAR, second_district VARCHAR)", "question": "Who's Fourth District has a Second District of bob springstead?" }
### QUESTION What is the average first round for Utah Jazz team, with a weight smaller than 229? ### CONTEXT CREATE TABLE table_name_29 (first_round INTEGER, weight VARCHAR, team VARCHAR) ### ANSWER SELECT AVG(first_round) FROM table_name_29 WHERE weight < 229 AND team = "utah jazz"</s>
{ "answer": "SELECT AVG(first_round) FROM table_name_29 WHERE weight < 229 AND team = \"utah jazz\"", "context": "CREATE TABLE table_name_29 (first_round INTEGER, weight VARCHAR, team VARCHAR)", "question": "What is the average first round for Utah Jazz team, with a weight smaller than 229?" }
### QUESTION What is the month and year less than 5 German submarines were lost, less than 6893 were sunk by warship or raider, less than 133746 were sunk by aircraft, and more than 111263 were sunk by U-boat? ### CONTEXT CREATE TABLE table_name_24 (month VARCHAR, _year VARCHAR, sunk_by_u_boat VARCHAR, sunk_by_aircraft VARCHAR, german_submarines_lost VARCHAR, sunk_by_warship_or_raider VARCHAR) ### ANSWER SELECT month, _year FROM table_name_24 WHERE german_submarines_lost < 5 AND sunk_by_warship_or_raider < 6893 AND sunk_by_aircraft < 133746 AND sunk_by_u_boat > 111263</s>
{ "answer": "SELECT month, _year FROM table_name_24 WHERE german_submarines_lost < 5 AND sunk_by_warship_or_raider < 6893 AND sunk_by_aircraft < 133746 AND sunk_by_u_boat > 111263", "context": "CREATE TABLE table_name_24 (month VARCHAR, _year VARCHAR, sunk_by_u_boat VARCHAR, sunk_by_aircraft VARCHAR, german_submarines_lost VARCHAR, sunk_by_warship_or_raider VARCHAR)", "question": "What is the month and year less than 5 German submarines were lost, less than 6893 were sunk by warship or raider, less than 133746 were sunk by aircraft, and more than 111263 were sunk by U-boat?" }
### QUESTION What is the month and year less than 106005 were sunk by aircraft and 61857 were sunk by warship or raider? ### CONTEXT CREATE TABLE table_name_73 (month VARCHAR, _year VARCHAR, sunk_by_aircraft VARCHAR, sunk_by_warship_or_raider VARCHAR) ### ANSWER SELECT month, _year FROM table_name_73 WHERE sunk_by_aircraft < 106005 AND sunk_by_warship_or_raider = 61857</s>
{ "answer": "SELECT month, _year FROM table_name_73 WHERE sunk_by_aircraft < 106005 AND sunk_by_warship_or_raider = 61857", "context": "CREATE TABLE table_name_73 (month VARCHAR, _year VARCHAR, sunk_by_aircraft VARCHAR, sunk_by_warship_or_raider VARCHAR)", "question": "What is the month and year less than 106005 were sunk by aircraft and 61857 were sunk by warship or raider?" }
### QUESTION What is the mean huc example code when the example name's lower snake, there are 6 digits, and less than 3 levels? ### CONTEXT CREATE TABLE table_name_35 (example_code__huc_ INTEGER, level VARCHAR, example_name VARCHAR, digits VARCHAR) ### ANSWER SELECT AVG(example_code__huc_) FROM table_name_35 WHERE example_name = "lower snake" AND digits = 6 AND level < 3</s>
{ "answer": "SELECT AVG(example_code__huc_) FROM table_name_35 WHERE example_name = \"lower snake\" AND digits = 6 AND level < 3", "context": "CREATE TABLE table_name_35 (example_code__huc_ INTEGER, level VARCHAR, example_name VARCHAR, digits VARCHAR)", "question": "What is the mean huc example code when the example name's lower snake, there are 6 digits, and less than 3 levels?" }
### QUESTION What is the mean level number when the example name is lower snake and the approximate number is hus is less than 370? ### CONTEXT CREATE TABLE table_name_42 (level INTEGER, example_name VARCHAR, number_of_hus__approximate_ VARCHAR) ### ANSWER SELECT AVG(level) FROM table_name_42 WHERE example_name = "lower snake" AND number_of_hus__approximate_ < 370</s>
{ "answer": "SELECT AVG(level) FROM table_name_42 WHERE example_name = \"lower snake\" AND number_of_hus__approximate_ < 370", "context": "CREATE TABLE table_name_42 (level INTEGER, example_name VARCHAR, number_of_hus__approximate_ VARCHAR)", "question": "What is the mean level number when the example name is lower snake and the approximate number is hus is less than 370?" }
### QUESTION How many attendance numbers are associated with the site of Veterans Stadium before week 1? ### CONTEXT CREATE TABLE table_name_59 (attendance VARCHAR, game_site VARCHAR, week VARCHAR) ### ANSWER SELECT COUNT(attendance) FROM table_name_59 WHERE game_site = "veterans stadium" AND week < 1</s>
{ "answer": "SELECT COUNT(attendance) FROM table_name_59 WHERE game_site = \"veterans stadium\" AND week < 1", "context": "CREATE TABLE table_name_59 (attendance VARCHAR, game_site VARCHAR, week VARCHAR)", "question": "How many attendance numbers are associated with the site of Veterans Stadium before week 1?" }
### QUESTION Name the date when the surface was clay and the score was 6–1, 6–2 and runner-up ### CONTEXT CREATE TABLE table_name_6 (date VARCHAR, outcome VARCHAR, surface VARCHAR, score VARCHAR) ### ANSWER SELECT date FROM table_name_6 WHERE surface = "clay" AND score = "6–1, 6–2" AND outcome = "runner-up"</s>
{ "answer": "SELECT date FROM table_name_6 WHERE surface = \"clay\" AND score = \"6–1, 6–2\" AND outcome = \"runner-up\"", "context": "CREATE TABLE table_name_6 (date VARCHAR, outcome VARCHAR, surface VARCHAR, score VARCHAR)", "question": "Name the date when the surface was clay and the score was 6–1, 6–2 and runner-up" }
### QUESTION Name the tournament for outcome of winner and clay surface with opponent of aranza salut ### CONTEXT CREATE TABLE table_name_61 (tournament VARCHAR, opponent VARCHAR, outcome VARCHAR, surface VARCHAR) ### ANSWER SELECT tournament FROM table_name_61 WHERE outcome = "winner" AND surface = "clay" AND opponent = "aranza salut"</s>
{ "answer": "SELECT tournament FROM table_name_61 WHERE outcome = \"winner\" AND surface = \"clay\" AND opponent = \"aranza salut\"", "context": "CREATE TABLE table_name_61 (tournament VARCHAR, opponent VARCHAR, outcome VARCHAR, surface VARCHAR)", "question": "Name the tournament for outcome of winner and clay surface with opponent of aranza salut" }
### QUESTION What is Series, when Launch Date is 23 February 2013? ### CONTEXT CREATE TABLE table_name_16 (series VARCHAR, launch_date VARCHAR) ### ANSWER SELECT series FROM table_name_16 WHERE launch_date = "23 february 2013"</s>
{ "answer": "SELECT series FROM table_name_16 WHERE launch_date = \"23 february 2013\"", "context": "CREATE TABLE table_name_16 (series VARCHAR, launch_date VARCHAR)", "question": "What is Series, when Launch Date is 23 February 2013?" }
### QUESTION What is Highest Days, when Launch Date is 23 January 2010? ### CONTEXT CREATE TABLE table_name_16 (days INTEGER, launch_date VARCHAR) ### ANSWER SELECT MAX(days) FROM table_name_16 WHERE launch_date = "23 january 2010"</s>
{ "answer": "SELECT MAX(days) FROM table_name_16 WHERE launch_date = \"23 january 2010\"", "context": "CREATE TABLE table_name_16 (days INTEGER, launch_date VARCHAR)", "question": "What is Highest Days, when Launch Date is 23 January 2010?" }
### QUESTION What is the lowest Rank, when Name is Jeremiah Massey, and when Games is less than 20? ### CONTEXT CREATE TABLE table_name_60 (rank INTEGER, name VARCHAR, games VARCHAR) ### ANSWER SELECT MIN(rank) FROM table_name_60 WHERE name = "jeremiah massey" AND games < 20</s>
{ "answer": "SELECT MIN(rank) FROM table_name_60 WHERE name = \"jeremiah massey\" AND games < 20", "context": "CREATE TABLE table_name_60 (rank INTEGER, name VARCHAR, games VARCHAR)", "question": "What is the lowest Rank, when Name is Jeremiah Massey, and when Games is less than 20?" }
### QUESTION Name the attendance for atlanta braves opponent for september 9 ### CONTEXT CREATE TABLE table_name_26 (attendance INTEGER, opponent VARCHAR, date VARCHAR) ### ANSWER SELECT AVG(attendance) FROM table_name_26 WHERE opponent = "atlanta braves" AND date = "september 9"</s>
{ "answer": "SELECT AVG(attendance) FROM table_name_26 WHERE opponent = \"atlanta braves\" AND date = \"september 9\"", "context": "CREATE TABLE table_name_26 (attendance INTEGER, opponent VARCHAR, date VARCHAR)", "question": "Name the attendance for atlanta braves opponent for september 9" }
### QUESTION What is the name of the country that has a transfer window of winter with an end after 2009 and moving from Bolton Wanderers? ### CONTEXT CREATE TABLE table_name_45 (country VARCHAR, moving_from VARCHAR, transfer_window VARCHAR, ends VARCHAR) ### ANSWER SELECT country FROM table_name_45 WHERE transfer_window = "winter" AND ends > 2009 AND moving_from = "bolton wanderers"</s>
{ "answer": "SELECT country FROM table_name_45 WHERE transfer_window = \"winter\" AND ends > 2009 AND moving_from = \"bolton wanderers\"", "context": "CREATE TABLE table_name_45 (country VARCHAR, moving_from VARCHAR, transfer_window VARCHAR, ends VARCHAR)", "question": "What is the name of the country that has a transfer window of winter with an end after 2009 and moving from Bolton Wanderers?" }
### QUESTION What is the type of the Leeds United source, winter transfer window and moving from Northampton town? ### CONTEXT CREATE TABLE table_name_65 (type VARCHAR, moving_from VARCHAR, source VARCHAR, transfer_window VARCHAR) ### ANSWER SELECT type FROM table_name_65 WHERE source = "leeds united" AND transfer_window = "winter" AND moving_from = "northampton town"</s>
{ "answer": "SELECT type FROM table_name_65 WHERE source = \"leeds united\" AND transfer_window = \"winter\" AND moving_from = \"northampton town\"", "context": "CREATE TABLE table_name_65 (type VARCHAR, moving_from VARCHAR, source VARCHAR, transfer_window VARCHAR)", "question": "What is the type of the Leeds United source, winter transfer window and moving from Northampton town?" }
### QUESTION What is the highest Points in Position 2 with more than 3 Drawn games? ### CONTEXT CREATE TABLE table_name_75 (points INTEGER, position VARCHAR, drawn VARCHAR) ### ANSWER SELECT MAX(points) FROM table_name_75 WHERE position = 2 AND drawn > 3</s>
{ "answer": "SELECT MAX(points) FROM table_name_75 WHERE position = 2 AND drawn > 3", "context": "CREATE TABLE table_name_75 (points INTEGER, position VARCHAR, drawn VARCHAR)", "question": "What is the highest Points in Position 2 with more than 3 Drawn games?" }
### QUESTION What is the average rank Finland, which has 1 bronze, more than 1 silver, and less than 0 gold, has? ### CONTEXT CREATE TABLE table_name_6 (rank INTEGER, gold VARCHAR, nation VARCHAR, bronze VARCHAR, silver VARCHAR) ### ANSWER SELECT AVG(rank) FROM table_name_6 WHERE bronze = 1 AND silver > 1 AND nation = "finland" AND gold < 0</s>
{ "answer": "SELECT AVG(rank) FROM table_name_6 WHERE bronze = 1 AND silver > 1 AND nation = \"finland\" AND gold < 0", "context": "CREATE TABLE table_name_6 (rank INTEGER, gold VARCHAR, nation VARCHAR, bronze VARCHAR, silver VARCHAR)", "question": "What is the average rank Finland, which has 1 bronze, more than 1 silver, and less than 0 gold, has?" }
### QUESTION What is Sum of Score, when Player is Vijay Singh? ### CONTEXT CREATE TABLE table_name_18 (score INTEGER, player VARCHAR) ### ANSWER SELECT SUM(score) FROM table_name_18 WHERE player = "vijay singh"</s>
{ "answer": "SELECT SUM(score) FROM table_name_18 WHERE player = \"vijay singh\"", "context": "CREATE TABLE table_name_18 (score INTEGER, player VARCHAR)", "question": "What is Sum of Score, when Player is Vijay Singh?" }
### QUESTION What is 2009, when 2000 is 1R, and when 1998 is 3R? ### CONTEXT CREATE TABLE table_name_1 (Id VARCHAR) ### ANSWER SELECT 2009 FROM table_name_1 WHERE 2000 = "1r" AND 1998 = "3r"</s>
{ "answer": "SELECT 2009 FROM table_name_1 WHERE 2000 = \"1r\" AND 1998 = \"3r\"", "context": "CREATE TABLE table_name_1 (Id VARCHAR)", "question": "What is 2009, when 2000 is 1R, and when 1998 is 3R?" }
### QUESTION What is the name of the tournament played on Sep 20, 1981, ending with a margin of vicroty of 2 strokes? ### CONTEXT CREATE TABLE table_name_56 (tournament VARCHAR, margin_of_victory VARCHAR, date VARCHAR) ### ANSWER SELECT tournament FROM table_name_56 WHERE margin_of_victory = "2 strokes" AND date = "sep 20, 1981"</s>
{ "answer": "SELECT tournament FROM table_name_56 WHERE margin_of_victory = \"2 strokes\" AND date = \"sep 20, 1981\"", "context": "CREATE TABLE table_name_56 (tournament VARCHAR, margin_of_victory VARCHAR, date VARCHAR)", "question": "What is the name of the tournament played on Sep 20, 1981, ending with a margin of vicroty of 2 strokes?" }
### QUESTION What was the winning score for the Andy Williams-San Diego Open Invitational tournament? ### CONTEXT CREATE TABLE table_name_60 (winning_score VARCHAR, tournament VARCHAR) ### ANSWER SELECT winning_score FROM table_name_60 WHERE tournament = "andy williams-san diego open invitational"</s>
{ "answer": "SELECT winning_score FROM table_name_60 WHERE tournament = \"andy williams-san diego open invitational\"", "context": "CREATE TABLE table_name_60 (winning_score VARCHAR, tournament VARCHAR)", "question": "What was the winning score for the Andy Williams-San Diego Open Invitational tournament?" }
### QUESTION When was tony parker (guard) born? ### CONTEXT CREATE TABLE table_name_31 (year_born INTEGER, position VARCHAR, player VARCHAR) ### ANSWER SELECT MAX(year_born) FROM table_name_31 WHERE position = "guard" AND player = "tony parker"</s>
{ "answer": "SELECT MAX(year_born) FROM table_name_31 WHERE position = \"guard\" AND player = \"tony parker\"", "context": "CREATE TABLE table_name_31 (year_born INTEGER, position VARCHAR, player VARCHAR)", "question": "When was tony parker (guard) born?" }
### QUESTION Who was the Kit manufacturer that was has shirts sponsored by Walkers? ### CONTEXT CREATE TABLE table_name_63 (kit_manufacturer VARCHAR, shirt_sponsor VARCHAR) ### ANSWER SELECT kit_manufacturer FROM table_name_63 WHERE shirt_sponsor = "walkers"</s>
{ "answer": "SELECT kit_manufacturer FROM table_name_63 WHERE shirt_sponsor = \"walkers\"", "context": "CREATE TABLE table_name_63 (kit_manufacturer VARCHAR, shirt_sponsor VARCHAR)", "question": "Who was the Kit manufacturer that was has shirts sponsored by Walkers?" }
### QUESTION What is the total of NA for set 4, a score of 3-0 and a 26-24 for set 2? ### CONTEXT CREATE TABLE table_name_62 (total VARCHAR, set_2 VARCHAR, set_4 VARCHAR, score VARCHAR) ### ANSWER SELECT total FROM table_name_62 WHERE set_4 = "na" AND score = "3-0" AND set_2 = "26-24"</s>
{ "answer": "SELECT total FROM table_name_62 WHERE set_4 = \"na\" AND score = \"3-0\" AND set_2 = \"26-24\"", "context": "CREATE TABLE table_name_62 (total VARCHAR, set_2 VARCHAR, set_4 VARCHAR, score VARCHAR)", "question": "What is the total of NA for set 4, a score of 3-0 and a 26-24 for set 2?" }
### QUESTION Which score has a competition of 1997 dunhill cup malaysia and february 23, 1997 as the date? ### CONTEXT CREATE TABLE table_name_92 (score VARCHAR, competition VARCHAR, date VARCHAR) ### ANSWER SELECT score FROM table_name_92 WHERE competition = "1997 dunhill cup malaysia" AND date = "february 23, 1997"</s>
{ "answer": "SELECT score FROM table_name_92 WHERE competition = \"1997 dunhill cup malaysia\" AND date = \"february 23, 1997\"", "context": "CREATE TABLE table_name_92 (score VARCHAR, competition VARCHAR, date VARCHAR)", "question": "Which score has a competition of 1997 dunhill cup malaysia and february 23, 1997 as the date?" }
### QUESTION What is Fastest Lap, when Winning Team is Team BRM, when Race is 1, when Pole Position is Leanne Tander, and when Circuit is Phillip Island? ### CONTEXT CREATE TABLE table_name_8 (fastest_lap VARCHAR, circuit VARCHAR, pole_position VARCHAR, winning_team VARCHAR, race VARCHAR) ### ANSWER SELECT fastest_lap FROM table_name_8 WHERE winning_team = "team brm" AND race = 1 AND pole_position = "leanne tander" AND circuit = "phillip island"</s>
{ "answer": "SELECT fastest_lap FROM table_name_8 WHERE winning_team = \"team brm\" AND race = 1 AND pole_position = \"leanne tander\" AND circuit = \"phillip island\"", "context": "CREATE TABLE table_name_8 (fastest_lap VARCHAR, circuit VARCHAR, pole_position VARCHAR, winning_team VARCHAR, race VARCHAR)", "question": "What is Fastest Lap, when Winning Team is Team BRM, when Race is 1, when Pole Position is Leanne Tander, and when Circuit is Phillip Island?" }
### QUESTION What is the result of the directorial debut of the year award? ### CONTEXT CREATE TABLE table_name_77 (result VARCHAR, category VARCHAR) ### ANSWER SELECT result FROM table_name_77 WHERE category = "directorial debut of the year"</s>
{ "answer": "SELECT result FROM table_name_77 WHERE category = \"directorial debut of the year\"", "context": "CREATE TABLE table_name_77 (result VARCHAR, category VARCHAR)", "question": "What is the result of the directorial debut of the year award?" }
### QUESTION What is Date, when Fastest Lap is James Winslow, when Race is 1, and when Winning Driver is Leanne Tander? ### CONTEXT CREATE TABLE table_name_81 (date VARCHAR, winning_driver VARCHAR, fastest_lap VARCHAR, race VARCHAR) ### ANSWER SELECT date FROM table_name_81 WHERE fastest_lap = "james winslow" AND race = 1 AND winning_driver = "leanne tander"</s>
{ "answer": "SELECT date FROM table_name_81 WHERE fastest_lap = \"james winslow\" AND race = 1 AND winning_driver = \"leanne tander\"", "context": "CREATE TABLE table_name_81 (date VARCHAR, winning_driver VARCHAR, fastest_lap VARCHAR, race VARCHAR)", "question": "What is Date, when Fastest Lap is James Winslow, when Race is 1, and when Winning Driver is Leanne Tander?" }
### QUESTION When John Emanuel ran under the Socialist Labor ticket who ran under the Democratic ticket? ### CONTEXT CREATE TABLE table_name_99 (democratic_ticket VARCHAR, socialist_labor_ticket VARCHAR) ### ANSWER SELECT democratic_ticket FROM table_name_99 WHERE socialist_labor_ticket = "john emanuel"</s>
{ "answer": "SELECT democratic_ticket FROM table_name_99 WHERE socialist_labor_ticket = \"john emanuel\"", "context": "CREATE TABLE table_name_99 (democratic_ticket VARCHAR, socialist_labor_ticket VARCHAR)", "question": "When John Emanuel ran under the Socialist Labor ticket who ran under the Democratic ticket?" }
### QUESTION What was the office up for election when Sylvia Weinstein ran under the Socialist Workers ticket? ### CONTEXT CREATE TABLE table_name_55 (office VARCHAR, socialist_workers_ticket VARCHAR) ### ANSWER SELECT office FROM table_name_55 WHERE socialist_workers_ticket = "sylvia weinstein"</s>
{ "answer": "SELECT office FROM table_name_55 WHERE socialist_workers_ticket = \"sylvia weinstein\"", "context": "CREATE TABLE table_name_55 (office VARCHAR, socialist_workers_ticket VARCHAR)", "question": "What was the office up for election when Sylvia Weinstein ran under the Socialist Workers ticket?" }
### QUESTION What is the area km2 of the area with a pop density people/km2 larger than 91, is a member state of Italy, and had less than 58.8 population in millions? ### CONTEXT CREATE TABLE table_name_70 (area_km_2 INTEGER, population_in_millions VARCHAR, pop_density_people_km_2 VARCHAR, member_state VARCHAR) ### ANSWER SELECT SUM(area_km_2) FROM table_name_70 WHERE pop_density_people_km_2 > 91 AND member_state = "italy" AND population_in_millions < 58.8</s>
{ "answer": "SELECT SUM(area_km_2) FROM table_name_70 WHERE pop_density_people_km_2 > 91 AND member_state = \"italy\" AND population_in_millions < 58.8", "context": "CREATE TABLE table_name_70 (area_km_2 INTEGER, population_in_millions VARCHAR, pop_density_people_km_2 VARCHAR, member_state VARCHAR)", "question": "What is the area km2 of the area with a pop density people/km2 larger than 91, is a member state of Italy, and had less than 58.8 population in millions?" }
### QUESTION What is the Loan Club from Eng that ended on 22 February? ### CONTEXT CREATE TABLE table_name_57 (loan_club VARCHAR, country VARCHAR, ended VARCHAR) ### ANSWER SELECT loan_club FROM table_name_57 WHERE country = "eng" AND ended = "22 february"</s>
{ "answer": "SELECT loan_club FROM table_name_57 WHERE country = \"eng\" AND ended = \"22 february\"", "context": "CREATE TABLE table_name_57 (loan_club VARCHAR, country VARCHAR, ended VARCHAR)", "question": "What is the Loan Club from Eng that ended on 22 February?" }
### QUESTION What is the sum of the pop density people/km2 with a population % of EU of 0.1%, an area % of EU of 0.1%, and has more than 0.5 population in millions? ### CONTEXT CREATE TABLE table_name_47 (pop_density_people_km_2 INTEGER, population_in_millions VARCHAR, population__percentage_of_eu VARCHAR, area__percentage_of_eu VARCHAR) ### ANSWER SELECT SUM(pop_density_people_km_2) FROM table_name_47 WHERE population__percentage_of_eu = "0.1%" AND area__percentage_of_eu = "0.1%" AND population_in_millions > 0.5</s>
{ "answer": "SELECT SUM(pop_density_people_km_2) FROM table_name_47 WHERE population__percentage_of_eu = \"0.1%\" AND area__percentage_of_eu = \"0.1%\" AND population_in_millions > 0.5", "context": "CREATE TABLE table_name_47 (pop_density_people_km_2 INTEGER, population_in_millions VARCHAR, population__percentage_of_eu VARCHAR, area__percentage_of_eu VARCHAR)", "question": "What is the sum of the pop density people/km2 with a population % of EU of 0.1%, an area % of EU of 0.1%, and has more than 0.5 population in millions?" }
### QUESTION What is the lowest area km2 of the member state of the Czech Republic and has a population in millions lesss than 10.3? ### CONTEXT CREATE TABLE table_name_61 (area_km_2 INTEGER, member_state VARCHAR, population_in_millions VARCHAR) ### ANSWER SELECT MIN(area_km_2) FROM table_name_61 WHERE member_state = "czech republic" AND population_in_millions < 10.3</s>
{ "answer": "SELECT MIN(area_km_2) FROM table_name_61 WHERE member_state = \"czech republic\" AND population_in_millions < 10.3", "context": "CREATE TABLE table_name_61 (area_km_2 INTEGER, member_state VARCHAR, population_in_millions VARCHAR)", "question": "What is the lowest area km2 of the member state of the Czech Republic and has a population in millions lesss than 10.3?" }
### QUESTION What is Name, when Games are less than 38, when Rank is less than 4, and when Points are 357? ### CONTEXT CREATE TABLE table_name_11 (name VARCHAR, points VARCHAR, games VARCHAR, rank VARCHAR) ### ANSWER SELECT name FROM table_name_11 WHERE games < 38 AND rank < 4 AND points = 357</s>
{ "answer": "SELECT name FROM table_name_11 WHERE games < 38 AND rank < 4 AND points = 357", "context": "CREATE TABLE table_name_11 (name VARCHAR, points VARCHAR, games VARCHAR, rank VARCHAR)", "question": "What is Name, when Games are less than 38, when Rank is less than 4, and when Points are 357?" }
### QUESTION What is the maximum number of losses that the Minnesota Kicks had after 1979 with an average attendance of 16,605? ### CONTEXT CREATE TABLE table_name_40 (lost INTEGER, season VARCHAR, avg_attend VARCHAR) ### ANSWER SELECT MAX(lost) FROM table_name_40 WHERE season > 1979 AND avg_attend = 16 OFFSET 605</s>
{ "answer": "SELECT MAX(lost) FROM table_name_40 WHERE season > 1979 AND avg_attend = 16 OFFSET 605", "context": "CREATE TABLE table_name_40 (lost INTEGER, season VARCHAR, avg_attend VARCHAR)", "question": "What is the maximum number of losses that the Minnesota Kicks had after 1979 with an average attendance of 16,605?" }
### QUESTION What commercial operation that has a gross capacity of 1,126 mw, and a unit of tianwan-4? ### CONTEXT CREATE TABLE table_name_95 (commercial_operation VARCHAR, gross_capacity VARCHAR, unit VARCHAR) ### ANSWER SELECT commercial_operation FROM table_name_95 WHERE gross_capacity = "1,126 mw" AND unit = "tianwan-4"</s>
{ "answer": "SELECT commercial_operation FROM table_name_95 WHERE gross_capacity = \"1,126 mw\" AND unit = \"tianwan-4\"", "context": "CREATE TABLE table_name_95 (commercial_operation VARCHAR, gross_capacity VARCHAR, unit VARCHAR)", "question": "What commercial operation that has a gross capacity of 1,126 mw, and a unit of tianwan-4?" }
### QUESTION What date has won as the result and 2-1 as the score with a competition of 2004 tiger cup third place match? ### CONTEXT CREATE TABLE table_name_93 (date VARCHAR, competition VARCHAR, result VARCHAR, score VARCHAR) ### ANSWER SELECT date FROM table_name_93 WHERE result = "won" AND score = "2-1" AND competition = "2004 tiger cup third place match"</s>
{ "answer": "SELECT date FROM table_name_93 WHERE result = \"won\" AND score = \"2-1\" AND competition = \"2004 tiger cup third place match\"", "context": "CREATE TABLE table_name_93 (date VARCHAR, competition VARCHAR, result VARCHAR, score VARCHAR)", "question": "What date has won as the result and 2-1 as the score with a competition of 2004 tiger cup third place match?" }
### QUESTION What red list is in the artiodactyla order and the cervidae family with a Species Authority of odocoileus virginianus zimmermann, 1780? ### CONTEXT CREATE TABLE table_name_22 (red_list VARCHAR, species_authority VARCHAR, order VARCHAR, family VARCHAR) ### ANSWER SELECT red_list FROM table_name_22 WHERE order = "artiodactyla" AND family = "cervidae" AND species_authority = "odocoileus virginianus zimmermann, 1780"</s>
{ "answer": "SELECT red_list FROM table_name_22 WHERE order = \"artiodactyla\" AND family = \"cervidae\" AND species_authority = \"odocoileus virginianus zimmermann, 1780\"", "context": "CREATE TABLE table_name_22 (red_list VARCHAR, species_authority VARCHAR, order VARCHAR, family VARCHAR)", "question": "What red list is in the artiodactyla order and the cervidae family with a Species Authority of odocoileus virginianus zimmermann, 1780?" }
### QUESTION What is the least amount of appearances by new zealand when they scored 4 goals? ### CONTEXT CREATE TABLE table_name_85 (appearances INTEGER, goals VARCHAR, nationality VARCHAR) ### ANSWER SELECT MIN(appearances) FROM table_name_85 WHERE goals = 4 AND nationality = "new zealand"</s>
{ "answer": "SELECT MIN(appearances) FROM table_name_85 WHERE goals = 4 AND nationality = \"new zealand\"", "context": "CREATE TABLE table_name_85 (appearances INTEGER, goals VARCHAR, nationality VARCHAR)", "question": "What is the least amount of appearances by new zealand when they scored 4 goals?" }
### QUESTION What is the average area with valparaíso as the capital? ### CONTEXT CREATE TABLE table_name_34 (area INTEGER, capital VARCHAR) ### ANSWER SELECT AVG(area) FROM table_name_34 WHERE capital = "valparaíso"</s>
{ "answer": "SELECT AVG(area) FROM table_name_34 WHERE capital = \"valparaíso\"", "context": "CREATE TABLE table_name_34 (area INTEGER, capital VARCHAR)", "question": "What is the average area with valparaíso as the capital?" }
### QUESTION When has a Note of 45/48 renumbered 15/16; two sold to sl&ncr? ### CONTEXT CREATE TABLE table_name_46 (date_made VARCHAR, notes VARCHAR) ### ANSWER SELECT date_made FROM table_name_46 WHERE notes = "45/48 renumbered 15/16; two sold to sl&ncr"</s>
{ "answer": "SELECT date_made FROM table_name_46 WHERE notes = \"45/48 renumbered 15/16; two sold to sl&ncr\"", "context": "CREATE TABLE table_name_46 (date_made VARCHAR, notes VARCHAR)", "question": "When has a Note of 45/48 renumbered 15/16; two sold to sl&ncr?" }
### QUESTION What Gershausen has a Willingshain of 243 and Reckerode of 224? ### CONTEXT CREATE TABLE table_name_46 (gershausen VARCHAR, willingshain VARCHAR, reckerode_ VARCHAR) ### ANSWER SELECT gershausen FROM table_name_46 WHERE willingshain = "243" AND reckerode_ * * * * = "224"</s>
{ "answer": "SELECT gershausen FROM table_name_46 WHERE willingshain = \"243\" AND reckerode_ * * * * = \"224\"", "context": "CREATE TABLE table_name_46 (gershausen VARCHAR, willingshain VARCHAR, reckerode_ VARCHAR)", "question": "What Gershausen has a Willingshain of 243 and Reckerode of 224?" }
### QUESTION Which Republican ran against the American Labor candidate Matthew J. Merritt? ### CONTEXT CREATE TABLE table_name_5 (republican_ticket VARCHAR, american_labor_ticket VARCHAR) ### ANSWER SELECT republican_ticket FROM table_name_5 WHERE american_labor_ticket = "matthew j. merritt"</s>
{ "answer": "SELECT republican_ticket FROM table_name_5 WHERE american_labor_ticket = \"matthew j. merritt\"", "context": "CREATE TABLE table_name_5 (republican_ticket VARCHAR, american_labor_ticket VARCHAR)", "question": "Which Republican ran against the American Labor candidate Matthew J. Merritt?" }
### QUESTION What is the average number of events of PGA Championship tournaments with a top-5 less than 0? ### CONTEXT CREATE TABLE table_name_27 (events INTEGER, top_5 VARCHAR, top_10 VARCHAR, tournament VARCHAR) ### ANSWER SELECT AVG(events) FROM table_name_27 WHERE top_10 = 0 AND tournament = "pga championship" AND top_5 < 0</s>
{ "answer": "SELECT AVG(events) FROM table_name_27 WHERE top_10 = 0 AND tournament = \"pga championship\" AND top_5 < 0", "context": "CREATE TABLE table_name_27 (events INTEGER, top_5 VARCHAR, top_10 VARCHAR, tournament VARCHAR)", "question": "What is the average number of events of PGA Championship tournaments with a top-5 less than 0?" }
### QUESTION What is the smallest percentage of marine area for Pacific Marine ecozone and percentage of total area greater than 3.1? ### CONTEXT CREATE TABLE table_name_50 (percentage_of_marine_area__foreez_ INTEGER, ecozone VARCHAR, percentage_of_total_area__foreez_ VARCHAR) ### ANSWER SELECT MIN(percentage_of_marine_area__foreez_) FROM table_name_50 WHERE ecozone = "pacific marine" AND percentage_of_total_area__foreez_ > 3.1</s>
{ "answer": "SELECT MIN(percentage_of_marine_area__foreez_) FROM table_name_50 WHERE ecozone = \"pacific marine\" AND percentage_of_total_area__foreez_ > 3.1", "context": "CREATE TABLE table_name_50 (percentage_of_marine_area__foreez_ INTEGER, ecozone VARCHAR, percentage_of_total_area__foreez_ VARCHAR)", "question": "What is the smallest percentage of marine area for Pacific Marine ecozone and percentage of total area greater than 3.1?" }
### QUESTION How many values for percentage of marine area are for the Atlantic marine ecozone with an exclusive economic zone area less than 996,439? ### CONTEXT CREATE TABLE table_name_78 (percentage_of_marine_area__foreez_ VARCHAR, ecozone VARCHAR, area__km²__exclusive_economic_zone VARCHAR) ### ANSWER SELECT COUNT(percentage_of_marine_area__foreez_) FROM table_name_78 WHERE ecozone = "atlantic marine" AND area__km²__exclusive_economic_zone < 996 OFFSET 439</s>
{ "answer": "SELECT COUNT(percentage_of_marine_area__foreez_) FROM table_name_78 WHERE ecozone = \"atlantic marine\" AND area__km²__exclusive_economic_zone < 996 OFFSET 439", "context": "CREATE TABLE table_name_78 (percentage_of_marine_area__foreez_ VARCHAR, ecozone VARCHAR, area__km²__exclusive_economic_zone VARCHAR)", "question": "How many values for percentage of marine area are for the Atlantic marine ecozone with an exclusive economic zone area less than 996,439?" }
### QUESTION Which Source has a Clinton of 39% and a Undecided of 7%? ### CONTEXT CREATE TABLE table_name_94 (source VARCHAR, clinton VARCHAR, undecided VARCHAR) ### ANSWER SELECT source FROM table_name_94 WHERE clinton = "39%" AND undecided = "7%"</s>
{ "answer": "SELECT source FROM table_name_94 WHERE clinton = \"39%\" AND undecided = \"7%\"", "context": "CREATE TABLE table_name_94 (source VARCHAR, clinton VARCHAR, undecided VARCHAR)", "question": "Which Source has a Clinton of 39% and a Undecided of 7%?" }
### QUESTION Name the date with margin of victory of 1 stroke and tournament of legend financial group classic ### CONTEXT CREATE TABLE table_name_83 (date VARCHAR, margin_of_victory VARCHAR, tournament VARCHAR) ### ANSWER SELECT date FROM table_name_83 WHERE margin_of_victory = "1 stroke" AND tournament = "legend financial group classic"</s>
{ "answer": "SELECT date FROM table_name_83 WHERE margin_of_victory = \"1 stroke\" AND tournament = \"legend financial group classic\"", "context": "CREATE TABLE table_name_83 (date VARCHAR, margin_of_victory VARCHAR, tournament VARCHAR)", "question": "Name the date with margin of victory of 1 stroke and tournament of legend financial group classic" }
### QUESTION Name the runner-up for margin of victory of 1 stroke and tournament of legend financial group classic ### CONTEXT CREATE TABLE table_name_10 (runner_s__up VARCHAR, margin_of_victory VARCHAR, tournament VARCHAR) ### ANSWER SELECT runner_s__up FROM table_name_10 WHERE margin_of_victory = "1 stroke" AND tournament = "legend financial group classic"</s>
{ "answer": "SELECT runner_s__up FROM table_name_10 WHERE margin_of_victory = \"1 stroke\" AND tournament = \"legend financial group classic\"", "context": "CREATE TABLE table_name_10 (runner_s__up VARCHAR, margin_of_victory VARCHAR, tournament VARCHAR)", "question": "Name the runner-up for margin of victory of 1 stroke and tournament of legend financial group classic" }
### QUESTION What is ASTC Member, when State is Arkansas, when AAM Member is No, and when AAM Accredited is Yes? ### CONTEXT CREATE TABLE table_name_39 (astc_member VARCHAR, aam_accredited VARCHAR, state VARCHAR, aam_member VARCHAR) ### ANSWER SELECT astc_member FROM table_name_39 WHERE state = "arkansas" AND aam_member = "no" AND aam_accredited = "yes"</s>
{ "answer": "SELECT astc_member FROM table_name_39 WHERE state = \"arkansas\" AND aam_member = \"no\" AND aam_accredited = \"yes\"", "context": "CREATE TABLE table_name_39 (astc_member VARCHAR, aam_accredited VARCHAR, state VARCHAR, aam_member VARCHAR)", "question": "What is ASTC Member, when State is Arkansas, when AAM Member is No, and when AAM Accredited is Yes?" }
### QUESTION Which Office has a Party of rep, and a Representative of brian bosma? ### CONTEXT CREATE TABLE table_name_9 (office VARCHAR, party VARCHAR, representative VARCHAR) ### ANSWER SELECT office FROM table_name_9 WHERE party = "rep" AND representative = "brian bosma"</s>
{ "answer": "SELECT office FROM table_name_9 WHERE party = \"rep\" AND representative = \"brian bosma\"", "context": "CREATE TABLE table_name_9 (office VARCHAR, party VARCHAR, representative VARCHAR)", "question": "Which Office has a Party of rep, and a Representative of brian bosma?" }
### QUESTION What is City, when State is California, when AAM Accredited is No, when ASTC Member is Yes, and when AAM Member is No? ### CONTEXT CREATE TABLE table_name_30 (city VARCHAR, aam_member VARCHAR, astc_member VARCHAR, state VARCHAR, aam_accredited VARCHAR) ### ANSWER SELECT city FROM table_name_30 WHERE state = "california" AND aam_accredited = "no" AND astc_member = "yes" AND aam_member = "no"</s>
{ "answer": "SELECT city FROM table_name_30 WHERE state = \"california\" AND aam_accredited = \"no\" AND astc_member = \"yes\" AND aam_member = \"no\"", "context": "CREATE TABLE table_name_30 (city VARCHAR, aam_member VARCHAR, astc_member VARCHAR, state VARCHAR, aam_accredited VARCHAR)", "question": "What is City, when State is California, when AAM Accredited is No, when ASTC Member is Yes, and when AAM Member is No?" }
### QUESTION What is the Main span of the bridge from China with a Year to open of 2013 and Main span feet of 2,585? ### CONTEXT CREATE TABLE table_name_23 (main_span_metres VARCHAR, main_span_feet VARCHAR, year_to_open VARCHAR, country VARCHAR) ### ANSWER SELECT main_span_metres FROM table_name_23 WHERE year_to_open = 2013 AND country = "china" AND main_span_feet = "2,585"</s>
{ "answer": "SELECT main_span_metres FROM table_name_23 WHERE year_to_open = 2013 AND country = \"china\" AND main_span_feet = \"2,585\"", "context": "CREATE TABLE table_name_23 (main_span_metres VARCHAR, main_span_feet VARCHAR, year_to_open VARCHAR, country VARCHAR)", "question": "What is the Main span of the bridge from China with a Year to open of 2013 and Main span feet of 2,585?" }
### QUESTION What office has (none) as the socialist labor ticket, and stanley h. fuld as the liberal ticket? ### CONTEXT CREATE TABLE table_name_8 (office VARCHAR, socialist_labor_ticket VARCHAR, liberal_ticket VARCHAR) ### ANSWER SELECT office FROM table_name_8 WHERE socialist_labor_ticket = "(none)" AND liberal_ticket = "stanley h. fuld"</s>
{ "answer": "SELECT office FROM table_name_8 WHERE socialist_labor_ticket = \"(none)\" AND liberal_ticket = \"stanley h. fuld\"", "context": "CREATE TABLE table_name_8 (office VARCHAR, socialist_labor_ticket VARCHAR, liberal_ticket VARCHAR)", "question": "What office has (none) as the socialist labor ticket, and stanley h. fuld as the liberal ticket?" }
### QUESTION What is the Fatalities when the tail number was unknown and in Kabul> ### CONTEXT CREATE TABLE table_name_53 (fatalities VARCHAR, tail_number VARCHAR, location VARCHAR) ### ANSWER SELECT fatalities FROM table_name_53 WHERE tail_number = "unknown" AND location = "kabul"</s>
{ "answer": "SELECT fatalities FROM table_name_53 WHERE tail_number = \"unknown\" AND location = \"kabul\"", "context": "CREATE TABLE table_name_53 (fatalities VARCHAR, tail_number VARCHAR, location VARCHAR)", "question": "What is the Fatalities when the tail number was unknown and in Kabul>" }