text
stringlengths
150
1.06k
source
dict
### QUESTION How many players were drafted from the Boston Cannons in the round? ### CONTEXT CREATE TABLE table_name_74 (round INTEGER, team VARCHAR) ### ANSWER SELECT SUM(round) FROM table_name_74 WHERE team = "boston cannons"</s>
{ "answer": "SELECT SUM(round) FROM table_name_74 WHERE team = \"boston cannons\"", "context": "CREATE TABLE table_name_74 (round INTEGER, team VARCHAR)", "question": "How many players were drafted from the Boston Cannons in the round?" }
### QUESTION Who is the director of Wallace & Gromit: The Curse of the Were-Rabbit? ### CONTEXT CREATE TABLE table_name_99 (director VARCHAR, title VARCHAR) ### ANSWER SELECT director FROM table_name_99 WHERE title = "wallace & gromit: the curse of the were-rabbit"</s>
{ "answer": "SELECT director FROM table_name_99 WHERE title = \"wallace & gromit: the curse of the were-rabbit\"", "context": "CREATE TABLE table_name_99 (director VARCHAR, title VARCHAR)", "question": "Who is the director of Wallace & Gromit: The Curse of the Were-Rabbit?" }
### QUESTION Name the laps for suzuki and time/retired of +1:02.804 ### CONTEXT CREATE TABLE table_name_92 (laps VARCHAR, manufacturer VARCHAR, time_retired VARCHAR) ### ANSWER SELECT laps FROM table_name_92 WHERE manufacturer = "suzuki" AND time_retired = "+1:02.804"</s>
{ "answer": "SELECT laps FROM table_name_92 WHERE manufacturer = \"suzuki\" AND time_retired = \"+1:02.804\"", "context": "CREATE TABLE table_name_92 (laps VARCHAR, manufacturer VARCHAR, time_retired VARCHAR)", "question": "Name the laps for suzuki and time/retired of +1:02.804" }
### QUESTION What was the time when the laps were smaller than 66 and the grid was 15? ### CONTEXT CREATE TABLE table_name_62 (time_retired VARCHAR, laps VARCHAR, grid VARCHAR) ### ANSWER SELECT time_retired FROM table_name_62 WHERE laps < 66 AND grid = 15</s>
{ "answer": "SELECT time_retired FROM table_name_62 WHERE laps < 66 AND grid = 15", "context": "CREATE TABLE table_name_62 (time_retired VARCHAR, laps VARCHAR, grid VARCHAR)", "question": "What was the time when the laps were smaller than 66 and the grid was 15?" }
### QUESTION Name the most # of total votes with % of popular vote of 32.41% and # of seats won more than 95 ### CONTEXT CREATE TABLE table_name_31 (_number_of_total_votes INTEGER, _percentage_of_popular_vote VARCHAR, _number_of_seats_won VARCHAR) ### ANSWER SELECT MAX(_number_of_total_votes) FROM table_name_31 WHERE _percentage_of_popular_vote = "32.41%" AND _number_of_seats_won > 95</s>
{ "answer": "SELECT MAX(_number_of_total_votes) FROM table_name_31 WHERE _percentage_of_popular_vote = \"32.41%\" AND _number_of_seats_won > 95", "context": "CREATE TABLE table_name_31 (_number_of_total_votes INTEGER, _percentage_of_popular_vote VARCHAR, _number_of_seats_won VARCHAR)", "question": "Name the most # of total votes with % of popular vote of 32.41% and # of seats won more than 95" }
### QUESTION What place did Jack McGrath start in when he received a qual score of 141.033? ### CONTEXT CREATE TABLE table_name_72 (start VARCHAR, qual VARCHAR) ### ANSWER SELECT start FROM table_name_72 WHERE qual = "141.033"</s>
{ "answer": "SELECT start FROM table_name_72 WHERE qual = \"141.033\"", "context": "CREATE TABLE table_name_72 (start VARCHAR, qual VARCHAR)", "question": "What place did Jack McGrath start in when he received a qual score of 141.033?" }
### QUESTION What is the total number of goals from 24 tries and 96 or greater points? ### CONTEXT CREATE TABLE table_name_46 (goals INTEGER, tries VARCHAR, points VARCHAR) ### ANSWER SELECT SUM(goals) FROM table_name_46 WHERE tries = 24 AND points > 96</s>
{ "answer": "SELECT SUM(goals) FROM table_name_46 WHERE tries = 24 AND points > 96", "context": "CREATE TABLE table_name_46 (goals INTEGER, tries VARCHAR, points VARCHAR)", "question": "What is the total number of goals from 24 tries and 96 or greater points?" }
### QUESTION Name the term in office for liberal and state of sa for ian mclachlan ### CONTEXT CREATE TABLE table_name_27 (term_in_office VARCHAR, member VARCHAR, party VARCHAR, state VARCHAR) ### ANSWER SELECT term_in_office FROM table_name_27 WHERE party = "liberal" AND state = "sa" AND member = "ian mclachlan"</s>
{ "answer": "SELECT term_in_office FROM table_name_27 WHERE party = \"liberal\" AND state = \"sa\" AND member = \"ian mclachlan\"", "context": "CREATE TABLE table_name_27 (term_in_office VARCHAR, member VARCHAR, party VARCHAR, state VARCHAR)", "question": "Name the term in office for liberal and state of sa for ian mclachlan" }
### QUESTION Played that has a Points of 38, and a B.P. larger than 5 has what sum? ### CONTEXT CREATE TABLE table_name_52 (played INTEGER, points VARCHAR, bp VARCHAR) ### ANSWER SELECT SUM(played) FROM table_name_52 WHERE points = 38 AND bp > 5</s>
{ "answer": "SELECT SUM(played) FROM table_name_52 WHERE points = 38 AND bp > 5", "context": "CREATE TABLE table_name_52 (played INTEGER, points VARCHAR, bp VARCHAR)", "question": "Played that has a Points of 38, and a B.P. larger than 5 has what sum?" }
### QUESTION What is the most number of rounds that the Team from RBR Enterprises and having a Chevrolet Silverado ran? ### CONTEXT CREATE TABLE table_name_40 (rounds INTEGER, truck_s_ VARCHAR, team VARCHAR) ### ANSWER SELECT MAX(rounds) FROM table_name_40 WHERE truck_s_ = "chevrolet silverado" AND team = "rbr enterprises"</s>
{ "answer": "SELECT MAX(rounds) FROM table_name_40 WHERE truck_s_ = \"chevrolet silverado\" AND team = \"rbr enterprises\"", "context": "CREATE TABLE table_name_40 (rounds INTEGER, truck_s_ VARCHAR, team VARCHAR)", "question": "What is the most number of rounds that the Team from RBR Enterprises and having a Chevrolet Silverado ran?" }
### QUESTION What is the truck used by Brett Moffitt, from Hattori Racing Enterprises? ### CONTEXT CREATE TABLE table_name_23 (truck_s_ VARCHAR, driver_s_ VARCHAR, team VARCHAR) ### ANSWER SELECT truck_s_ FROM table_name_23 WHERE driver_s_ = "brett moffitt" AND team = "hattori racing enterprises"</s>
{ "answer": "SELECT truck_s_ FROM table_name_23 WHERE driver_s_ = \"brett moffitt\" AND team = \"hattori racing enterprises\"", "context": "CREATE TABLE table_name_23 (truck_s_ VARCHAR, driver_s_ VARCHAR, team VARCHAR)", "question": "What is the truck used by Brett Moffitt, from Hattori Racing Enterprises?" }
### QUESTION On September 10 during Strikeforce: Heavyweight Grand Prix Semifinals, what was the PPV buyrate? ### CONTEXT CREATE TABLE table_name_77 (ppv_buyrate VARCHAR, date VARCHAR, event VARCHAR) ### ANSWER SELECT ppv_buyrate FROM table_name_77 WHERE date = "september 10" AND event = "strikeforce: heavyweight grand prix semifinals"</s>
{ "answer": "SELECT ppv_buyrate FROM table_name_77 WHERE date = \"september 10\" AND event = \"strikeforce: heavyweight grand prix semifinals\"", "context": "CREATE TABLE table_name_77 (ppv_buyrate VARCHAR, date VARCHAR, event VARCHAR)", "question": "On September 10 during Strikeforce: Heavyweight Grand Prix Semifinals, what was the PPV buyrate?" }
### QUESTION Which Film has a Result of nominated, and a Year of 2001? ### CONTEXT CREATE TABLE table_name_67 (film VARCHAR, result VARCHAR, year VARCHAR) ### ANSWER SELECT film FROM table_name_67 WHERE result = "nominated" AND year = 2001</s>
{ "answer": "SELECT film FROM table_name_67 WHERE result = \"nominated\" AND year = 2001", "context": "CREATE TABLE table_name_67 (film VARCHAR, result VARCHAR, year VARCHAR)", "question": "Which Film has a Result of nominated, and a Year of 2001?" }
### QUESTION Which Award has a Group of césar awards, and a Result of nominated, and a Year larger than 2001, and a Film of 8 women (8 femmes)? ### CONTEXT CREATE TABLE table_name_39 (award VARCHAR, film VARCHAR, year VARCHAR, group VARCHAR, result VARCHAR) ### ANSWER SELECT award FROM table_name_39 WHERE group = "césar awards" AND result = "nominated" AND year > 2001 AND film = "8 women (8 femmes)"</s>
{ "answer": "SELECT award FROM table_name_39 WHERE group = \"césar awards\" AND result = \"nominated\" AND year > 2001 AND film = \"8 women (8 femmes)\"", "context": "CREATE TABLE table_name_39 (award VARCHAR, film VARCHAR, year VARCHAR, group VARCHAR, result VARCHAR)", "question": "Which Award has a Group of césar awards, and a Result of nominated, and a Year larger than 2001, and a Film of 8 women (8 femmes)?" }
### QUESTION Which Year has a Group of césar awards, and a Result of nominated, and an Award of the best actress, and a Film of 8 women (8 femmes)? ### CONTEXT CREATE TABLE table_name_41 (year INTEGER, film VARCHAR, award VARCHAR, group VARCHAR, result VARCHAR) ### ANSWER SELECT AVG(year) FROM table_name_41 WHERE group = "césar awards" AND result = "nominated" AND award = "best actress" AND film = "8 women (8 femmes)"</s>
{ "answer": "SELECT AVG(year) FROM table_name_41 WHERE group = \"césar awards\" AND result = \"nominated\" AND award = \"best actress\" AND film = \"8 women (8 femmes)\"", "context": "CREATE TABLE table_name_41 (year INTEGER, film VARCHAR, award VARCHAR, group VARCHAR, result VARCHAR)", "question": "Which Year has a Group of césar awards, and a Result of nominated, and an Award of the best actress, and a Film of 8 women (8 femmes)?" }
### QUESTION What venue held the 1966 fifa world cup qualification on may 7, 1965? ### CONTEXT CREATE TABLE table_name_95 (venue VARCHAR, competition VARCHAR, date VARCHAR) ### ANSWER SELECT venue FROM table_name_95 WHERE competition = "1966 fifa world cup qualification" AND date = "may 7, 1965"</s>
{ "answer": "SELECT venue FROM table_name_95 WHERE competition = \"1966 fifa world cup qualification\" AND date = \"may 7, 1965\"", "context": "CREATE TABLE table_name_95 (venue VARCHAR, competition VARCHAR, date VARCHAR)", "question": "What venue held the 1966 fifa world cup qualification on may 7, 1965?" }
### QUESTION Goalsagainst of 285, and a Season of 2006–07, and a Games smaller than 70 has what average points? ### CONTEXT CREATE TABLE table_name_88 (points INTEGER, games VARCHAR, goalsagainst VARCHAR, season VARCHAR) ### ANSWER SELECT AVG(points) FROM table_name_88 WHERE goalsagainst = 285 AND season = "2006–07" AND games < 70</s>
{ "answer": "SELECT AVG(points) FROM table_name_88 WHERE goalsagainst = 285 AND season = \"2006–07\" AND games < 70", "context": "CREATE TABLE table_name_88 (points INTEGER, games VARCHAR, goalsagainst VARCHAR, season VARCHAR)", "question": "Goalsagainst of 285, and a Season of 2006–07, and a Games smaller than 70 has what average points?" }
### QUESTION What is the lowest number of participants in 2012 when there were 72 in 2010 and less than 56 in 2013? ### CONTEXT CREATE TABLE table_name_17 (Id VARCHAR) ### ANSWER SELECT MIN(2012) FROM table_name_17 WHERE 2010 = 72 AND 2013 < 56</s>
{ "answer": "SELECT MIN(2012) FROM table_name_17 WHERE 2010 = 72 AND 2013 < 56", "context": "CREATE TABLE table_name_17 (Id VARCHAR)", "question": "What is the lowest number of participants in 2012 when there were 72 in 2010 and less than 56 in 2013?" }
### QUESTION What is the Result that has the New York Rangers as the Offer Team and Adam Graves as the Player? ### CONTEXT CREATE TABLE table_name_79 (result VARCHAR, offer_team VARCHAR, player VARCHAR) ### ANSWER SELECT result FROM table_name_79 WHERE offer_team = "new york rangers" AND player = "adam graves"</s>
{ "answer": "SELECT result FROM table_name_79 WHERE offer_team = \"new york rangers\" AND player = \"adam graves\"", "context": "CREATE TABLE table_name_79 (result VARCHAR, offer_team VARCHAR, player VARCHAR)", "question": "What is the Result that has the New York Rangers as the Offer Team and Adam Graves as the Player?" }
### QUESTION What is the sum of participants in 2013 for Russia when there were 5 in 2010 and less than 4 in 2012? ### CONTEXT CREATE TABLE table_name_99 (country VARCHAR) ### ANSWER SELECT SUM(2013) FROM table_name_99 WHERE 2010 = 5 AND country = "russia" AND 2012 < 4</s>
{ "answer": "SELECT SUM(2013) FROM table_name_99 WHERE 2010 = 5 AND country = \"russia\" AND 2012 < 4", "context": "CREATE TABLE table_name_99 (country VARCHAR)", "question": "What is the sum of participants in 2013 for Russia when there were 5 in 2010 and less than 4 in 2012?" }
### QUESTION What is the result of Chris Gratton and Philadelphia Flyers as the Offer Team? ### CONTEXT CREATE TABLE table_name_73 (result VARCHAR, offer_team VARCHAR, player VARCHAR) ### ANSWER SELECT result FROM table_name_73 WHERE offer_team = "philadelphia flyers" AND player = "chris gratton"</s>
{ "answer": "SELECT result FROM table_name_73 WHERE offer_team = \"philadelphia flyers\" AND player = \"chris gratton\"", "context": "CREATE TABLE table_name_73 (result VARCHAR, offer_team VARCHAR, player VARCHAR)", "question": "What is the result of Chris Gratton and Philadelphia Flyers as the Offer Team?" }
### QUESTION What date has Vancouver Canucks as the original team, Ryan Kesler as the player, and matched as the Result? ### CONTEXT CREATE TABLE table_name_26 (date VARCHAR, player VARCHAR, original_team VARCHAR, result VARCHAR) ### ANSWER SELECT date FROM table_name_26 WHERE original_team = "vancouver canucks" AND result = "matched" AND player = "ryan kesler"</s>
{ "answer": "SELECT date FROM table_name_26 WHERE original_team = \"vancouver canucks\" AND result = \"matched\" AND player = \"ryan kesler\"", "context": "CREATE TABLE table_name_26 (date VARCHAR, player VARCHAR, original_team VARCHAR, result VARCHAR)", "question": "What date has Vancouver Canucks as the original team, Ryan Kesler as the player, and matched as the Result?" }
### QUESTION How low is the Attendance that has an Opponent of devil rays and a Date of may 13? ### CONTEXT CREATE TABLE table_name_15 (attendance INTEGER, opponent VARCHAR, date VARCHAR) ### ANSWER SELECT MIN(attendance) FROM table_name_15 WHERE opponent = "devil rays" AND date = "may 13"</s>
{ "answer": "SELECT MIN(attendance) FROM table_name_15 WHERE opponent = \"devil rays\" AND date = \"may 13\"", "context": "CREATE TABLE table_name_15 (attendance INTEGER, opponent VARCHAR, date VARCHAR)", "question": "How low is the Attendance that has an Opponent of devil rays and a Date of may 13?" }
### QUESTION What's the highest game against the New York Rangers with more than 55 points? ### CONTEXT CREATE TABLE table_name_16 (game INTEGER, opponent VARCHAR, points VARCHAR) ### ANSWER SELECT MAX(game) FROM table_name_16 WHERE opponent = "new york rangers" AND points > 55</s>
{ "answer": "SELECT MAX(game) FROM table_name_16 WHERE opponent = \"new york rangers\" AND points > 55", "context": "CREATE TABLE table_name_16 (game INTEGER, opponent VARCHAR, points VARCHAR)", "question": "What's the highest game against the New York Rangers with more than 55 points?" }
### QUESTION Which nationality's distance was 500m before 2012, when the record was 1:37.071s? ### CONTEXT CREATE TABLE table_name_26 (nationality VARCHAR, record VARCHAR, distance VARCHAR, year VARCHAR) ### ANSWER SELECT nationality FROM table_name_26 WHERE distance = "500m" AND year < 2012 AND record = "1:37.071s"</s>
{ "answer": "SELECT nationality FROM table_name_26 WHERE distance = \"500m\" AND year < 2012 AND record = \"1:37.071s\"", "context": "CREATE TABLE table_name_26 (nationality VARCHAR, record VARCHAR, distance VARCHAR, year VARCHAR)", "question": "Which nationality's distance was 500m before 2012, when the record was 1:37.071s?" }
### QUESTION WHAT IS THE PLACE THAT HAS SCORE OF 65 OR BETTER, FOR ROCCO MEDIATE? ### CONTEXT CREATE TABLE table_name_30 (place VARCHAR, score VARCHAR, player VARCHAR) ### ANSWER SELECT place FROM table_name_30 WHERE score > 65 AND player = "rocco mediate"</s>
{ "answer": "SELECT place FROM table_name_30 WHERE score > 65 AND player = \"rocco mediate\"", "context": "CREATE TABLE table_name_30 (place VARCHAR, score VARCHAR, player VARCHAR)", "question": "WHAT IS THE PLACE THAT HAS SCORE OF 65 OR BETTER, FOR ROCCO MEDIATE?" }
### QUESTION WHAT IS THE PLAYER WITH T7 PLACE, FOR ENGLAND? ### CONTEXT CREATE TABLE table_name_92 (player VARCHAR, place VARCHAR, country VARCHAR) ### ANSWER SELECT player FROM table_name_92 WHERE place = "t7" AND country = "england"</s>
{ "answer": "SELECT player FROM table_name_92 WHERE place = \"t7\" AND country = \"england\"", "context": "CREATE TABLE table_name_92 (player VARCHAR, place VARCHAR, country VARCHAR)", "question": "WHAT IS THE PLAYER WITH T7 PLACE, FOR ENGLAND?" }
### QUESTION Tell me the name for commissioned of 30 august 1941 and laid down of 22 september 1939 ### CONTEXT CREATE TABLE table_name_73 (name VARCHAR, laid_down VARCHAR, commissioned VARCHAR) ### ANSWER SELECT name FROM table_name_73 WHERE laid_down = "22 september 1939" AND commissioned = "30 august 1941"</s>
{ "answer": "SELECT name FROM table_name_73 WHERE laid_down = \"22 september 1939\" AND commissioned = \"30 august 1941\"", "context": "CREATE TABLE table_name_73 (name VARCHAR, laid_down VARCHAR, commissioned VARCHAR)", "question": "Tell me the name for commissioned of 30 august 1941 and laid down of 22 september 1939" }
### QUESTION Silver larger than 0, and a Total smaller than 3, and a Nation of bulgaria, and a Bronze smaller than 0 had what sum of gold? ### CONTEXT CREATE TABLE table_name_51 (gold INTEGER, bronze VARCHAR, nation VARCHAR, silver VARCHAR, total VARCHAR) ### ANSWER SELECT SUM(gold) FROM table_name_51 WHERE silver > 0 AND total < 3 AND nation = "bulgaria" AND bronze < 0</s>
{ "answer": "SELECT SUM(gold) FROM table_name_51 WHERE silver > 0 AND total < 3 AND nation = \"bulgaria\" AND bronze < 0", "context": "CREATE TABLE table_name_51 (gold INTEGER, bronze VARCHAR, nation VARCHAR, silver VARCHAR, total VARCHAR)", "question": "Silver larger than 0, and a Total smaller than 3, and a Nation of bulgaria, and a Bronze smaller than 0 had what sum of gold?" }
### QUESTION What is the total amount of points for a position less than 7, 68 goals for, and less than 30 played? ### CONTEXT CREATE TABLE table_name_59 (points VARCHAR, played VARCHAR, position VARCHAR, goals_for VARCHAR) ### ANSWER SELECT COUNT(points) FROM table_name_59 WHERE position < 7 AND goals_for = 68 AND played < 30</s>
{ "answer": "SELECT COUNT(points) FROM table_name_59 WHERE position < 7 AND goals_for = 68 AND played < 30", "context": "CREATE TABLE table_name_59 (points VARCHAR, played VARCHAR, position VARCHAR, goals_for VARCHAR)", "question": "What is the total amount of points for a position less than 7, 68 goals for, and less than 30 played?" }
### QUESTION What is teh average amount of goals for club real avilés cf, which has more than 59 goals against and a -10 goal difference? ### CONTEXT CREATE TABLE table_name_53 (goals_for INTEGER, goal_difference VARCHAR, goals_against VARCHAR, club VARCHAR) ### ANSWER SELECT AVG(goals_for) FROM table_name_53 WHERE goals_against > 59 AND club = "real avilés cf" AND goal_difference > -10</s>
{ "answer": "SELECT AVG(goals_for) FROM table_name_53 WHERE goals_against > 59 AND club = \"real avilés cf\" AND goal_difference > -10", "context": "CREATE TABLE table_name_53 (goals_for INTEGER, goal_difference VARCHAR, goals_against VARCHAR, club VARCHAR)", "question": "What is teh average amount of goals for club real avilés cf, which has more than 59 goals against and a -10 goal difference?" }
### QUESTION What is the average goal difference of club cultural leonesa, which has more than 27 points and less than 9 losses? ### CONTEXT CREATE TABLE table_name_63 (goal_difference INTEGER, club VARCHAR, points VARCHAR, losses VARCHAR) ### ANSWER SELECT AVG(goal_difference) FROM table_name_63 WHERE points > 27 AND losses < 9 AND club = "cultural leonesa"</s>
{ "answer": "SELECT AVG(goal_difference) FROM table_name_63 WHERE points > 27 AND losses < 9 AND club = \"cultural leonesa\"", "context": "CREATE TABLE table_name_63 (goal_difference INTEGER, club VARCHAR, points VARCHAR, losses VARCHAR)", "question": "What is the average goal difference of club cultural leonesa, which has more than 27 points and less than 9 losses?" }
### QUESTION Which position had 5 games played and a record of 1-2-2? ### CONTEXT CREATE TABLE table_name_63 (position VARCHAR, games_played VARCHAR, w_l_d VARCHAR) ### ANSWER SELECT position FROM table_name_63 WHERE games_played = 5 AND w_l_d = "1-2-2"</s>
{ "answer": "SELECT position FROM table_name_63 WHERE games_played = 5 AND w_l_d = \"1-2-2\"", "context": "CREATE TABLE table_name_63 (position VARCHAR, games_played VARCHAR, w_l_d VARCHAR)", "question": "Which position had 5 games played and a record of 1-2-2?" }
### QUESTION When the United States had a total score of 274 what was the average year? ### CONTEXT CREATE TABLE table_name_67 (year INTEGER, total_score VARCHAR, country VARCHAR) ### ANSWER SELECT AVG(year) FROM table_name_67 WHERE total_score = "274" AND country = "united states"</s>
{ "answer": "SELECT AVG(year) FROM table_name_67 WHERE total_score = \"274\" AND country = \"united states\"", "context": "CREATE TABLE table_name_67 (year INTEGER, total_score VARCHAR, country VARCHAR)", "question": "When the United States had a total score of 274 what was the average year?" }
### QUESTION What date has the format of CD and catalog of alca-274? ### CONTEXT CREATE TABLE table_name_72 (date VARCHAR, format VARCHAR, catalog VARCHAR) ### ANSWER SELECT date FROM table_name_72 WHERE format = "cd" AND catalog = "alca-274"</s>
{ "answer": "SELECT date FROM table_name_72 WHERE format = \"cd\" AND catalog = \"alca-274\"", "context": "CREATE TABLE table_name_72 (date VARCHAR, format VARCHAR, catalog VARCHAR)", "question": "What date has the format of CD and catalog of alca-274?" }
### QUESTION What is the location for the year under 2010 and the year Hei Zhi Hong won silver? ### CONTEXT CREATE TABLE table_name_67 (location VARCHAR, year VARCHAR, silver VARCHAR) ### ANSWER SELECT location FROM table_name_67 WHERE year < 2010 AND silver = "hei zhi hong"</s>
{ "answer": "SELECT location FROM table_name_67 WHERE year < 2010 AND silver = \"hei zhi hong\"", "context": "CREATE TABLE table_name_67 (location VARCHAR, year VARCHAR, silver VARCHAR)", "question": "What is the location for the year under 2010 and the year Hei Zhi Hong won silver?" }
### QUESTION What is the value for the byte string when the memory map, decimal, and floating points are all standard and the max memory is smaller than 512? ### CONTEXT CREATE TABLE table_name_23 (byte_string VARCHAR, max_memory__kwords_ VARCHAR, floating_point VARCHAR, memory_map VARCHAR, decimal VARCHAR) ### ANSWER SELECT byte_string FROM table_name_23 WHERE memory_map = "standard" AND decimal = "standard" AND floating_point = "standard" AND max_memory__kwords_ < 512</s>
{ "answer": "SELECT byte_string FROM table_name_23 WHERE memory_map = \"standard\" AND decimal = \"standard\" AND floating_point = \"standard\" AND max_memory__kwords_ < 512", "context": "CREATE TABLE table_name_23 (byte_string VARCHAR, max_memory__kwords_ VARCHAR, floating_point VARCHAR, memory_map VARCHAR, decimal VARCHAR)", "question": "What is the value for the byte string when the memory map, decimal, and floating points are all standard and the max memory is smaller than 512?" }
### QUESTION What model has both a standard byte string and floating-point? ### CONTEXT CREATE TABLE table_name_90 (model VARCHAR, byte_string VARCHAR, floating_point VARCHAR) ### ANSWER SELECT model FROM table_name_90 WHERE byte_string = "standard" AND floating_point = "standard"</s>
{ "answer": "SELECT model FROM table_name_90 WHERE byte_string = \"standard\" AND floating_point = \"standard\"", "context": "CREATE TABLE table_name_90 (model VARCHAR, byte_string VARCHAR, floating_point VARCHAR)", "question": "What model has both a standard byte string and floating-point?" }
### QUESTION What is the decimal value when the memory map and byte string are standard, and the max memory is 512? ### CONTEXT CREATE TABLE table_name_19 (decimal VARCHAR, max_memory__kwords_ VARCHAR, byte_string VARCHAR, memory_map VARCHAR) ### ANSWER SELECT decimal FROM table_name_19 WHERE byte_string = "standard" AND memory_map = "standard" AND max_memory__kwords_ = 512</s>
{ "answer": "SELECT decimal FROM table_name_19 WHERE byte_string = \"standard\" AND memory_map = \"standard\" AND max_memory__kwords_ = 512", "context": "CREATE TABLE table_name_19 (decimal VARCHAR, max_memory__kwords_ VARCHAR, byte_string VARCHAR, memory_map VARCHAR)", "question": "What is the decimal value when the memory map and byte string are standard, and the max memory is 512?" }
### QUESTION Can you tell me the sum of 100s that has the Team of deccan chargers, and the Match of 8, and the Average larger than 35.57? ### CONTEXT ### ANSWER SELECT SUM(_100s) FROM table_name_41 WHERE team = "deccan chargers" AND matches = 8 AND average > 35.57</s>
{ "answer": "SELECT SUM(_100s) FROM table_name_41 WHERE team = \"deccan chargers\" AND matches = 8 AND average > 35.57", "context": "", "question": "Can you tell me the sum of 100s that has the Team of deccan chargers, and the Match of 8, and the Average larger than 35.57?" }
### QUESTION Which Round has a Nationality of united states, and a College/Junior/Club Team (League) of breck school (ushs)? ### CONTEXT CREATE TABLE table_name_19 (round INTEGER, nationality VARCHAR, college_junior_club_team__league_ VARCHAR) ### ANSWER SELECT MIN(round) FROM table_name_19 WHERE nationality = "united states" AND college_junior_club_team__league_ = "breck school (ushs)"</s>
{ "answer": "SELECT MIN(round) FROM table_name_19 WHERE nationality = \"united states\" AND college_junior_club_team__league_ = \"breck school (ushs)\"", "context": "CREATE TABLE table_name_19 (round INTEGER, nationality VARCHAR, college_junior_club_team__league_ VARCHAR)", "question": "Which Round has a Nationality of united states, and a College/Junior/Club Team (League) of breck school (ushs)?" }
### QUESTION Which Runner(s)-up has a Margin of victory of 1 stroke, and a Tournament of world seniors invitational? ### CONTEXT CREATE TABLE table_name_34 (runner_s__up VARCHAR, margin_of_victory VARCHAR, tournament VARCHAR) ### ANSWER SELECT runner_s__up FROM table_name_34 WHERE margin_of_victory = "1 stroke" AND tournament = "world seniors invitational"</s>
{ "answer": "SELECT runner_s__up FROM table_name_34 WHERE margin_of_victory = \"1 stroke\" AND tournament = \"world seniors invitational\"", "context": "CREATE TABLE table_name_34 (runner_s__up VARCHAR, margin_of_victory VARCHAR, tournament VARCHAR)", "question": "Which Runner(s)-up has a Margin of victory of 1 stroke, and a Tournament of world seniors invitational?" }
### QUESTION What was the team that has a High rebounds of popeye jones (14), and when the Record was 16-28? ### CONTEXT CREATE TABLE table_name_86 (team VARCHAR, high_rebounds VARCHAR, record VARCHAR) ### ANSWER SELECT team FROM table_name_86 WHERE high_rebounds = "popeye jones (14)" AND record = "16-28"</s>
{ "answer": "SELECT team FROM table_name_86 WHERE high_rebounds = \"popeye jones (14)\" AND record = \"16-28\"", "context": "CREATE TABLE table_name_86 (team VARCHAR, high_rebounds VARCHAR, record VARCHAR)", "question": "What was the team that has a High rebounds of popeye jones (14), and when the Record was 16-28?" }
### QUESTION What is the score of the scores when Game had a Record of 17-29? ### CONTEXT CREATE TABLE table_name_27 (game INTEGER, record VARCHAR) ### ANSWER SELECT SUM(game) FROM table_name_27 WHERE record = "17-29"</s>
{ "answer": "SELECT SUM(game) FROM table_name_27 WHERE record = \"17-29\"", "context": "CREATE TABLE table_name_27 (game INTEGER, record VARCHAR)", "question": "What is the score of the scores when Game had a Record of 17-29?" }
### QUESTION What are the average net yards that have 9 as the touchdowns, 145 as the attempts, and yards per attempt greater than 4.8? ### CONTEXT CREATE TABLE table_name_87 (net_yards INTEGER, yards_per_attempt VARCHAR, touchdowns VARCHAR, attempts VARCHAR) ### ANSWER SELECT AVG(net_yards) FROM table_name_87 WHERE touchdowns = 9 AND attempts = 145 AND yards_per_attempt > 4.8</s>
{ "answer": "SELECT AVG(net_yards) FROM table_name_87 WHERE touchdowns = 9 AND attempts = 145 AND yards_per_attempt > 4.8", "context": "CREATE TABLE table_name_87 (net_yards INTEGER, yards_per_attempt VARCHAR, touchdowns VARCHAR, attempts VARCHAR)", "question": "What are the average net yards that have 9 as the touchdowns, 145 as the attempts, and yards per attempt greater than 4.8?" }
### QUESTION What is the smallest rank for an industry of banking, a company of bank of america, and profits (billion $) larger than 16.47? ### CONTEXT CREATE TABLE table_name_36 (rank INTEGER, profits__billion_$_ VARCHAR, industry VARCHAR, company VARCHAR) ### ANSWER SELECT MIN(rank) FROM table_name_36 WHERE industry = "banking" AND company = "bank of america" AND profits__billion_$_ > 16.47</s>
{ "answer": "SELECT MIN(rank) FROM table_name_36 WHERE industry = \"banking\" AND company = \"bank of america\" AND profits__billion_$_ > 16.47", "context": "CREATE TABLE table_name_36 (rank INTEGER, profits__billion_$_ VARCHAR, industry VARCHAR, company VARCHAR)", "question": "What is the smallest rank for an industry of banking, a company of bank of america, and profits (billion $) larger than 16.47?" }
### QUESTION What is the lowest market value (billion $) with a headquarter of usa , and the rank larger than 3, assets (billion$) larger than 208.34, and the company jpmorgan chase? ### CONTEXT CREATE TABLE table_name_2 (market_value__billion_ INTEGER, company VARCHAR, assets__billion_$_ VARCHAR, headquarters VARCHAR, rank VARCHAR) ### ANSWER SELECT MIN(market_value__billion_) AS $_ FROM table_name_2 WHERE headquarters = "usa" AND rank > 3 AND assets__billion_$_ > 208.34 AND company = "jpmorgan chase"</s>
{ "answer": "SELECT MIN(market_value__billion_) AS $_ FROM table_name_2 WHERE headquarters = \"usa\" AND rank > 3 AND assets__billion_$_ > 208.34 AND company = \"jpmorgan chase\"", "context": "CREATE TABLE table_name_2 (market_value__billion_ INTEGER, company VARCHAR, assets__billion_$_ VARCHAR, headquarters VARCHAR, rank VARCHAR)", "question": "What is the lowest market value (billion $) with a headquarter of usa , and the rank larger than 3, assets (billion$) larger than 208.34, and the company jpmorgan chase?" }
### QUESTION On what Date was Rafael Nadal the Opponent? ### CONTEXT CREATE TABLE table_name_37 (date VARCHAR, opponent VARCHAR) ### ANSWER SELECT date FROM table_name_37 WHERE opponent = "rafael nadal"</s>
{ "answer": "SELECT date FROM table_name_37 WHERE opponent = \"rafael nadal\"", "context": "CREATE TABLE table_name_37 (date VARCHAR, opponent VARCHAR)", "question": "On what Date was Rafael Nadal the Opponent?" }
### QUESTION What are the lowest points that have a Mugen V8 engine and a Reynard 91D chassis? ### CONTEXT CREATE TABLE table_name_36 (points INTEGER, engine VARCHAR, chassis VARCHAR) ### ANSWER SELECT MIN(points) FROM table_name_36 WHERE engine = "mugen v8" AND chassis = "reynard 91d"</s>
{ "answer": "SELECT MIN(points) FROM table_name_36 WHERE engine = \"mugen v8\" AND chassis = \"reynard 91d\"", "context": "CREATE TABLE table_name_36 (points INTEGER, engine VARCHAR, chassis VARCHAR)", "question": "What are the lowest points that have a Mugen V8 engine and a Reynard 91D chassis?" }
### QUESTION What is the name of the Leftfielder when Davey Lopes was the Second Baseman and first baseman was steve garvey, Shortstop of bill russell eariler than 1977? ### CONTEXT CREATE TABLE table_name_90 (leftfielder VARCHAR, year VARCHAR, shortstop VARCHAR, second_baseman VARCHAR, first_baseman VARCHAR) ### ANSWER SELECT leftfielder FROM table_name_90 WHERE second_baseman = "davey lopes" AND first_baseman = "steve garvey" AND shortstop = "bill russell" AND year > 1977</s>
{ "answer": "SELECT leftfielder FROM table_name_90 WHERE second_baseman = \"davey lopes\" AND first_baseman = \"steve garvey\" AND shortstop = \"bill russell\" AND year > 1977", "context": "CREATE TABLE table_name_90 (leftfielder VARCHAR, year VARCHAR, shortstop VARCHAR, second_baseman VARCHAR, first_baseman VARCHAR)", "question": "What is the name of the Leftfielder when Davey Lopes was the Second Baseman and first baseman was steve garvey, Shortstop of bill russell eariler than 1977?" }
### QUESTION What is the name of the shortstop when the Catcher was johnny roseboro, and a Third Baseman of jim lefebvre, and a Second Baseman of nate oliver? ### CONTEXT CREATE TABLE table_name_40 (shortstop VARCHAR, second_baseman VARCHAR, catcher VARCHAR, third_baseman VARCHAR) ### ANSWER SELECT shortstop FROM table_name_40 WHERE catcher = "johnny roseboro" AND third_baseman = "jim lefebvre" AND second_baseman = "nate oliver"</s>
{ "answer": "SELECT shortstop FROM table_name_40 WHERE catcher = \"johnny roseboro\" AND third_baseman = \"jim lefebvre\" AND second_baseman = \"nate oliver\"", "context": "CREATE TABLE table_name_40 (shortstop VARCHAR, second_baseman VARCHAR, catcher VARCHAR, third_baseman VARCHAR)", "question": "What is the name of the shortstop when the Catcher was johnny roseboro, and a Third Baseman of jim lefebvre, and a Second Baseman of nate oliver?" }
### QUESTION What is the name of the Leftfielder when the Shortstop was bill russell, and the Second Baseman was steve sax in 1983? ### CONTEXT CREATE TABLE table_name_25 (leftfielder VARCHAR, year VARCHAR, shortstop VARCHAR, second_baseman VARCHAR) ### ANSWER SELECT leftfielder FROM table_name_25 WHERE shortstop = "bill russell" AND second_baseman = "steve sax" AND year = 1983</s>
{ "answer": "SELECT leftfielder FROM table_name_25 WHERE shortstop = \"bill russell\" AND second_baseman = \"steve sax\" AND year = 1983", "context": "CREATE TABLE table_name_25 (leftfielder VARCHAR, year VARCHAR, shortstop VARCHAR, second_baseman VARCHAR)", "question": "What is the name of the Leftfielder when the Shortstop was bill russell, and the Second Baseman was steve sax in 1983?" }
### QUESTION Which Score has High points of raymond felton (32)? ### CONTEXT CREATE TABLE table_name_56 (score VARCHAR, high_points VARCHAR) ### ANSWER SELECT score FROM table_name_56 WHERE high_points = "raymond felton (32)"</s>
{ "answer": "SELECT score FROM table_name_56 WHERE high_points = \"raymond felton (32)\"", "context": "CREATE TABLE table_name_56 (score VARCHAR, high_points VARCHAR)", "question": "Which Score has High points of raymond felton (32)?" }
### QUESTION Which Team has a Winner of craig lowndes, and a Circuit of phillip island grand prix circuit? ### CONTEXT CREATE TABLE table_name_69 (team VARCHAR, winner VARCHAR, circuit VARCHAR) ### ANSWER SELECT team FROM table_name_69 WHERE winner = "craig lowndes" AND circuit = "phillip island grand prix circuit"</s>
{ "answer": "SELECT team FROM table_name_69 WHERE winner = \"craig lowndes\" AND circuit = \"phillip island grand prix circuit\"", "context": "CREATE TABLE table_name_69 (team VARCHAR, winner VARCHAR, circuit VARCHAR)", "question": "Which Team has a Winner of craig lowndes, and a Circuit of phillip island grand prix circuit?" }
### QUESTION Which Location Attendance has a High assists of raymond felton (5), and a Record of 35–44? ### CONTEXT CREATE TABLE table_name_17 (location_attendance VARCHAR, high_assists VARCHAR, record VARCHAR) ### ANSWER SELECT location_attendance FROM table_name_17 WHERE high_assists = "raymond felton (5)" AND record = "35–44"</s>
{ "answer": "SELECT location_attendance FROM table_name_17 WHERE high_assists = \"raymond felton (5)\" AND record = \"35–44\"", "context": "CREATE TABLE table_name_17 (location_attendance VARCHAR, high_assists VARCHAR, record VARCHAR)", "question": "Which Location Attendance has a High assists of raymond felton (5), and a Record of 35–44?" }
### QUESTION What is the service chage of the boat howitzers with a 12-pdr light destination? ### CONTEXT CREATE TABLE table_name_42 (service_charge VARCHAR, designation VARCHAR) ### ANSWER SELECT service_charge FROM table_name_42 WHERE designation = "12-pdr light"</s>
{ "answer": "SELECT service_charge FROM table_name_42 WHERE designation = \"12-pdr light\"", "context": "CREATE TABLE table_name_42 (service_charge VARCHAR, designation VARCHAR)", "question": "What is the service chage of the boat howitzers with a 12-pdr light destination?" }
### QUESTION What is the bore of the boat howitzers with a 12-pdr heavy designation? ### CONTEXT CREATE TABLE table_name_8 (bore VARCHAR, designation VARCHAR) ### ANSWER SELECT bore FROM table_name_8 WHERE designation = "12-pdr heavy"</s>
{ "answer": "SELECT bore FROM table_name_8 WHERE designation = \"12-pdr heavy\"", "context": "CREATE TABLE table_name_8 (bore VARCHAR, designation VARCHAR)", "question": "What is the bore of the boat howitzers with a 12-pdr heavy designation?" }
### QUESTION How many Picks have a Position of defensive end, and an Overall smaller than 33? ### CONTEXT CREATE TABLE table_name_22 (pick__number VARCHAR, position VARCHAR, overall VARCHAR) ### ANSWER SELECT COUNT(pick__number) FROM table_name_22 WHERE position = "defensive end" AND overall < 33</s>
{ "answer": "SELECT COUNT(pick__number) FROM table_name_22 WHERE position = \"defensive end\" AND overall < 33", "context": "CREATE TABLE table_name_22 (pick__number VARCHAR, position VARCHAR, overall VARCHAR)", "question": "How many Picks have a Position of defensive end, and an Overall smaller than 33?" }
### QUESTION What is moving from esp with transfer fee of youth system? ### CONTEXT CREATE TABLE table_name_64 (moving_from VARCHAR, country VARCHAR, transfer_fee VARCHAR) ### ANSWER SELECT moving_from FROM table_name_64 WHERE country = "esp" AND transfer_fee = "youth system"</s>
{ "answer": "SELECT moving_from FROM table_name_64 WHERE country = \"esp\" AND transfer_fee = \"youth system\"", "context": "CREATE TABLE table_name_64 (moving_from VARCHAR, country VARCHAR, transfer_fee VARCHAR)", "question": "What is moving from esp with transfer fee of youth system?" }
### QUESTION What is Score, when Partnering is "Alexander Waske", and when Opponents In The Final is "Rafael Nadal Bartolomé Salvá-Vidal"? ### CONTEXT CREATE TABLE table_name_26 (score VARCHAR, partnering VARCHAR, opponents_in_the_final VARCHAR) ### ANSWER SELECT score FROM table_name_26 WHERE partnering = "alexander waske" AND opponents_in_the_final = "rafael nadal bartolomé salvá-vidal"</s>
{ "answer": "SELECT score FROM table_name_26 WHERE partnering = \"alexander waske\" AND opponents_in_the_final = \"rafael nadal bartolomé salvá-vidal\"", "context": "CREATE TABLE table_name_26 (score VARCHAR, partnering VARCHAR, opponents_in_the_final VARCHAR)", "question": "What is Score, when Partnering is \"Alexander Waske\", and when Opponents In The Final is \"Rafael Nadal Bartolomé Salvá-Vidal\"?" }
### QUESTION What is the highest Gold that has a Silver less than 7 and Bronze less than 0 ### CONTEXT CREATE TABLE table_name_17 (gold INTEGER, silver VARCHAR, bronze VARCHAR) ### ANSWER SELECT MAX(gold) FROM table_name_17 WHERE silver < 7 AND bronze < 0</s>
{ "answer": "SELECT MAX(gold) FROM table_name_17 WHERE silver < 7 AND bronze < 0", "context": "CREATE TABLE table_name_17 (gold INTEGER, silver VARCHAR, bronze VARCHAR)", "question": "What is the highest Gold that has a Silver less than 7 and Bronze less than 0" }
### QUESTION when points for was points for what was the points? ### CONTEXT CREATE TABLE table_name_86 (points VARCHAR, points_for VARCHAR) ### ANSWER SELECT points FROM table_name_86 WHERE points_for = "points for"</s>
{ "answer": "SELECT points FROM table_name_86 WHERE points_for = \"points for\"", "context": "CREATE TABLE table_name_86 (points VARCHAR, points_for VARCHAR)", "question": "when points for was points for what was the points?" }
### QUESTION Opponents of sebastián decoud santiago giraldo had what surface? ### CONTEXT CREATE TABLE table_name_71 (surface VARCHAR, opponents VARCHAR) ### ANSWER SELECT surface FROM table_name_71 WHERE opponents = "sebastián decoud santiago giraldo"</s>
{ "answer": "SELECT surface FROM table_name_71 WHERE opponents = \"sebastián decoud santiago giraldo\"", "context": "CREATE TABLE table_name_71 (surface VARCHAR, opponents VARCHAR)", "question": "Opponents of sebastián decoud santiago giraldo had what surface?" }
### QUESTION Who is the player born before 1985 who is less than 2.02 tall? ### CONTEXT CREATE TABLE table_name_2 (player VARCHAR, year_born VARCHAR, height VARCHAR) ### ANSWER SELECT player FROM table_name_2 WHERE year_born < 1985 AND height < 2.02</s>
{ "answer": "SELECT player FROM table_name_2 WHERE year_born < 1985 AND height < 2.02", "context": "CREATE TABLE table_name_2 (player VARCHAR, year_born VARCHAR, height VARCHAR)", "question": "Who is the player born before 1985 who is less than 2.02 tall?" }
### QUESTION Which Rank that a Name of thomas morgenstern, and Points larger than 288.7? ### CONTEXT CREATE TABLE table_name_29 (rank INTEGER, name VARCHAR, points VARCHAR) ### ANSWER SELECT SUM(rank) FROM table_name_29 WHERE name = "thomas morgenstern" AND points > 288.7</s>
{ "answer": "SELECT SUM(rank) FROM table_name_29 WHERE name = \"thomas morgenstern\" AND points > 288.7", "context": "CREATE TABLE table_name_29 (rank INTEGER, name VARCHAR, points VARCHAR)", "question": "Which Rank that a Name of thomas morgenstern, and Points larger than 288.7?" }
### QUESTION Which call sign has a frequency of FM 105.3? ### CONTEXT CREATE TABLE table_name_81 (call_sign VARCHAR, frequency VARCHAR) ### ANSWER SELECT call_sign FROM table_name_81 WHERE frequency = "fm 105.3"</s>
{ "answer": "SELECT call_sign FROM table_name_81 WHERE frequency = \"fm 105.3\"", "context": "CREATE TABLE table_name_81 (call_sign VARCHAR, frequency VARCHAR)", "question": "Which call sign has a frequency of FM 105.3?" }
### QUESTION what is the wind speed when brenda morehead was in the united states? ### CONTEXT CREATE TABLE table_name_16 (wind__m_s_ INTEGER, nation VARCHAR, athlete VARCHAR) ### ANSWER SELECT MIN(wind__m_s_) FROM table_name_16 WHERE nation = "united states" AND athlete = "brenda morehead"</s>
{ "answer": "SELECT MIN(wind__m_s_) FROM table_name_16 WHERE nation = \"united states\" AND athlete = \"brenda morehead\"", "context": "CREATE TABLE table_name_16 (wind__m_s_ INTEGER, nation VARCHAR, athlete VARCHAR)", "question": "what is the wind speed when brenda morehead was in the united states?" }
### QUESTION WHAT CHAMPION HAD RICHMOND RIVER COURSE ON JUNE 13? ### CONTEXT CREATE TABLE table_name_39 (champion VARCHAR, course VARCHAR, date VARCHAR) ### ANSWER SELECT champion FROM table_name_39 WHERE course = "richmond river" AND date = "june 13"</s>
{ "answer": "SELECT champion FROM table_name_39 WHERE course = \"richmond river\" AND date = \"june 13\"", "context": "CREATE TABLE table_name_39 (champion VARCHAR, course VARCHAR, date VARCHAR)", "question": "WHAT CHAMPION HAD RICHMOND RIVER COURSE ON JUNE 13?" }
### QUESTION What is the sum of the Europe totals for players with other appearances of 0, league appearances under 328, and a position of MF? ### CONTEXT CREATE TABLE table_name_72 (europe INTEGER, position VARCHAR, others VARCHAR, league VARCHAR) ### ANSWER SELECT SUM(europe) FROM table_name_72 WHERE others = 0 AND league < 328 AND position = "mf"</s>
{ "answer": "SELECT SUM(europe) FROM table_name_72 WHERE others = 0 AND league < 328 AND position = \"mf\"", "context": "CREATE TABLE table_name_72 (europe INTEGER, position VARCHAR, others VARCHAR, league VARCHAR)", "question": "What is the sum of the Europe totals for players with other appearances of 0, league appearances under 328, and a position of MF?" }
### QUESTION Occupational pensions of 7%, and a Working tax credit of 2%, and a Other social security benefits of 6% has what investment income? ### CONTEXT CREATE TABLE table_name_39 (investment_income VARCHAR, other_social_security_benefits VARCHAR, occupational_pensions VARCHAR, working_tax_credit VARCHAR) ### ANSWER SELECT investment_income FROM table_name_39 WHERE occupational_pensions = "7%" AND working_tax_credit = "2%" AND other_social_security_benefits = "6%"</s>
{ "answer": "SELECT investment_income FROM table_name_39 WHERE occupational_pensions = \"7%\" AND working_tax_credit = \"2%\" AND other_social_security_benefits = \"6%\"", "context": "CREATE TABLE table_name_39 (investment_income VARCHAR, other_social_security_benefits VARCHAR, occupational_pensions VARCHAR, working_tax_credit VARCHAR)", "question": "Occupational pensions of 7%, and a Working tax credit of 2%, and a Other social security benefits of 6% has what investment income?" }
### QUESTION Who is the winner of the Florence to Genoa course? ### CONTEXT CREATE TABLE table_name_95 (winner VARCHAR, course VARCHAR) ### ANSWER SELECT winner FROM table_name_95 WHERE course = "florence to genoa"</s>
{ "answer": "SELECT winner FROM table_name_95 WHERE course = \"florence to genoa\"", "context": "CREATE TABLE table_name_95 (winner VARCHAR, course VARCHAR)", "question": "Who is the winner of the Florence to Genoa course?" }
### QUESTION State pensions of 7%, and a Self employed of 7%, and a Other income sources of 2% has what investment income? ### CONTEXT CREATE TABLE table_name_67 (investment_income VARCHAR, other_income_sources VARCHAR, state_pensions VARCHAR, self_employed VARCHAR) ### ANSWER SELECT investment_income FROM table_name_67 WHERE state_pensions = "7%" AND self_employed = "7%" AND other_income_sources = "2%"</s>
{ "answer": "SELECT investment_income FROM table_name_67 WHERE state_pensions = \"7%\" AND self_employed = \"7%\" AND other_income_sources = \"2%\"", "context": "CREATE TABLE table_name_67 (investment_income VARCHAR, other_income_sources VARCHAR, state_pensions VARCHAR, self_employed VARCHAR)", "question": "State pensions of 7%, and a Self employed of 7%, and a Other income sources of 2% has what investment income?" }
### QUESTION Other income sources of 2%, and a State pensions of 7%, and a Working tax credit of 2%, and a Employment ( salaries & wages) of 66% has what occupational pensions? ### CONTEXT CREATE TABLE table_name_34 (occupational_pensions VARCHAR, working_tax_credit VARCHAR, employment___salaries_ VARCHAR, _wages_ VARCHAR, other_income_sources VARCHAR, state_pensions VARCHAR) ### ANSWER SELECT occupational_pensions FROM table_name_34 WHERE other_income_sources = "2%" AND state_pensions = "7%" AND working_tax_credit = "2%" AND employment___salaries_ & _wages_ = "66%"</s>
{ "answer": "SELECT occupational_pensions FROM table_name_34 WHERE other_income_sources = \"2%\" AND state_pensions = \"7%\" AND working_tax_credit = \"2%\" AND employment___salaries_ & _wages_ = \"66%\"", "context": "CREATE TABLE table_name_34 (occupational_pensions VARCHAR, working_tax_credit VARCHAR, employment___salaries_ VARCHAR, _wages_ VARCHAR, other_income_sources VARCHAR, state_pensions VARCHAR)", "question": "Other income sources of 2%, and a State pensions of 7%, and a Working tax credit of 2%, and a Employment ( salaries & wages) of 66% has what occupational pensions?" }
### QUESTION Employment ( salaries & wages) of 64%, and a Occupational pensions of 6% has what working tax credit? ### CONTEXT CREATE TABLE table_name_20 (working_tax_credit VARCHAR, occupational_pensions VARCHAR, employment___salaries_ VARCHAR, _wages_ VARCHAR) ### ANSWER SELECT working_tax_credit FROM table_name_20 WHERE employment___salaries_ & _wages_ = "64%" AND occupational_pensions = "6%"</s>
{ "answer": "SELECT working_tax_credit FROM table_name_20 WHERE employment___salaries_ & _wages_ = \"64%\" AND occupational_pensions = \"6%\"", "context": "CREATE TABLE table_name_20 (working_tax_credit VARCHAR, occupational_pensions VARCHAR, employment___salaries_ VARCHAR, _wages_ VARCHAR)", "question": "Employment ( salaries & wages) of 64%, and a Occupational pensions of 6% has what working tax credit?" }
### QUESTION What team was the opponent in the 2008–09 season, with a final score of 2–3 l? ### CONTEXT CREATE TABLE table_name_43 (opponent VARCHAR, season VARCHAR, final_score VARCHAR) ### ANSWER SELECT opponent FROM table_name_43 WHERE season = "2008–09" AND final_score = "2–3 l"</s>
{ "answer": "SELECT opponent FROM table_name_43 WHERE season = \"2008–09\" AND final_score = \"2–3 l\"", "context": "CREATE TABLE table_name_43 (opponent VARCHAR, season VARCHAR, final_score VARCHAR)", "question": "What team was the opponent in the 2008–09 season, with a final score of 2–3 l?" }
### QUESTION what is the sum of bronze when the rank is 5, the nation is poland and gold is less than 0? ### CONTEXT CREATE TABLE table_name_89 (bronze INTEGER, gold VARCHAR, rank VARCHAR, nation VARCHAR) ### ANSWER SELECT SUM(bronze) FROM table_name_89 WHERE rank = 5 AND nation = "poland" AND gold < 0</s>
{ "answer": "SELECT SUM(bronze) FROM table_name_89 WHERE rank = 5 AND nation = \"poland\" AND gold < 0", "context": "CREATE TABLE table_name_89 (bronze INTEGER, gold VARCHAR, rank VARCHAR, nation VARCHAR)", "question": "what is the sum of bronze when the rank is 5, the nation is poland and gold is less than 0?" }
### QUESTION Name the Losing BP with 22 played and 9 Try BP. ### CONTEXT CREATE TABLE table_name_72 (losing_bp VARCHAR, played VARCHAR, try_bp VARCHAR) ### ANSWER SELECT losing_bp FROM table_name_72 WHERE played = "22" AND try_bp = "9"</s>
{ "answer": "SELECT losing_bp FROM table_name_72 WHERE played = \"22\" AND try_bp = \"9\"", "context": "CREATE TABLE table_name_72 (losing_bp VARCHAR, played VARCHAR, try_bp VARCHAR)", "question": "Name the Losing BP with 22 played and 9 Try BP." }
### QUESTION When is the Opponent of new england patriots? ### CONTEXT CREATE TABLE table_name_3 (time___et__ VARCHAR, opponent VARCHAR) ### ANSWER SELECT time___et__ FROM table_name_3 WHERE opponent = "new england patriots"</s>
{ "answer": "SELECT time___et__ FROM table_name_3 WHERE opponent = \"new england patriots\"", "context": "CREATE TABLE table_name_3 (time___et__ VARCHAR, opponent VARCHAR)", "question": "When is the Opponent of new england patriots?" }
### QUESTION Which High rebounds have a Game larger than 2, and a Team of @ denver, and High assists of kobe bryant (5)? ### CONTEXT CREATE TABLE table_name_27 (high_rebounds VARCHAR, high_assists VARCHAR, game VARCHAR, team VARCHAR) ### ANSWER SELECT high_rebounds FROM table_name_27 WHERE game > 2 AND team = "@ denver" AND high_assists = "kobe bryant (5)"</s>
{ "answer": "SELECT high_rebounds FROM table_name_27 WHERE game > 2 AND team = \"@ denver\" AND high_assists = \"kobe bryant (5)\"", "context": "CREATE TABLE table_name_27 (high_rebounds VARCHAR, high_assists VARCHAR, game VARCHAR, team VARCHAR)", "question": "Which High rebounds have a Game larger than 2, and a Team of @ denver, and High assists of kobe bryant (5)?" }
### QUESTION What is the average sales for the company with market value of 204.9bil and profits under 20.6bil? ### CONTEXT CREATE TABLE table_name_18 (sales__billion_ INTEGER, market_value__billion_$_ VARCHAR, profits__billion_$_ VARCHAR) ### ANSWER SELECT AVG(sales__billion_) AS $_ FROM table_name_18 WHERE market_value__billion_$_ = 204.9 AND profits__billion_$_ < 20.6</s>
{ "answer": "SELECT AVG(sales__billion_) AS $_ FROM table_name_18 WHERE market_value__billion_$_ = 204.9 AND profits__billion_$_ < 20.6", "context": "CREATE TABLE table_name_18 (sales__billion_ INTEGER, market_value__billion_$_ VARCHAR, profits__billion_$_ VARCHAR)", "question": "What is the average sales for the company with market value of 204.9bil and profits under 20.6bil?" }
### QUESTION Which is the latest year that has an engine of Offenhauser l4, a chassis of Kurtis Kraft 500c, and the entrant of Federal Engineering? ### CONTEXT CREATE TABLE table_name_82 (year INTEGER, entrant VARCHAR, engine VARCHAR, chassis VARCHAR) ### ANSWER SELECT MAX(year) FROM table_name_82 WHERE engine = "offenhauser l4" AND chassis = "kurtis kraft 500c" AND entrant = "federal engineering"</s>
{ "answer": "SELECT MAX(year) FROM table_name_82 WHERE engine = \"offenhauser l4\" AND chassis = \"kurtis kraft 500c\" AND entrant = \"federal engineering\"", "context": "CREATE TABLE table_name_82 (year INTEGER, entrant VARCHAR, engine VARCHAR, chassis VARCHAR)", "question": "Which is the latest year that has an engine of Offenhauser l4, a chassis of Kurtis Kraft 500c, and the entrant of Federal Engineering?" }
### QUESTION What is the lowest pick # of John Ayres? ### CONTEXT CREATE TABLE table_name_15 (pick__number INTEGER, name VARCHAR) ### ANSWER SELECT MIN(pick__number) FROM table_name_15 WHERE name = "john ayres"</s>
{ "answer": "SELECT MIN(pick__number) FROM table_name_15 WHERE name = \"john ayres\"", "context": "CREATE TABLE table_name_15 (pick__number INTEGER, name VARCHAR)", "question": "What is the lowest pick # of John Ayres?" }
### QUESTION What is the final score in 2007 for the world league in novi sad played against Italy? ### CONTEXT CREATE TABLE table_name_31 (final_score VARCHAR, opponent VARCHAR, town VARCHAR, year VARCHAR, competition VARCHAR) ### ANSWER SELECT final_score FROM table_name_31 WHERE year = 2007 AND competition = "world league" AND town = "novi sad" AND opponent = "italy"</s>
{ "answer": "SELECT final_score FROM table_name_31 WHERE year = 2007 AND competition = \"world league\" AND town = \"novi sad\" AND opponent = \"italy\"", "context": "CREATE TABLE table_name_31 (final_score VARCHAR, opponent VARCHAR, town VARCHAR, year VARCHAR, competition VARCHAR)", "question": "What is the final score in 2007 for the world league in novi sad played against Italy?" }
### QUESTION What is the last match with a resigned manner of departure and a round 1 date of vacancy? ### CONTEXT CREATE TABLE table_name_96 (last_match VARCHAR, manner_of_departure VARCHAR, date_of_vacancy VARCHAR) ### ANSWER SELECT last_match FROM table_name_96 WHERE manner_of_departure = "resigned" AND date_of_vacancy = "round 1"</s>
{ "answer": "SELECT last_match FROM table_name_96 WHERE manner_of_departure = \"resigned\" AND date_of_vacancy = \"round 1\"", "context": "CREATE TABLE table_name_96 (last_match VARCHAR, manner_of_departure VARCHAR, date_of_vacancy VARCHAR)", "question": "What is the last match with a resigned manner of departure and a round 1 date of vacancy?" }
### QUESTION Which rider had less than 342 points in no more than 76 rides in 7 matches with more than 2 bonus points? ### CONTEXT CREATE TABLE table_name_37 (rider VARCHAR, bonus_pts VARCHAR, matches VARCHAR, total_points VARCHAR, rides VARCHAR) ### ANSWER SELECT rider FROM table_name_37 WHERE total_points < 342 AND rides < 76 AND matches = 7 AND bonus_pts > 2</s>
{ "answer": "SELECT rider FROM table_name_37 WHERE total_points < 342 AND rides < 76 AND matches = 7 AND bonus_pts > 2", "context": "CREATE TABLE table_name_37 (rider VARCHAR, bonus_pts VARCHAR, matches VARCHAR, total_points VARCHAR, rides VARCHAR)", "question": "Which rider had less than 342 points in no more than 76 rides in 7 matches with more than 2 bonus points?" }
### QUESTION How many episodes have a share of 16.2% and an episode number of less than 1? ### CONTEXT CREATE TABLE table_name_82 (total_viewers VARCHAR, share VARCHAR, episode_no VARCHAR) ### ANSWER SELECT COUNT(total_viewers) FROM table_name_82 WHERE share = "16.2%" AND episode_no < 1</s>
{ "answer": "SELECT COUNT(total_viewers) FROM table_name_82 WHERE share = \"16.2%\" AND episode_no < 1", "context": "CREATE TABLE table_name_82 (total_viewers VARCHAR, share VARCHAR, episode_no VARCHAR)", "question": "How many episodes have a share of 16.2% and an episode number of less than 1?" }
### QUESTION WHAT WAS THE LOWEST CAR # WITH SON-E-WA, AND 2012 START YEAR? ### CONTEXT CREATE TABLE table_name_11 (car__number INTEGER, current_car VARCHAR, year_started VARCHAR) ### ANSWER SELECT MIN(car__number) FROM table_name_11 WHERE current_car = "son-e-wa" AND year_started < 2012</s>
{ "answer": "SELECT MIN(car__number) FROM table_name_11 WHERE current_car = \"son-e-wa\" AND year_started < 2012", "context": "CREATE TABLE table_name_11 (car__number INTEGER, current_car VARCHAR, year_started VARCHAR)", "question": "WHAT WAS THE LOWEST CAR # WITH SON-E-WA, AND 2012 START YEAR?" }
### QUESTION What's greatest attendance on May 7? ### CONTEXT CREATE TABLE table_name_89 (attendance INTEGER, date VARCHAR) ### ANSWER SELECT MAX(attendance) FROM table_name_89 WHERE date = "may 7"</s>
{ "answer": "SELECT MAX(attendance) FROM table_name_89 WHERE date = \"may 7\"", "context": "CREATE TABLE table_name_89 (attendance INTEGER, date VARCHAR)", "question": "What's greatest attendance on May 7?" }
### QUESTION On what date did the person leave office who died on October 23, 1887 and who served 2 years? ### CONTEXT CREATE TABLE table_name_58 (left_office VARCHAR, years_in_office VARCHAR, death VARCHAR) ### ANSWER SELECT left_office FROM table_name_58 WHERE years_in_office = "2" AND death = "october 23, 1887"</s>
{ "answer": "SELECT left_office FROM table_name_58 WHERE years_in_office = \"2\" AND death = \"october 23, 1887\"", "context": "CREATE TABLE table_name_58 (left_office VARCHAR, years_in_office VARCHAR, death VARCHAR)", "question": "On what date did the person leave office who died on October 23, 1887 and who served 2 years?" }
### QUESTION What is the largest amount of wins when there are less than 5 points, the class is 500cc, the team is norton, and the year is more recent than 1955? ### CONTEXT CREATE TABLE table_name_1 (wins INTEGER, year VARCHAR, team VARCHAR, points VARCHAR, class VARCHAR) ### ANSWER SELECT MAX(wins) FROM table_name_1 WHERE points < 5 AND class = "500cc" AND team = "norton" AND year > 1955</s>
{ "answer": "SELECT MAX(wins) FROM table_name_1 WHERE points < 5 AND class = \"500cc\" AND team = \"norton\" AND year > 1955", "context": "CREATE TABLE table_name_1 (wins INTEGER, year VARCHAR, team VARCHAR, points VARCHAR, class VARCHAR)", "question": "What is the largest amount of wins when there are less than 5 points, the class is 500cc, the team is norton, and the year is more recent than 1955?" }
### QUESTION How big was the crowd when the South Dragons were the away team at the Gold Coast Convention Centre? ### CONTEXT CREATE TABLE table_name_94 (crowd VARCHAR, away_team VARCHAR, venue VARCHAR) ### ANSWER SELECT crowd FROM table_name_94 WHERE away_team = "south dragons" AND venue = "gold coast convention centre"</s>
{ "answer": "SELECT crowd FROM table_name_94 WHERE away_team = \"south dragons\" AND venue = \"gold coast convention centre\"", "context": "CREATE TABLE table_name_94 (crowd VARCHAR, away_team VARCHAR, venue VARCHAR)", "question": "How big was the crowd when the South Dragons were the away team at the Gold Coast Convention Centre?" }
### QUESTION What is teh stage with Daniele Bennati as the points classification and Giovanni VIsconti as the general classification? ### CONTEXT CREATE TABLE table_name_36 (stage VARCHAR, points_classification VARCHAR, general_classification VARCHAR) ### ANSWER SELECT stage FROM table_name_36 WHERE points_classification = "daniele bennati" AND general_classification = "giovanni visconti"</s>
{ "answer": "SELECT stage FROM table_name_36 WHERE points_classification = \"daniele bennati\" AND general_classification = \"giovanni visconti\"", "context": "CREATE TABLE table_name_36 (stage VARCHAR, points_classification VARCHAR, general_classification VARCHAR)", "question": "What is teh stage with Daniele Bennati as the points classification and Giovanni VIsconti as the general classification?" }
### QUESTION What is the largest metropolitan area of the Central-West? ### CONTEXT CREATE TABLE table_name_99 (largest_metropolitan_area VARCHAR, name VARCHAR) ### ANSWER SELECT largest_metropolitan_area FROM table_name_99 WHERE name = "central-west"</s>
{ "answer": "SELECT largest_metropolitan_area FROM table_name_99 WHERE name = \"central-west\"", "context": "CREATE TABLE table_name_99 (largest_metropolitan_area VARCHAR, name VARCHAR)", "question": "What is the largest metropolitan area of the Central-West?" }
### QUESTION What is the general classification of the stage 3 with Daniele Bennati as the points classification and Morris Possoni as the young rider classification. ### CONTEXT CREATE TABLE table_name_21 (general_classification VARCHAR, stage VARCHAR, points_classification VARCHAR, young_rider_classification VARCHAR) ### ANSWER SELECT general_classification FROM table_name_21 WHERE points_classification = "daniele bennati" AND young_rider_classification = "morris possoni" AND stage = "3"</s>
{ "answer": "SELECT general_classification FROM table_name_21 WHERE points_classification = \"daniele bennati\" AND young_rider_classification = \"morris possoni\" AND stage = \"3\"", "context": "CREATE TABLE table_name_21 (general_classification VARCHAR, stage VARCHAR, points_classification VARCHAR, young_rider_classification VARCHAR)", "question": "What is the general classification of the stage 3 with Daniele Bennati as the points classification and Morris Possoni as the young rider classification." }
### QUESTION What is the general classification with riccardo riccò as the young rider classification? ### CONTEXT CREATE TABLE table_name_37 (general_classification VARCHAR, young_rider_classification VARCHAR) ### ANSWER SELECT general_classification FROM table_name_37 WHERE young_rider_classification = "riccardo riccò"</s>
{ "answer": "SELECT general_classification FROM table_name_37 WHERE young_rider_classification = \"riccardo riccò\"", "context": "CREATE TABLE table_name_37 (general_classification VARCHAR, young_rider_classification VARCHAR)", "question": "What is the general classification with riccardo riccò as the young rider classification?" }
### QUESTION What is the point classification with chris anker sørensen as the young rider classification and Christian vande velde as the general classification? ### CONTEXT CREATE TABLE table_name_93 (points_classification VARCHAR, young_rider_classification VARCHAR, general_classification VARCHAR) ### ANSWER SELECT points_classification FROM table_name_93 WHERE young_rider_classification = "chris anker sørensen" AND general_classification = "christian vande velde"</s>
{ "answer": "SELECT points_classification FROM table_name_93 WHERE young_rider_classification = \"chris anker sørensen\" AND general_classification = \"christian vande velde\"", "context": "CREATE TABLE table_name_93 (points_classification VARCHAR, young_rider_classification VARCHAR, general_classification VARCHAR)", "question": "What is the point classification with chris anker sørensen as the young rider classification and Christian vande velde as the general classification?" }
### QUESTION Who was the leader at the summit when the stage was larger than 14, the category was 1, the start was Saint-Girons, and the finish was Cauterets? ### CONTEXT CREATE TABLE table_name_78 (leader_at_the_summit VARCHAR, finish VARCHAR, start VARCHAR, stage VARCHAR, category VARCHAR) ### ANSWER SELECT leader_at_the_summit FROM table_name_78 WHERE stage > 14 AND category = 1 AND start = "saint-girons" AND finish = "cauterets"</s>
{ "answer": "SELECT leader_at_the_summit FROM table_name_78 WHERE stage > 14 AND category = 1 AND start = \"saint-girons\" AND finish = \"cauterets\"", "context": "CREATE TABLE table_name_78 (leader_at_the_summit VARCHAR, finish VARCHAR, start VARCHAR, stage VARCHAR, category VARCHAR)", "question": "Who was the leader at the summit when the stage was larger than 14, the category was 1, the start was Saint-Girons, and the finish was Cauterets?" }
### QUESTION What was the earliest year that had a start of Saint-Gaudens and a stage smaller than 15? ### CONTEXT CREATE TABLE table_name_56 (year INTEGER, start VARCHAR, stage VARCHAR) ### ANSWER SELECT MIN(year) FROM table_name_56 WHERE start = "saint-gaudens" AND stage < 15</s>
{ "answer": "SELECT MIN(year) FROM table_name_56 WHERE start = \"saint-gaudens\" AND stage < 15", "context": "CREATE TABLE table_name_56 (year INTEGER, start VARCHAR, stage VARCHAR)", "question": "What was the earliest year that had a start of Saint-Gaudens and a stage smaller than 15?" }
### QUESTION What is the Rank that has a Venue of bellerive oval , hobart, and a Margin of 115 runs? ### CONTEXT CREATE TABLE table_name_31 (rank VARCHAR, venue VARCHAR, margin VARCHAR) ### ANSWER SELECT rank FROM table_name_31 WHERE venue = "bellerive oval , hobart" AND margin = "115 runs"</s>
{ "answer": "SELECT rank FROM table_name_31 WHERE venue = \"bellerive oval , hobart\" AND margin = \"115 runs\"", "context": "CREATE TABLE table_name_31 (rank VARCHAR, venue VARCHAR, margin VARCHAR)", "question": "What is the Rank that has a Venue of bellerive oval , hobart, and a Margin of 115 runs?" }
### QUESTION In which title was Ann Rutherford the leading lady for Joseph Kane? ### CONTEXT CREATE TABLE table_name_73 (title VARCHAR, leading_lady VARCHAR, director VARCHAR) ### ANSWER SELECT title FROM table_name_73 WHERE leading_lady = "ann rutherford" AND director = "joseph kane"</s>
{ "answer": "SELECT title FROM table_name_73 WHERE leading_lady = \"ann rutherford\" AND director = \"joseph kane\"", "context": "CREATE TABLE table_name_73 (title VARCHAR, leading_lady VARCHAR, director VARCHAR)", "question": "In which title was Ann Rutherford the leading lady for Joseph Kane?" }