text
stringlengths
150
1.06k
source
dict
### QUESTION what is the sum of the member when the saros is more than 127, gamma is less than 1.1508 and the magnitude is 0.742? ### CONTEXT CREATE TABLE table_name_11 (member INTEGER, magnitude VARCHAR, saros VARCHAR, gamma VARCHAR) ### ANSWER SELECT SUM(member) FROM table_name_11 WHERE saros > 127 AND gamma < 1.1508 AND magnitude = 0.742</s>
{ "answer": "SELECT SUM(member) FROM table_name_11 WHERE saros > 127 AND gamma < 1.1508 AND magnitude = 0.742", "context": "CREATE TABLE table_name_11 (member INTEGER, magnitude VARCHAR, saros VARCHAR, gamma VARCHAR)", "question": "what is the sum of the member when the saros is more than 127, gamma is less than 1.1508 and the magnitude is 0.742?" }
### QUESTION What was the lowest draw from Ballarat FL of sunbury, and byes larger than 2? ### CONTEXT CREATE TABLE table_name_94 (draws INTEGER, ballarat_fl VARCHAR, byes VARCHAR) ### ANSWER SELECT MIN(draws) FROM table_name_94 WHERE ballarat_fl = "sunbury" AND byes > 2</s>
{ "answer": "SELECT MIN(draws) FROM table_name_94 WHERE ballarat_fl = \"sunbury\" AND byes > 2", "context": "CREATE TABLE table_name_94 (draws INTEGER, ballarat_fl VARCHAR, byes VARCHAR)", "question": "What was the lowest draw from Ballarat FL of sunbury, and byes larger than 2?" }
### QUESTION What year gave a nominated result for the room 222 series? ### CONTEXT CREATE TABLE table_name_66 (year VARCHAR, result VARCHAR, series VARCHAR) ### ANSWER SELECT COUNT(year) FROM table_name_66 WHERE result = "nominated" AND series = "room 222"</s>
{ "answer": "SELECT COUNT(year) FROM table_name_66 WHERE result = \"nominated\" AND series = \"room 222\"", "context": "CREATE TABLE table_name_66 (year VARCHAR, result VARCHAR, series VARCHAR)", "question": "What year gave a nominated result for the room 222 series?" }
### QUESTION What was actor Teresa Graves's series before the year 1993? ### CONTEXT CREATE TABLE table_name_82 (series VARCHAR, year VARCHAR, actor VARCHAR) ### ANSWER SELECT series FROM table_name_82 WHERE year < 1993 AND actor = "teresa graves"</s>
{ "answer": "SELECT series FROM table_name_82 WHERE year < 1993 AND actor = \"teresa graves\"", "context": "CREATE TABLE table_name_82 (series VARCHAR, year VARCHAR, actor VARCHAR)", "question": "What was actor Teresa Graves's series before the year 1993?" }
### QUESTION What is the A-league with 39 saves? ### CONTEXT CREATE TABLE table_name_7 (a_league VARCHAR, saves VARCHAR) ### ANSWER SELECT a_league FROM table_name_7 WHERE saves = 39</s>
{ "answer": "SELECT a_league FROM table_name_7 WHERE saves = 39", "context": "CREATE TABLE table_name_7 (a_league VARCHAR, saves VARCHAR)", "question": "What is the A-league with 39 saves?" }
### QUESTION Which 2008 has an Airport of julius nyerere international airport? ### CONTEXT CREATE TABLE table_name_74 (airport VARCHAR) ### ANSWER SELECT AVG(2008) FROM table_name_74 WHERE airport = "julius nyerere international airport"</s>
{ "answer": "SELECT AVG(2008) FROM table_name_74 WHERE airport = \"julius nyerere international airport\"", "context": "CREATE TABLE table_name_74 (airport VARCHAR)", "question": "Which 2008 has an Airport of julius nyerere international airport?" }
### QUESTION What capacity opened lessed than 1937 and is located in the region of champagne-ardenne? ### CONTEXT CREATE TABLE table_name_95 (capacity VARCHAR, opened VARCHAR, region VARCHAR) ### ANSWER SELECT capacity FROM table_name_95 WHERE opened < 1937 AND region = "champagne-ardenne"</s>
{ "answer": "SELECT capacity FROM table_name_95 WHERE opened < 1937 AND region = \"champagne-ardenne\"", "context": "CREATE TABLE table_name_95 (capacity VARCHAR, opened VARCHAR, region VARCHAR)", "question": "What capacity opened lessed than 1937 and is located in the region of champagne-ardenne?" }
### QUESTION What is Result, when Director is Mirza Idrizović category:articles with hcards? ### CONTEXT CREATE TABLE table_name_78 (result VARCHAR, director VARCHAR) ### ANSWER SELECT result FROM table_name_78 WHERE director = "mirza idrizović category:articles with hcards"</s>
{ "answer": "SELECT result FROM table_name_78 WHERE director = \"mirza idrizović category:articles with hcards\"", "context": "CREATE TABLE table_name_78 (result VARCHAR, director VARCHAR)", "question": "What is Result, when Director is Mirza Idrizović category:articles with hcards?" }
### QUESTION What is Result, when Director is Veljko Bulajić category:articles with hcards, and when Original title is Sarajevski Atentat? ### CONTEXT CREATE TABLE table_name_46 (result VARCHAR, director VARCHAR, original_title VARCHAR) ### ANSWER SELECT result FROM table_name_46 WHERE director = "veljko bulajić category:articles with hcards" AND original_title = "sarajevski atentat"</s>
{ "answer": "SELECT result FROM table_name_46 WHERE director = \"veljko bulajić category:articles with hcards\" AND original_title = \"sarajevski atentat\"", "context": "CREATE TABLE table_name_46 (result VARCHAR, director VARCHAR, original_title VARCHAR)", "question": "What is Result, when Director is Veljko Bulajić category:articles with hcards, and when Original title is Sarajevski Atentat?" }
### QUESTION What is Original title, when Director is Veljko Bulajić category:articles with hcards, and when Film title used in nomination is Train Without A Timetable? ### CONTEXT CREATE TABLE table_name_35 (original_title VARCHAR, director VARCHAR, film_title_used_in_nomination VARCHAR) ### ANSWER SELECT original_title FROM table_name_35 WHERE director = "veljko bulajić category:articles with hcards" AND film_title_used_in_nomination = "train without a timetable"</s>
{ "answer": "SELECT original_title FROM table_name_35 WHERE director = \"veljko bulajić category:articles with hcards\" AND film_title_used_in_nomination = \"train without a timetable\"", "context": "CREATE TABLE table_name_35 (original_title VARCHAR, director VARCHAR, film_title_used_in_nomination VARCHAR)", "question": "What is Original title, when Director is Veljko Bulajić category:articles with hcards, and when Film title used in nomination is Train Without A Timetable?" }
### QUESTION When South warrnambool has more than 8 wins, what is the least amount of losses? ### CONTEXT CREATE TABLE table_name_64 (losses INTEGER, club VARCHAR, wins VARCHAR) ### ANSWER SELECT MIN(losses) FROM table_name_64 WHERE club = "south warrnambool" AND wins > 8</s>
{ "answer": "SELECT MIN(losses) FROM table_name_64 WHERE club = \"south warrnambool\" AND wins > 8", "context": "CREATE TABLE table_name_64 (losses INTEGER, club VARCHAR, wins VARCHAR)", "question": "When South warrnambool has more than 8 wins, what is the least amount of losses?" }
### QUESTION What is the name of the player with the High rebounds when there was a Score of l 108–114 (ot)? ### CONTEXT CREATE TABLE table_name_25 (high_rebounds VARCHAR, score VARCHAR) ### ANSWER SELECT high_rebounds FROM table_name_25 WHERE score = "l 108–114 (ot)"</s>
{ "answer": "SELECT high_rebounds FROM table_name_25 WHERE score = \"l 108–114 (ot)\"", "context": "CREATE TABLE table_name_25 (high_rebounds VARCHAR, score VARCHAR)", "question": "What is the name of the player with the High rebounds when there was a Score of l 108–114 (ot)?" }
### QUESTION What is the Season when the Lead was don bartlett, and the third was don walchuk, and a Second of carter rycroft? ### CONTEXT CREATE TABLE table_name_63 (season VARCHAR, second VARCHAR, lead VARCHAR, third VARCHAR) ### ANSWER SELECT season FROM table_name_63 WHERE lead = "don bartlett" AND third = "don walchuk" AND second = "carter rycroft"</s>
{ "answer": "SELECT season FROM table_name_63 WHERE lead = \"don bartlett\" AND third = \"don walchuk\" AND second = \"carter rycroft\"", "context": "CREATE TABLE table_name_63 (season VARCHAR, second VARCHAR, lead VARCHAR, third VARCHAR)", "question": "What is the Season when the Lead was don bartlett, and the third was don walchuk, and a Second of carter rycroft?" }
### QUESTION What is the average rank of a swimmer in lane 1? ### CONTEXT CREATE TABLE table_name_79 (rank INTEGER, lane VARCHAR) ### ANSWER SELECT AVG(rank) FROM table_name_79 WHERE lane = 1</s>
{ "answer": "SELECT AVG(rank) FROM table_name_79 WHERE lane = 1", "context": "CREATE TABLE table_name_79 (rank INTEGER, lane VARCHAR)", "question": "What is the average rank of a swimmer in lane 1?" }
### QUESTION What is the Score, when the Country is United States, when the Place is T3, and when the Player is Chris Riley? ### CONTEXT CREATE TABLE table_name_38 (score VARCHAR, player VARCHAR, country VARCHAR, place VARCHAR) ### ANSWER SELECT score FROM table_name_38 WHERE country = "united states" AND place = "t3" AND player = "chris riley"</s>
{ "answer": "SELECT score FROM table_name_38 WHERE country = \"united states\" AND place = \"t3\" AND player = \"chris riley\"", "context": "CREATE TABLE table_name_38 (score VARCHAR, player VARCHAR, country VARCHAR, place VARCHAR)", "question": "What is the Score, when the Country is United States, when the Place is T3, and when the Player is Chris Riley?" }
### QUESTION What is the name of the tournament played 13 November 2000? ### CONTEXT CREATE TABLE table_name_35 (tournament VARCHAR, date VARCHAR) ### ANSWER SELECT tournament FROM table_name_35 WHERE date = "13 november 2000"</s>
{ "answer": "SELECT tournament FROM table_name_35 WHERE date = \"13 november 2000\"", "context": "CREATE TABLE table_name_35 (tournament VARCHAR, date VARCHAR)", "question": "What is the name of the tournament played 13 November 2000?" }
### QUESTION What's the bronze medal count of Spain that has less than 39 Gold, 3 silver, and a rank better than 35? ### CONTEXT CREATE TABLE table_name_27 (bronze VARCHAR, nation VARCHAR, rank VARCHAR, gold VARCHAR, silver VARCHAR) ### ANSWER SELECT bronze FROM table_name_27 WHERE gold < 39 AND silver = 3 AND rank < 35 AND nation = "spain"</s>
{ "answer": "SELECT bronze FROM table_name_27 WHERE gold < 39 AND silver = 3 AND rank < 35 AND nation = \"spain\"", "context": "CREATE TABLE table_name_27 (bronze VARCHAR, nation VARCHAR, rank VARCHAR, gold VARCHAR, silver VARCHAR)", "question": "What's the bronze medal count of Spain that has less than 39 Gold, 3 silver, and a rank better than 35?" }
### QUESTION What country has t6 as the place, with sean o'hair as the player? ### CONTEXT CREATE TABLE table_name_88 (country VARCHAR, place VARCHAR, player VARCHAR) ### ANSWER SELECT country FROM table_name_88 WHERE place = "t6" AND player = "sean o'hair"</s>
{ "answer": "SELECT country FROM table_name_88 WHERE place = \"t6\" AND player = \"sean o'hair\"", "context": "CREATE TABLE table_name_88 (country VARCHAR, place VARCHAR, player VARCHAR)", "question": "What country has t6 as the place, with sean o'hair as the player?" }
### QUESTION What is the sum of Week when there were 67,968 people in attendance? ### CONTEXT CREATE TABLE table_name_66 (week INTEGER, attendance VARCHAR) ### ANSWER SELECT SUM(week) FROM table_name_66 WHERE attendance = "67,968"</s>
{ "answer": "SELECT SUM(week) FROM table_name_66 WHERE attendance = \"67,968\"", "context": "CREATE TABLE table_name_66 (week INTEGER, attendance VARCHAR)", "question": "What is the sum of Week when there were 67,968 people in attendance?" }
### QUESTION Which Water (sqmi) has a County of benson, and an ANSI code smaller than 1759243? ### CONTEXT CREATE TABLE table_name_13 (water__sqmi_ INTEGER, county VARCHAR, ansi_code VARCHAR) ### ANSWER SELECT MIN(water__sqmi_) FROM table_name_13 WHERE county = "benson" AND ansi_code < 1759243</s>
{ "answer": "SELECT MIN(water__sqmi_) FROM table_name_13 WHERE county = \"benson\" AND ansi_code < 1759243", "context": "CREATE TABLE table_name_13 (water__sqmi_ INTEGER, county VARCHAR, ansi_code VARCHAR)", "question": "Which Water (sqmi) has a County of benson, and an ANSI code smaller than 1759243?" }
### QUESTION Which Pop (2010) has an ANSI code smaller than 1036864, and a Longitude larger than -98.46611, and a Land (sqmi) smaller than 36.238, and a Latitude smaller than 48.144102? ### CONTEXT CREATE TABLE table_name_21 (pop__2010_ INTEGER, latitude VARCHAR, land___sqmi__ VARCHAR, ansi_code VARCHAR, longitude VARCHAR) ### ANSWER SELECT AVG(pop__2010_) FROM table_name_21 WHERE ansi_code < 1036864 AND longitude > -98.46611 AND land___sqmi__ < 36.238 AND latitude < 48.144102</s>
{ "answer": "SELECT AVG(pop__2010_) FROM table_name_21 WHERE ansi_code < 1036864 AND longitude > -98.46611 AND land___sqmi__ < 36.238 AND latitude < 48.144102", "context": "CREATE TABLE table_name_21 (pop__2010_ INTEGER, latitude VARCHAR, land___sqmi__ VARCHAR, ansi_code VARCHAR, longitude VARCHAR)", "question": "Which Pop (2010) has an ANSI code smaller than 1036864, and a Longitude larger than -98.46611, and a Land (sqmi) smaller than 36.238, and a Latitude smaller than 48.144102?" }
### QUESTION Which Points have a Performer of seán monaghan and a Draw smaller than 7? ### CONTEXT CREATE TABLE table_name_87 (points INTEGER, performer VARCHAR, draw VARCHAR) ### ANSWER SELECT MIN(points) FROM table_name_87 WHERE performer = "seán monaghan" AND draw < 7</s>
{ "answer": "SELECT MIN(points) FROM table_name_87 WHERE performer = \"seán monaghan\" AND draw < 7", "context": "CREATE TABLE table_name_87 (points INTEGER, performer VARCHAR, draw VARCHAR)", "question": "Which Points have a Performer of seán monaghan and a Draw smaller than 7?" }
### QUESTION What actor has onderweg naar morgen, as the soap opera, with aafke couwenberg as the character? ### CONTEXT CREATE TABLE table_name_47 (actor VARCHAR, soap_opera VARCHAR, character VARCHAR) ### ANSWER SELECT actor FROM table_name_47 WHERE soap_opera = "onderweg naar morgen" AND character = "aafke couwenberg"</s>
{ "answer": "SELECT actor FROM table_name_47 WHERE soap_opera = \"onderweg naar morgen\" AND character = \"aafke couwenberg\"", "context": "CREATE TABLE table_name_47 (actor VARCHAR, soap_opera VARCHAR, character VARCHAR)", "question": "What actor has onderweg naar morgen, as the soap opera, with aafke couwenberg as the character?" }
### QUESTION who is the home team when the away team is ipswich town? ### CONTEXT CREATE TABLE table_name_34 (home_team VARCHAR, away_team VARCHAR) ### ANSWER SELECT home_team FROM table_name_34 WHERE away_team = "ipswich town"</s>
{ "answer": "SELECT home_team FROM table_name_34 WHERE away_team = \"ipswich town\"", "context": "CREATE TABLE table_name_34 (home_team VARCHAR, away_team VARCHAR)", "question": "who is the home team when the away team is ipswich town?" }
### QUESTION What is the Result with an NFL Recap, played at bank of america stadium? ### CONTEXT CREATE TABLE table_name_41 (result VARCHAR, nfl_recap VARCHAR, game_site VARCHAR) ### ANSWER SELECT result FROM table_name_41 WHERE nfl_recap = "recap" AND game_site = "bank of america stadium"</s>
{ "answer": "SELECT result FROM table_name_41 WHERE nfl_recap = \"recap\" AND game_site = \"bank of america stadium\"", "context": "CREATE TABLE table_name_41 (result VARCHAR, nfl_recap VARCHAR, game_site VARCHAR)", "question": "What is the Result with an NFL Recap, played at bank of america stadium?" }
### QUESTION how many times is the rank less than 6, certification 2x platinum and the peak position 2? ### CONTEXT CREATE TABLE table_name_49 (sales VARCHAR, peak_position VARCHAR, rank VARCHAR, certification VARCHAR) ### ANSWER SELECT COUNT(sales) FROM table_name_49 WHERE rank < 6 AND certification = "2x platinum" AND peak_position = "2"</s>
{ "answer": "SELECT COUNT(sales) FROM table_name_49 WHERE rank < 6 AND certification = \"2x platinum\" AND peak_position = \"2\"", "context": "CREATE TABLE table_name_49 (sales VARCHAR, peak_position VARCHAR, rank VARCHAR, certification VARCHAR)", "question": "how many times is the rank less than 6, certification 2x platinum and the peak position 2?" }
### QUESTION what is the lowest rank when the peak position is 2, certification is platinum and the album is my december? ### CONTEXT CREATE TABLE table_name_82 (rank INTEGER, album VARCHAR, peak_position VARCHAR, certification VARCHAR) ### ANSWER SELECT MIN(rank) FROM table_name_82 WHERE peak_position = "2" AND certification = "platinum" AND album = "my december"</s>
{ "answer": "SELECT MIN(rank) FROM table_name_82 WHERE peak_position = \"2\" AND certification = \"platinum\" AND album = \"my december\"", "context": "CREATE TABLE table_name_82 (rank INTEGER, album VARCHAR, peak_position VARCHAR, certification VARCHAR)", "question": "what is the lowest rank when the peak position is 2, certification is platinum and the album is my december?" }
### QUESTION What is the sales when the artist is kelly clarkson? ### CONTEXT CREATE TABLE table_name_88 (sales VARCHAR, artist VARCHAR) ### ANSWER SELECT COUNT(sales) FROM table_name_88 WHERE artist = "kelly clarkson"</s>
{ "answer": "SELECT COUNT(sales) FROM table_name_88 WHERE artist = \"kelly clarkson\"", "context": "CREATE TABLE table_name_88 (sales VARCHAR, artist VARCHAR)", "question": "What is the sales when the artist is kelly clarkson?" }
### QUESTION what is the rank when the album is sean kingston? ### CONTEXT CREATE TABLE table_name_85 (rank VARCHAR, album VARCHAR) ### ANSWER SELECT rank FROM table_name_85 WHERE album = "sean kingston"</s>
{ "answer": "SELECT rank FROM table_name_85 WHERE album = \"sean kingston\"", "context": "CREATE TABLE table_name_85 (rank VARCHAR, album VARCHAR)", "question": "what is the rank when the album is sean kingston?" }
### QUESTION According to the August 2007 poll by the Corporate Research Associates that reported 32% Prog. Cons., what percentage aligned with the Liberal party? ### CONTEXT CREATE TABLE table_name_36 (liberal VARCHAR, dates VARCHAR, polling_firm VARCHAR, prog_cons VARCHAR) ### ANSWER SELECT liberal FROM table_name_36 WHERE polling_firm = "corporate research associates" AND prog_cons = "32%" AND dates = "august 2007"</s>
{ "answer": "SELECT liberal FROM table_name_36 WHERE polling_firm = \"corporate research associates\" AND prog_cons = \"32%\" AND dates = \"august 2007\"", "context": "CREATE TABLE table_name_36 (liberal VARCHAR, dates VARCHAR, polling_firm VARCHAR, prog_cons VARCHAR)", "question": "According to the August 2007 poll by the Corporate Research Associates that reported 32% Prog. Cons., what percentage aligned with the Liberal party?" }
### QUESTION According to the August 2008 poll that reported 36% New Demcratic, what percentage aligned with the Liberal party? ### CONTEXT CREATE TABLE table_name_37 (liberal VARCHAR, new_democratic VARCHAR, dates VARCHAR) ### ANSWER SELECT liberal FROM table_name_37 WHERE new_democratic = "36%" AND dates = "august 2008"</s>
{ "answer": "SELECT liberal FROM table_name_37 WHERE new_democratic = \"36%\" AND dates = \"august 2008\"", "context": "CREATE TABLE table_name_37 (liberal VARCHAR, new_democratic VARCHAR, dates VARCHAR)", "question": "According to the August 2008 poll that reported 36% New Demcratic, what percentage aligned with the Liberal party?" }
### QUESTION What is the number of staterooms when guests was larger than 210? ### CONTEXT CREATE TABLE table_name_28 (staterooms INTEGER, guests INTEGER) ### ANSWER SELECT AVG(staterooms) FROM table_name_28 WHERE guests > 210</s>
{ "answer": "SELECT AVG(staterooms) FROM table_name_28 WHERE guests > 210", "context": "CREATE TABLE table_name_28 (staterooms INTEGER, guests INTEGER)", "question": "What is the number of staterooms when guests was larger than 210?" }
### QUESTION What is the number of guests for the Viking Ingvar, built earlier than 1990? ### CONTEXT CREATE TABLE table_name_46 (guests INTEGER, ship_name VARCHAR, year_built VARCHAR) ### ANSWER SELECT AVG(guests) FROM table_name_46 WHERE ship_name = "viking ingvar" AND year_built < 1990</s>
{ "answer": "SELECT AVG(guests) FROM table_name_46 WHERE ship_name = \"viking ingvar\" AND year_built < 1990", "context": "CREATE TABLE table_name_46 (guests INTEGER, ship_name VARCHAR, year_built VARCHAR)", "question": "What is the number of guests for the Viking Ingvar, built earlier than 1990?" }
### QUESTION What is the date of the label Dos or Die Recordings? ### CONTEXT CREATE TABLE table_name_9 (date VARCHAR, label VARCHAR) ### ANSWER SELECT date FROM table_name_9 WHERE label = "dos or die recordings"</s>
{ "answer": "SELECT date FROM table_name_9 WHERE label = \"dos or die recordings\"", "context": "CREATE TABLE table_name_9 (date VARCHAR, label VARCHAR)", "question": "What is the date of the label Dos or Die Recordings?" }
### QUESTION What is the Winners when the United States is the runner-up at st. germain golf club? ### CONTEXT CREATE TABLE table_name_90 (winners VARCHAR, runners_up VARCHAR, venue VARCHAR) ### ANSWER SELECT winners FROM table_name_90 WHERE runners_up = "united states" AND venue = "st. germain golf club"</s>
{ "answer": "SELECT winners FROM table_name_90 WHERE runners_up = \"united states\" AND venue = \"st. germain golf club\"", "context": "CREATE TABLE table_name_90 (winners VARCHAR, runners_up VARCHAR, venue VARCHAR)", "question": "What is the Winners when the United States is the runner-up at st. germain golf club?" }
### QUESTION Which episode in year 2003 that have Gary Murphy and Neil Thompson? ### CONTEXT CREATE TABLE table_name_10 (episode VARCHAR, nominee_s_ VARCHAR, year VARCHAR) ### ANSWER SELECT episode FROM table_name_10 WHERE nominee_s_ = "gary murphy and neil thompson" AND year = 2003</s>
{ "answer": "SELECT episode FROM table_name_10 WHERE nominee_s_ = \"gary murphy and neil thompson\" AND year = 2003", "context": "CREATE TABLE table_name_10 (episode VARCHAR, nominee_s_ VARCHAR, year VARCHAR)", "question": "Which episode in year 2003 that have Gary Murphy and Neil Thompson?" }
### QUESTION What was the result of the Award of Drama desk award nominee Tom Hewitt. ### CONTEXT CREATE TABLE table_name_37 (result VARCHAR, award VARCHAR, nominee VARCHAR) ### ANSWER SELECT result FROM table_name_37 WHERE award = "drama desk award" AND nominee = "tom hewitt"</s>
{ "answer": "SELECT result FROM table_name_37 WHERE award = \"drama desk award\" AND nominee = \"tom hewitt\"", "context": "CREATE TABLE table_name_37 (result VARCHAR, award VARCHAR, nominee VARCHAR)", "question": "What was the result of the Award of Drama desk award nominee Tom Hewitt." }
### QUESTION How many FA cup goals have Jimmy Nicholson as the name, and league cup goals greater than 0? ### CONTEXT CREATE TABLE table_name_41 (fa_cup_goals VARCHAR, name VARCHAR, league_cup_goals VARCHAR) ### ANSWER SELECT COUNT(fa_cup_goals) FROM table_name_41 WHERE name = "jimmy nicholson" AND league_cup_goals > 0</s>
{ "answer": "SELECT COUNT(fa_cup_goals) FROM table_name_41 WHERE name = \"jimmy nicholson\" AND league_cup_goals > 0", "context": "CREATE TABLE table_name_41 (fa_cup_goals VARCHAR, name VARCHAR, league_cup_goals VARCHAR)", "question": "How many FA cup goals have Jimmy Nicholson as the name, and league cup goals greater than 0?" }
### QUESTION What are the points against for 2001, and games won of 5 (3)? ### CONTEXT CREATE TABLE table_name_16 (points_against___tests__ VARCHAR, year_s_ VARCHAR, games_won___tests__ VARCHAR) ### ANSWER SELECT points_against___tests__ FROM table_name_16 WHERE year_s_ = 2001 AND games_won___tests__ = "5 (3)"</s>
{ "answer": "SELECT points_against___tests__ FROM table_name_16 WHERE year_s_ = 2001 AND games_won___tests__ = \"5 (3)\"", "context": "CREATE TABLE table_name_16 (points_against___tests__ VARCHAR, year_s_ VARCHAR, games_won___tests__ VARCHAR)", "question": "What are the points against for 2001, and games won of 5 (3)?" }
### QUESTION What are the points against for 2000, when games won is 4 (1)? ### CONTEXT CREATE TABLE table_name_16 (points_against___tests__ VARCHAR, year_s_ VARCHAR, games_won___tests__ VARCHAR) ### ANSWER SELECT points_against___tests__ FROM table_name_16 WHERE year_s_ = 2000 AND games_won___tests__ = "4 (1)"</s>
{ "answer": "SELECT points_against___tests__ FROM table_name_16 WHERE year_s_ = 2000 AND games_won___tests__ = \"4 (1)\"", "context": "CREATE TABLE table_name_16 (points_against___tests__ VARCHAR, year_s_ VARCHAR, games_won___tests__ VARCHAR)", "question": "What are the points against for 2000, when games won is 4 (1)?" }
### QUESTION How many years have an accolade of 50 best albums of the year, with #3 as the rank? ### CONTEXT CREATE TABLE table_name_6 (year INTEGER, accolade VARCHAR, rank VARCHAR) ### ANSWER SELECT SUM(year) FROM table_name_6 WHERE accolade = "50 best albums of the year" AND rank = "#3"</s>
{ "answer": "SELECT SUM(year) FROM table_name_6 WHERE accolade = \"50 best albums of the year\" AND rank = \"#3\"", "context": "CREATE TABLE table_name_6 (year INTEGER, accolade VARCHAR, rank VARCHAR)", "question": "How many years have an accolade of 50 best albums of the year, with #3 as the rank?" }
### QUESTION What is the games lost when games played was 2, year was earlier than 1999, and points for was 24? ### CONTEXT CREATE TABLE table_name_73 (games_lost___tests__ VARCHAR, points_for___tests__ VARCHAR, games_played___tests__ VARCHAR, year_s_ VARCHAR) ### ANSWER SELECT games_lost___tests__ FROM table_name_73 WHERE games_played___tests__ = "2" AND year_s_ < 1999 AND points_for___tests__ = "24"</s>
{ "answer": "SELECT games_lost___tests__ FROM table_name_73 WHERE games_played___tests__ = \"2\" AND year_s_ < 1999 AND points_for___tests__ = \"24\"", "context": "CREATE TABLE table_name_73 (games_lost___tests__ VARCHAR, points_for___tests__ VARCHAR, games_played___tests__ VARCHAR, year_s_ VARCHAR)", "question": "What is the games lost when games played was 2, year was earlier than 1999, and points for was 24?" }
### QUESTION When Mark O'meara was the senior player champion in a year greater than 1998, who was the tradition? ### CONTEXT CREATE TABLE table_name_14 (the_tradition VARCHAR, year VARCHAR, senior_players_championship VARCHAR) ### ANSWER SELECT the_tradition FROM table_name_14 WHERE year > 1998 AND senior_players_championship = "mark o'meara"</s>
{ "answer": "SELECT the_tradition FROM table_name_14 WHERE year > 1998 AND senior_players_championship = \"mark o'meara\"", "context": "CREATE TABLE table_name_14 (the_tradition VARCHAR, year VARCHAR, senior_players_championship VARCHAR)", "question": "When Mark O'meara was the senior player champion in a year greater than 1998, who was the tradition?" }
### QUESTION What's the Japanese title when the Romaji Title was Atsu-Hime? ### CONTEXT CREATE TABLE table_name_24 (japanese_title VARCHAR, romaji_title VARCHAR) ### ANSWER SELECT japanese_title FROM table_name_24 WHERE romaji_title = "atsu-hime"</s>
{ "answer": "SELECT japanese_title FROM table_name_24 WHERE romaji_title = \"atsu-hime\"", "context": "CREATE TABLE table_name_24 (japanese_title VARCHAR, romaji_title VARCHAR)", "question": "What's the Japanese title when the Romaji Title was Atsu-Hime?" }
### QUESTION When the position in 2012-13 is 13th, third division what is the location? ### CONTEXT CREATE TABLE table_name_68 (location VARCHAR, position_in_2012_13 VARCHAR) ### ANSWER SELECT location FROM table_name_68 WHERE position_in_2012_13 = "13th, third division"</s>
{ "answer": "SELECT location FROM table_name_68 WHERE position_in_2012_13 = \"13th, third division\"", "context": "CREATE TABLE table_name_68 (location VARCHAR, position_in_2012_13 VARCHAR)", "question": "When the position in 2012-13 is 13th, third division what is the location?" }
### QUESTION Which Week has Points For larger than 19, and an Opponent of philadelphia eagles, and Points Against larger than 7? ### CONTEXT CREATE TABLE table_name_17 (week INTEGER, points_against VARCHAR, points_for VARCHAR, opponent VARCHAR) ### ANSWER SELECT MAX(week) FROM table_name_17 WHERE points_for > 19 AND opponent = "philadelphia eagles" AND points_against > 7</s>
{ "answer": "SELECT MAX(week) FROM table_name_17 WHERE points_for > 19 AND opponent = \"philadelphia eagles\" AND points_against > 7", "context": "CREATE TABLE table_name_17 (week INTEGER, points_against VARCHAR, points_for VARCHAR, opponent VARCHAR)", "question": "Which Week has Points For larger than 19, and an Opponent of philadelphia eagles, and Points Against larger than 7?" }
### QUESTION Which League Cup has a FA Cup of 5, and a Club of boston united, and a League smaller than 16? ### CONTEXT CREATE TABLE table_name_18 (league INTEGER, fa_cup VARCHAR, club VARCHAR) ### ANSWER SELECT MAX(league) AS Cup FROM table_name_18 WHERE fa_cup = 5 AND club = "boston united" AND league < 16</s>
{ "answer": "SELECT MAX(league) AS Cup FROM table_name_18 WHERE fa_cup = 5 AND club = \"boston united\" AND league < 16", "context": "CREATE TABLE table_name_18 (league INTEGER, fa_cup VARCHAR, club VARCHAR)", "question": "Which League Cup has a FA Cup of 5, and a Club of boston united, and a League smaller than 16?" }
### QUESTION When the position in 2012-23 is 4th, second division what is the club? ### CONTEXT CREATE TABLE table_name_27 (club VARCHAR, position_in_2012_13 VARCHAR) ### ANSWER SELECT club FROM table_name_27 WHERE position_in_2012_13 = "4th, second division"</s>
{ "answer": "SELECT club FROM table_name_27 WHERE position_in_2012_13 = \"4th, second division\"", "context": "CREATE TABLE table_name_27 (club VARCHAR, position_in_2012_13 VARCHAR)", "question": "When the position in 2012-23 is 4th, second division what is the club?" }
### QUESTION What location has a home ground of n/a, and position in 2012-13 of 13th, third division? ### CONTEXT CREATE TABLE table_name_2 (location VARCHAR, home_ground VARCHAR, position_in_2012_13 VARCHAR) ### ANSWER SELECT location FROM table_name_2 WHERE home_ground = "n/a" AND position_in_2012_13 = "13th, third division"</s>
{ "answer": "SELECT location FROM table_name_2 WHERE home_ground = \"n/a\" AND position_in_2012_13 = \"13th, third division\"", "context": "CREATE TABLE table_name_2 (location VARCHAR, home_ground VARCHAR, position_in_2012_13 VARCHAR)", "question": "What location has a home ground of n/a, and position in 2012-13 of 13th, third division?" }
### QUESTION Where has a Name of zhongornis? ### CONTEXT CREATE TABLE table_name_84 (location VARCHAR, name VARCHAR) ### ANSWER SELECT location FROM table_name_84 WHERE name = "zhongornis"</s>
{ "answer": "SELECT location FROM table_name_84 WHERE name = \"zhongornis\"", "context": "CREATE TABLE table_name_84 (location VARCHAR, name VARCHAR)", "question": "Where has a Name of zhongornis?" }
### QUESTION Which Number of electorates (2009) has a District of sheopur, and a Constituency number of 1? ### CONTEXT CREATE TABLE table_name_94 (number_of_electorates__2009_ VARCHAR, district VARCHAR, constituency_number VARCHAR) ### ANSWER SELECT COUNT(number_of_electorates__2009_) FROM table_name_94 WHERE district = "sheopur" AND constituency_number = "1"</s>
{ "answer": "SELECT COUNT(number_of_electorates__2009_) FROM table_name_94 WHERE district = \"sheopur\" AND constituency_number = \"1\"", "context": "CREATE TABLE table_name_94 (number_of_electorates__2009_ VARCHAR, district VARCHAR, constituency_number VARCHAR)", "question": "Which Number of electorates (2009) has a District of sheopur, and a Constituency number of 1?" }
### QUESTION Which Name has a Reserved for of none, and a Constituency number of 7? ### CONTEXT CREATE TABLE table_name_96 (name VARCHAR, reserved_for___sc___st__none_ VARCHAR, constituency_number VARCHAR) ### ANSWER SELECT name FROM table_name_96 WHERE reserved_for___sc___st__none_ = "none" AND constituency_number = "7"</s>
{ "answer": "SELECT name FROM table_name_96 WHERE reserved_for___sc___st__none_ = \"none\" AND constituency_number = \"7\"", "context": "CREATE TABLE table_name_96 (name VARCHAR, reserved_for___sc___st__none_ VARCHAR, constituency_number VARCHAR)", "question": "Which Name has a Reserved for of none, and a Constituency number of 7?" }
### QUESTION Which week was the December 21, 2003 game? ### CONTEXT CREATE TABLE table_name_59 (week VARCHAR, date VARCHAR) ### ANSWER SELECT week FROM table_name_59 WHERE date = "december 21, 2003"</s>
{ "answer": "SELECT week FROM table_name_59 WHERE date = \"december 21, 2003\"", "context": "CREATE TABLE table_name_59 (week VARCHAR, date VARCHAR)", "question": "Which week was the December 21, 2003 game?" }
### QUESTION What was the record after the game against the Sharks at Arrowhead Pond of Anaheim? ### CONTEXT CREATE TABLE table_name_72 (record VARCHAR, arena VARCHAR, opponent VARCHAR) ### ANSWER SELECT record FROM table_name_72 WHERE arena = "arrowhead pond of anaheim" AND opponent = "sharks"</s>
{ "answer": "SELECT record FROM table_name_72 WHERE arena = \"arrowhead pond of anaheim\" AND opponent = \"sharks\"", "context": "CREATE TABLE table_name_72 (record VARCHAR, arena VARCHAR, opponent VARCHAR)", "question": "What was the record after the game against the Sharks at Arrowhead Pond of Anaheim?" }
### QUESTION What is the lowest MPG-US combined for a green rating of E, mpg in the UK- combined of under 42.2, manufacturer of Volkswagen, and an M6 transmission? ### CONTEXT CREATE TABLE table_name_90 (mpg_us_combined INTEGER, transmission VARCHAR, manufacturer VARCHAR, green_rating VARCHAR, mpg_uk_combined VARCHAR) ### ANSWER SELECT MIN(mpg_us_combined) FROM table_name_90 WHERE green_rating = "e" AND mpg_uk_combined < 42.2 AND manufacturer = "volkswagen" AND transmission = "m6"</s>
{ "answer": "SELECT MIN(mpg_us_combined) FROM table_name_90 WHERE green_rating = \"e\" AND mpg_uk_combined < 42.2 AND manufacturer = \"volkswagen\" AND transmission = \"m6\"", "context": "CREATE TABLE table_name_90 (mpg_us_combined INTEGER, transmission VARCHAR, manufacturer VARCHAR, green_rating VARCHAR, mpg_uk_combined VARCHAR)", "question": "What is the lowest MPG-US combined for a green rating of E, mpg in the UK- combined of under 42.2, manufacturer of Volkswagen, and an M6 transmission?" }
### QUESTION What is the mpg-UK urban (cold) for a fuel type of diesel, extraurban MPG in the UK over 68.9, engine capacity of 1422, and L/100km urban (cold) over 5.1? ### CONTEXT CREATE TABLE table_name_8 (mpg_uk_urban__cold_ VARCHAR, l_100km_urban__cold_ VARCHAR, engine_capacity VARCHAR, fuel_type VARCHAR, mpg_uk_extra_urban VARCHAR) ### ANSWER SELECT mpg_uk_urban__cold_ FROM table_name_8 WHERE fuel_type = "diesel" AND mpg_uk_extra_urban > 68.9 AND engine_capacity = 1422 AND l_100km_urban__cold_ > 5.1</s>
{ "answer": "SELECT mpg_uk_urban__cold_ FROM table_name_8 WHERE fuel_type = \"diesel\" AND mpg_uk_extra_urban > 68.9 AND engine_capacity = 1422 AND l_100km_urban__cold_ > 5.1", "context": "CREATE TABLE table_name_8 (mpg_uk_urban__cold_ VARCHAR, l_100km_urban__cold_ VARCHAR, engine_capacity VARCHAR, fuel_type VARCHAR, mpg_uk_extra_urban VARCHAR)", "question": "What is the mpg-UK urban (cold) for a fuel type of diesel, extraurban MPG in the UK over 68.9, engine capacity of 1422, and L/100km urban (cold) over 5.1?" }
### QUESTION What is the green rating for the vehicle with L/100km urban (cold) over 10.9, mpg in the US (urban) over 14.1, manufacturer of Volkswagen, and engine capacity under 3189? ### CONTEXT CREATE TABLE table_name_68 (green_rating VARCHAR, engine_capacity VARCHAR, manufacturer VARCHAR, l_100km_urban__cold_ VARCHAR, mpg_us_urban VARCHAR) ### ANSWER SELECT green_rating FROM table_name_68 WHERE l_100km_urban__cold_ > 10.9 AND mpg_us_urban > 14.1 AND manufacturer = "volkswagen" AND engine_capacity < 3189</s>
{ "answer": "SELECT green_rating FROM table_name_68 WHERE l_100km_urban__cold_ > 10.9 AND mpg_us_urban > 14.1 AND manufacturer = \"volkswagen\" AND engine_capacity < 3189", "context": "CREATE TABLE table_name_68 (green_rating VARCHAR, engine_capacity VARCHAR, manufacturer VARCHAR, l_100km_urban__cold_ VARCHAR, mpg_us_urban VARCHAR)", "question": "What is the green rating for the vehicle with L/100km urban (cold) over 10.9, mpg in the US (urban) over 14.1, manufacturer of Volkswagen, and engine capacity under 3189?" }
### QUESTION What is the average L/100km urban (cold) for engine capacities over 1910, mpg in the US (urban) under 25.3, mpg in the UK (combined) over 27.2, and mpg in the UK (urban, cold) of 22.4? ### CONTEXT CREATE TABLE table_name_27 (l_100km_urban__cold_ INTEGER, mpg_uk_urban__cold_ VARCHAR, mpg_uk_combined VARCHAR, engine_capacity VARCHAR, mpg_us_urban VARCHAR) ### ANSWER SELECT AVG(l_100km_urban__cold_) FROM table_name_27 WHERE engine_capacity > 1910 AND mpg_us_urban < 25.3 AND mpg_uk_combined > 27.2 AND mpg_uk_urban__cold_ = 22.4</s>
{ "answer": "SELECT AVG(l_100km_urban__cold_) FROM table_name_27 WHERE engine_capacity > 1910 AND mpg_us_urban < 25.3 AND mpg_uk_combined > 27.2 AND mpg_uk_urban__cold_ = 22.4", "context": "CREATE TABLE table_name_27 (l_100km_urban__cold_ INTEGER, mpg_uk_urban__cold_ VARCHAR, mpg_uk_combined VARCHAR, engine_capacity VARCHAR, mpg_us_urban VARCHAR)", "question": "What is the average L/100km urban (cold) for engine capacities over 1910, mpg in the US (urban) under 25.3, mpg in the UK (combined) over 27.2, and mpg in the UK (urban, cold) of 22.4?" }
### QUESTION What is the lowest combined mpg in the US for the A6 transmission, a CO2 g/km under 303, engine capacity over 2461, and L/100km urban (cold) of 15.9? ### CONTEXT CREATE TABLE table_name_11 (mpg_us_combined INTEGER, l_100km_urban__cold_ VARCHAR, engine_capacity VARCHAR, transmission VARCHAR, co_2_g_km VARCHAR) ### ANSWER SELECT MIN(mpg_us_combined) FROM table_name_11 WHERE transmission = "a6" AND co_2_g_km < 303 AND engine_capacity > 2461 AND l_100km_urban__cold_ = 15.9</s>
{ "answer": "SELECT MIN(mpg_us_combined) FROM table_name_11 WHERE transmission = \"a6\" AND co_2_g_km < 303 AND engine_capacity > 2461 AND l_100km_urban__cold_ = 15.9", "context": "CREATE TABLE table_name_11 (mpg_us_combined INTEGER, l_100km_urban__cold_ VARCHAR, engine_capacity VARCHAR, transmission VARCHAR, co_2_g_km VARCHAR)", "question": "What is the lowest combined mpg in the US for the A6 transmission, a CO2 g/km under 303, engine capacity over 2461, and L/100km urban (cold) of 15.9?" }
### QUESTION What is the sum of Silver when the total is less than 6, the rank is 6 and the Bulgaria is the nation? ### CONTEXT CREATE TABLE table_name_19 (silver INTEGER, nation VARCHAR, total VARCHAR, rank VARCHAR) ### ANSWER SELECT SUM(silver) FROM table_name_19 WHERE total < "6" AND rank = "6" AND nation = "bulgaria"</s>
{ "answer": "SELECT SUM(silver) FROM table_name_19 WHERE total < \"6\" AND rank = \"6\" AND nation = \"bulgaria\"", "context": "CREATE TABLE table_name_19 (silver INTEGER, nation VARCHAR, total VARCHAR, rank VARCHAR)", "question": "What is the sum of Silver when the total is less than 6, the rank is 6 and the Bulgaria is the nation?" }
### QUESTION What 20-29 was in season 2008? ### CONTEXT CREATE TABLE table_name_69 (season VARCHAR) ### ANSWER SELECT 20 AS _29 FROM table_name_69 WHERE season = "2008"</s>
{ "answer": "SELECT 20 AS _29 FROM table_name_69 WHERE season = \"2008\"", "context": "CREATE TABLE table_name_69 (season VARCHAR)", "question": "What 20-29 was in season 2008?" }
### QUESTION What is the cores when the L3 cache is 8 mb, and the frequency is 2.5 ghz? ### CONTEXT CREATE TABLE table_name_58 (cores VARCHAR, l3_cache VARCHAR, frequency VARCHAR) ### ANSWER SELECT cores FROM table_name_58 WHERE l3_cache = "8 mb" AND frequency = "2.5 ghz"</s>
{ "answer": "SELECT cores FROM table_name_58 WHERE l3_cache = \"8 mb\" AND frequency = \"2.5 ghz\"", "context": "CREATE TABLE table_name_58 (cores VARCHAR, l3_cache VARCHAR, frequency VARCHAR)", "question": "What is the cores when the L3 cache is 8 mb, and the frequency is 2.5 ghz?" }
### QUESTION What is the model number with a release price of $303, and a sSpec number of sr14q(c0)? ### CONTEXT CREATE TABLE table_name_2 (model_number VARCHAR, release_price___usd__ VARCHAR, sspec_number VARCHAR) ### ANSWER SELECT model_number FROM table_name_2 WHERE release_price___usd__ = "$303" AND sspec_number = "sr14q(c0)"</s>
{ "answer": "SELECT model_number FROM table_name_2 WHERE release_price___usd__ = \"$303\" AND sspec_number = \"sr14q(c0)\"", "context": "CREATE TABLE table_name_2 (model_number VARCHAR, release_price___usd__ VARCHAR, sspec_number VARCHAR)", "question": "What is the model number with a release price of $303, and a sSpec number of sr14q(c0)?" }
### QUESTION What turbo has a L2 cache of 4 × 256 kb, a release date of June 2013, and a Model number of core i7-4770s? ### CONTEXT CREATE TABLE table_name_78 (turbo VARCHAR, model_number VARCHAR, l2_cache VARCHAR, release_date VARCHAR) ### ANSWER SELECT turbo FROM table_name_78 WHERE l2_cache = "4 × 256 kb" AND release_date = "june 2013" AND model_number = "core i7-4770s"</s>
{ "answer": "SELECT turbo FROM table_name_78 WHERE l2_cache = \"4 × 256 kb\" AND release_date = \"june 2013\" AND model_number = \"core i7-4770s\"", "context": "CREATE TABLE table_name_78 (turbo VARCHAR, model_number VARCHAR, l2_cache VARCHAR, release_date VARCHAR)", "question": "What turbo has a L2 cache of 4 × 256 kb, a release date of June 2013, and a Model number of core i7-4770s?" }
### QUESTION What is the Postion, when the Club/Team is Warroad Lakers, and when the Name is Roger Christian? ### CONTEXT CREATE TABLE table_name_13 (position VARCHAR, club_team VARCHAR, name VARCHAR) ### ANSWER SELECT position FROM table_name_13 WHERE club_team = "warroad lakers" AND name = "roger christian"</s>
{ "answer": "SELECT position FROM table_name_13 WHERE club_team = \"warroad lakers\" AND name = \"roger christian\"", "context": "CREATE TABLE table_name_13 (position VARCHAR, club_team VARCHAR, name VARCHAR)", "question": "What is the Postion, when the Club/Team is Warroad Lakers, and when the Name is Roger Christian?" }
### QUESTION What was the date of the tournament held in Indonesia? ### CONTEXT CREATE TABLE table_name_23 (date VARCHAR, country VARCHAR) ### ANSWER SELECT date FROM table_name_23 WHERE country = "indonesia"</s>
{ "answer": "SELECT date FROM table_name_23 WHERE country = \"indonesia\"", "context": "CREATE TABLE table_name_23 (date VARCHAR, country VARCHAR)", "question": "What was the date of the tournament held in Indonesia?" }
### QUESTION What is the Constituency number for Bikhangaon with a Reserved for ( SC / ST /None) of st? ### CONTEXT CREATE TABLE table_name_11 (constituency_number VARCHAR, reserved_for___sc___st__none_ VARCHAR, name VARCHAR) ### ANSWER SELECT constituency_number FROM table_name_11 WHERE reserved_for___sc___st__none_ = "st" AND name = "bikhangaon"</s>
{ "answer": "SELECT constituency_number FROM table_name_11 WHERE reserved_for___sc___st__none_ = \"st\" AND name = \"bikhangaon\"", "context": "CREATE TABLE table_name_11 (constituency_number VARCHAR, reserved_for___sc___st__none_ VARCHAR, name VARCHAR)", "question": "What is the Constituency number for Bikhangaon with a Reserved for ( SC / ST /None) of st?" }
### QUESTION What is the date for Orangeville? ### CONTEXT CREATE TABLE table_name_56 (date VARCHAR, name VARCHAR) ### ANSWER SELECT date FROM table_name_56 WHERE name = "orangeville"</s>
{ "answer": "SELECT date FROM table_name_56 WHERE name = \"orangeville\"", "context": "CREATE TABLE table_name_56 (date VARCHAR, name VARCHAR)", "question": "What is the date for Orangeville?" }
### QUESTION Who is the builder with a works number of 2534? ### CONTEXT CREATE TABLE table_name_16 (builder VARCHAR, works_number VARCHAR) ### ANSWER SELECT builder FROM table_name_16 WHERE works_number = "2534"</s>
{ "answer": "SELECT builder FROM table_name_16 WHERE works_number = \"2534\"", "context": "CREATE TABLE table_name_16 (builder VARCHAR, works_number VARCHAR)", "question": "Who is the builder with a works number of 2534?" }
### QUESTION what is the 1st round when team 1 is stade lavallois (d2)? ### CONTEXT CREATE TABLE table_name_56 (team_1 VARCHAR) ### ANSWER SELECT 1 AS st_round FROM table_name_56 WHERE team_1 = "stade lavallois (d2)"</s>
{ "answer": "SELECT 1 AS st_round FROM table_name_56 WHERE team_1 = \"stade lavallois (d2)\"", "context": "CREATE TABLE table_name_56 (team_1 VARCHAR)", "question": "what is the 1st round when team 1 is stade lavallois (d2)?" }
### QUESTION What is the shortest Time for David Neville when his React time was greater than 0.183? ### CONTEXT CREATE TABLE table_name_35 (time INTEGER, react VARCHAR, athlete VARCHAR) ### ANSWER SELECT MIN(time) FROM table_name_35 WHERE react > 0.183 AND athlete = "david neville"</s>
{ "answer": "SELECT MIN(time) FROM table_name_35 WHERE react > 0.183 AND athlete = \"david neville\"", "context": "CREATE TABLE table_name_35 (time INTEGER, react VARCHAR, athlete VARCHAR)", "question": "What is the shortest Time for David Neville when his React time was greater than 0.183?" }
### QUESTION What is the Release date of the Filmography directed by Robert McKimson in MM Series with Production Number 1665? ### CONTEXT CREATE TABLE table_name_16 (release_date VARCHAR, production_number VARCHAR, director VARCHAR, series VARCHAR) ### ANSWER SELECT release_date FROM table_name_16 WHERE director = "robert mckimson" AND series = "mm" AND production_number = "1665"</s>
{ "answer": "SELECT release_date FROM table_name_16 WHERE director = \"robert mckimson\" AND series = \"mm\" AND production_number = \"1665\"", "context": "CREATE TABLE table_name_16 (release_date VARCHAR, production_number VARCHAR, director VARCHAR, series VARCHAR)", "question": "What is the Release date of the Filmography directed by Robert McKimson in MM Series with Production Number 1665?" }
### QUESTION What was the average Jersey # of Steve Griffith, when his Weight (kg) was less than 84? ### CONTEXT CREATE TABLE table_name_71 (jersey__number INTEGER, name VARCHAR, weight__kg_ VARCHAR) ### ANSWER SELECT AVG(jersey__number) FROM table_name_71 WHERE name = "steve griffith" AND weight__kg_ < 84</s>
{ "answer": "SELECT AVG(jersey__number) FROM table_name_71 WHERE name = \"steve griffith\" AND weight__kg_ < 84", "context": "CREATE TABLE table_name_71 (jersey__number INTEGER, name VARCHAR, weight__kg_ VARCHAR)", "question": "What was the average Jersey # of Steve Griffith, when his Weight (kg) was less than 84?" }
### QUESTION What is Postition, when Date of Birth (Age) is Example, and when Player is Mark Spencer? ### CONTEXT CREATE TABLE table_name_59 (position VARCHAR, date_of_birth__age_ VARCHAR, player VARCHAR) ### ANSWER SELECT position FROM table_name_59 WHERE date_of_birth__age_ = "example" AND player = "mark spencer"</s>
{ "answer": "SELECT position FROM table_name_59 WHERE date_of_birth__age_ = \"example\" AND player = \"mark spencer\"", "context": "CREATE TABLE table_name_59 (position VARCHAR, date_of_birth__age_ VARCHAR, player VARCHAR)", "question": "What is Postition, when Date of Birth (Age) is Example, and when Player is Mark Spencer?" }
### QUESTION What is Caps, when Province / Club is DRFC, and when Position is Center? ### CONTEXT CREATE TABLE table_name_49 (caps VARCHAR, province___club VARCHAR, position VARCHAR) ### ANSWER SELECT caps FROM table_name_49 WHERE province___club = "drfc" AND position = "center"</s>
{ "answer": "SELECT caps FROM table_name_49 WHERE province___club = \"drfc\" AND position = \"center\"", "context": "CREATE TABLE table_name_49 (caps VARCHAR, province___club VARCHAR, position VARCHAR)", "question": "What is Caps, when Province / Club is DRFC, and when Position is Center?" }
### QUESTION What is Position, when Province / Club is Example, when Date of Birth (Age) is Example, and when Player is Michael Elumeze? ### CONTEXT CREATE TABLE table_name_52 (position VARCHAR, player VARCHAR, province___club VARCHAR, date_of_birth__age_ VARCHAR) ### ANSWER SELECT position FROM table_name_52 WHERE province___club = "example" AND date_of_birth__age_ = "example" AND player = "michael elumeze"</s>
{ "answer": "SELECT position FROM table_name_52 WHERE province___club = \"example\" AND date_of_birth__age_ = \"example\" AND player = \"michael elumeze\"", "context": "CREATE TABLE table_name_52 (position VARCHAR, player VARCHAR, province___club VARCHAR, date_of_birth__age_ VARCHAR)", "question": "What is Position, when Province / Club is Example, when Date of Birth (Age) is Example, and when Player is Michael Elumeze?" }
### QUESTION What is the highest col in m of the puncak jaya (carstensz pyramid) peak, which is ranked lower than 7 and has a prominence less than 4,884 m? ### CONTEXT CREATE TABLE table_name_91 (col__m_ INTEGER, prominence__m_ VARCHAR, rank VARCHAR, peak VARCHAR) ### ANSWER SELECT MAX(col__m_) FROM table_name_91 WHERE rank < 7 AND peak = "puncak jaya (carstensz pyramid)" AND prominence__m_ < 4 OFFSET 884</s>
{ "answer": "SELECT MAX(col__m_) FROM table_name_91 WHERE rank < 7 AND peak = \"puncak jaya (carstensz pyramid)\" AND prominence__m_ < 4 OFFSET 884", "context": "CREATE TABLE table_name_91 (col__m_ INTEGER, prominence__m_ VARCHAR, rank VARCHAR, peak VARCHAR)", "question": "What is the highest col in m of the puncak jaya (carstensz pyramid) peak, which is ranked lower than 7 and has a prominence less than 4,884 m?" }
### QUESTION What is the highest elevation in m of the bon irau peak, which has a col greater than 0 m and a prominence less than 1,900 m? ### CONTEXT CREATE TABLE table_name_11 (elevation__m_ INTEGER, prominence__m_ VARCHAR, col__m_ VARCHAR, peak VARCHAR) ### ANSWER SELECT MAX(elevation__m_) FROM table_name_11 WHERE col__m_ > 0 AND peak = "bon irau" AND prominence__m_ < 1 OFFSET 900</s>
{ "answer": "SELECT MAX(elevation__m_) FROM table_name_11 WHERE col__m_ > 0 AND peak = \"bon irau\" AND prominence__m_ < 1 OFFSET 900", "context": "CREATE TABLE table_name_11 (elevation__m_ INTEGER, prominence__m_ VARCHAR, col__m_ VARCHAR, peak VARCHAR)", "question": "What is the highest elevation in m of the bon irau peak, which has a col greater than 0 m and a prominence less than 1,900 m?" }
### QUESTION What's the Place of birth listed that has an Elevator of ALexander III, and an Elector of Ruggiero Di San Severino? ### CONTEXT CREATE TABLE table_name_51 (place_of_birth VARCHAR, elevator VARCHAR, elector VARCHAR) ### ANSWER SELECT place_of_birth FROM table_name_51 WHERE elevator = "alexander iii" AND elector = "ruggiero di san severino"</s>
{ "answer": "SELECT place_of_birth FROM table_name_51 WHERE elevator = \"alexander iii\" AND elector = \"ruggiero di san severino\"", "context": "CREATE TABLE table_name_51 (place_of_birth VARCHAR, elevator VARCHAR, elector VARCHAR)", "question": "What's the Place of birth listed that has an Elevator of ALexander III, and an Elector of Ruggiero Di San Severino?" }
### QUESTION What are the earpads of the headphone with a plastic construction, an unknown sensitivity, and was succeeded by sr325? ### CONTEXT CREATE TABLE table_name_43 (earpads VARCHAR, succeeded_by VARCHAR, construction VARCHAR, sensitivity__db_ VARCHAR) ### ANSWER SELECT earpads FROM table_name_43 WHERE construction = "plastic" AND sensitivity__db_ = "unknown" AND succeeded_by = "sr325"</s>
{ "answer": "SELECT earpads FROM table_name_43 WHERE construction = \"plastic\" AND sensitivity__db_ = \"unknown\" AND succeeded_by = \"sr325\"", "context": "CREATE TABLE table_name_43 (earpads VARCHAR, succeeded_by VARCHAR, construction VARCHAR, sensitivity__db_ VARCHAR)", "question": "What are the earpads of the headphone with a plastic construction, an unknown sensitivity, and was succeeded by sr325?" }
### QUESTION what is the release date when the sspec number is sr15h(c0)? ### CONTEXT CREATE TABLE table_name_98 (release_date VARCHAR, sspec_number VARCHAR) ### ANSWER SELECT release_date FROM table_name_98 WHERE sspec_number = "sr15h(c0)"</s>
{ "answer": "SELECT release_date FROM table_name_98 WHERE sspec_number = \"sr15h(c0)\"", "context": "CREATE TABLE table_name_98 (release_date VARCHAR, sspec_number VARCHAR)", "question": "what is the release date when the sspec number is sr15h(c0)?" }
### QUESTION what is the rank when heat is 9 and the nation is great britain? ### CONTEXT CREATE TABLE table_name_21 (rank INTEGER, heat VARCHAR, nation VARCHAR) ### ANSWER SELECT SUM(rank) FROM table_name_21 WHERE heat = 9 AND nation = "great britain"</s>
{ "answer": "SELECT SUM(rank) FROM table_name_21 WHERE heat = 9 AND nation = \"great britain\"", "context": "CREATE TABLE table_name_21 (rank INTEGER, heat VARCHAR, nation VARCHAR)", "question": "what is the rank when heat is 9 and the nation is great britain?" }
### QUESTION What was the total number for March with less than 8.77 in January, more than 1.69 in December, an average monthly addition less than 5.35, and before 2004? ### CONTEXT CREATE TABLE table_name_83 (march VARCHAR, year VARCHAR, average_monthly_additions_in_millions_ VARCHAR, january VARCHAR, december VARCHAR) ### ANSWER SELECT COUNT(march) FROM table_name_83 WHERE january < 8.77 AND december > 1.69 AND average_monthly_additions_in_millions_ < 5.35 AND year < 2004</s>
{ "answer": "SELECT COUNT(march) FROM table_name_83 WHERE january < 8.77 AND december > 1.69 AND average_monthly_additions_in_millions_ < 5.35 AND year < 2004", "context": "CREATE TABLE table_name_83 (march VARCHAR, year VARCHAR, average_monthly_additions_in_millions_ VARCHAR, january VARCHAR, december VARCHAR)", "question": "What was the total number for March with less than 8.77 in January, more than 1.69 in December, an average monthly addition less than 5.35, and before 2004?" }
### QUESTION Name the Gold which has a Nation of australia, and a Bronze smaller than 1? ### CONTEXT CREATE TABLE table_name_64 (gold INTEGER, nation VARCHAR, bronze VARCHAR) ### ANSWER SELECT MIN(gold) FROM table_name_64 WHERE nation = "australia" AND bronze < 1</s>
{ "answer": "SELECT MIN(gold) FROM table_name_64 WHERE nation = \"australia\" AND bronze < 1", "context": "CREATE TABLE table_name_64 (gold INTEGER, nation VARCHAR, bronze VARCHAR)", "question": "Name the Gold which has a Nation of australia, and a Bronze smaller than 1?" }
### QUESTION What is the total number for July with less than 8.05 in October, more than 4.46 in December, and more than 6.79 in November? ### CONTEXT CREATE TABLE table_name_12 (july VARCHAR, november VARCHAR, october VARCHAR, december VARCHAR) ### ANSWER SELECT COUNT(july) FROM table_name_12 WHERE october < 8.05 AND december > 4.46 AND november > 6.79</s>
{ "answer": "SELECT COUNT(july) FROM table_name_12 WHERE october < 8.05 AND december > 4.46 AND november > 6.79", "context": "CREATE TABLE table_name_12 (july VARCHAR, november VARCHAR, october VARCHAR, december VARCHAR)", "question": "What is the total number for July with less than 8.05 in October, more than 4.46 in December, and more than 6.79 in November?" }
### QUESTION Which the highest Bronze of czech republic with a Total smaller than 4? ### CONTEXT CREATE TABLE table_name_63 (bronze INTEGER, nation VARCHAR, total VARCHAR) ### ANSWER SELECT MAX(bronze) FROM table_name_63 WHERE nation = "czech republic" AND total < 4</s>
{ "answer": "SELECT MAX(bronze) FROM table_name_63 WHERE nation = \"czech republic\" AND total < 4", "context": "CREATE TABLE table_name_63 (bronze INTEGER, nation VARCHAR, total VARCHAR)", "question": "Which the highest Bronze of czech republic with a Total smaller than 4?" }
### QUESTION What is the highest SFC in g/(kN*s) for Rolls-Royce/Snecma Olympus 593 engines and SFCs under 1.195 lb/(lbf*h)? ### CONTEXT CREATE TABLE table_name_12 (sfc_in_g__kn INTEGER, engine_type VARCHAR, sfc_in_lb__lbf·h_ VARCHAR) ### ANSWER SELECT MAX(sfc_in_g__kn) AS ·s_ FROM table_name_12 WHERE engine_type = "rolls-royce/snecma olympus 593" AND sfc_in_lb__lbf·h_ < 1.195</s>
{ "answer": "SELECT MAX(sfc_in_g__kn) AS ·s_ FROM table_name_12 WHERE engine_type = \"rolls-royce/snecma olympus 593\" AND sfc_in_lb__lbf·h_ < 1.195", "context": "CREATE TABLE table_name_12 (sfc_in_g__kn INTEGER, engine_type VARCHAR, sfc_in_lb__lbf·h_ VARCHAR)", "question": "What is the highest SFC in g/(kN*s) for Rolls-Royce/Snecma Olympus 593 engines and SFCs under 1.195 lb/(lbf*h)?" }
### QUESTION What is Winner, when Week is 8 May, when Semi Finalists is Helena Suková Mary Pierce, and when Runner-Up is Conchita Martínez Patricia Tarabini? ### CONTEXT CREATE TABLE table_name_70 (winner VARCHAR, runner_up VARCHAR, week_of VARCHAR, semi_finalists VARCHAR) ### ANSWER SELECT winner FROM table_name_70 WHERE week_of = "8 may" AND semi_finalists = "helena suková mary pierce" AND runner_up = "conchita martínez patricia tarabini"</s>
{ "answer": "SELECT winner FROM table_name_70 WHERE week_of = \"8 may\" AND semi_finalists = \"helena suková mary pierce\" AND runner_up = \"conchita martínez patricia tarabini\"", "context": "CREATE TABLE table_name_70 (winner VARCHAR, runner_up VARCHAR, week_of VARCHAR, semi_finalists VARCHAR)", "question": "What is Winner, when Week is 8 May, when Semi Finalists is Helena Suková Mary Pierce, and when Runner-Up is Conchita Martínez Patricia Tarabini?" }
### QUESTION what is the week when the result is w 14-13 and the attendance is higher than 53,295? ### CONTEXT CREATE TABLE table_name_51 (week INTEGER, result VARCHAR, attendance VARCHAR) ### ANSWER SELECT AVG(week) FROM table_name_51 WHERE result = "w 14-13" AND attendance > 53 OFFSET 295</s>
{ "answer": "SELECT AVG(week) FROM table_name_51 WHERE result = \"w 14-13\" AND attendance > 53 OFFSET 295", "context": "CREATE TABLE table_name_51 (week INTEGER, result VARCHAR, attendance VARCHAR)", "question": "what is the week when the result is w 14-13 and the attendance is higher than 53,295?" }
### QUESTION Which animal has an AP duration of 1.0 and a conduction speed of 7–30? ### CONTEXT CREATE TABLE table_name_11 (animal VARCHAR, ap_duration__ms_ VARCHAR, conduction_speed__m_s_ VARCHAR) ### ANSWER SELECT animal FROM table_name_11 WHERE ap_duration__ms_ = "1.0" AND conduction_speed__m_s_ = "7–30"</s>
{ "answer": "SELECT animal FROM table_name_11 WHERE ap_duration__ms_ = \"1.0\" AND conduction_speed__m_s_ = \"7–30\"", "context": "CREATE TABLE table_name_11 (animal VARCHAR, ap_duration__ms_ VARCHAR, conduction_speed__m_s_ VARCHAR)", "question": "Which animal has an AP duration of 1.0 and a conduction speed of 7–30?" }
### QUESTION What AP increase has an AP duration of 0.75? ### CONTEXT CREATE TABLE table_name_68 (ap_increase__mv_ VARCHAR, ap_duration__ms_ VARCHAR) ### ANSWER SELECT ap_increase__mv_ FROM table_name_68 WHERE ap_duration__ms_ = "0.75"</s>
{ "answer": "SELECT ap_increase__mv_ FROM table_name_68 WHERE ap_duration__ms_ = \"0.75\"", "context": "CREATE TABLE table_name_68 (ap_increase__mv_ VARCHAR, ap_duration__ms_ VARCHAR)", "question": "What AP increase has an AP duration of 0.75?" }
### QUESTION what is the borough or A[›] Census area when the Name A[›] is jerome lake dam? ### CONTEXT CREATE TABLE table_name_81 (borough_or_a VARCHAR, ›_ VARCHAR, name_a VARCHAR) ### ANSWER SELECT borough_or_a[›_] AS _census_area FROM table_name_81 WHERE name_a[›_] = "jerome lake dam"</s>
{ "answer": "SELECT borough_or_a[›_] AS _census_area FROM table_name_81 WHERE name_a[›_] = \"jerome lake dam\"", "context": "CREATE TABLE table_name_81 (borough_or_a VARCHAR, ›_ VARCHAR, name_a VARCHAR)", "question": "what is the borough or A[›] Census area when the Name A[›] is jerome lake dam?" }
### QUESTION What is the average goals for Jimmy Greaves, and matches more than 516? ### CONTEXT CREATE TABLE table_name_91 (goals INTEGER, name VARCHAR, matches VARCHAR) ### ANSWER SELECT AVG(goals) FROM table_name_91 WHERE name = "jimmy greaves" AND matches > 516</s>
{ "answer": "SELECT AVG(goals) FROM table_name_91 WHERE name = \"jimmy greaves\" AND matches > 516", "context": "CREATE TABLE table_name_91 (goals INTEGER, name VARCHAR, matches VARCHAR)", "question": "What is the average goals for Jimmy Greaves, and matches more than 516?" }
### QUESTION What is the Original air date for the episode with a Production code of 07-00-107? ### CONTEXT CREATE TABLE table_name_85 (original_air_date VARCHAR, production_code VARCHAR) ### ANSWER SELECT original_air_date FROM table_name_85 WHERE production_code = "07-00-107"</s>
{ "answer": "SELECT original_air_date FROM table_name_85 WHERE production_code = \"07-00-107\"", "context": "CREATE TABLE table_name_85 (original_air_date VARCHAR, production_code VARCHAR)", "question": "What is the Original air date for the episode with a Production code of 07-00-107?" }
### QUESTION What is the Original air date for the episode directed by lev l. spiro, with a Production code of 07-00-109? ### CONTEXT CREATE TABLE table_name_35 (original_air_date VARCHAR, directed_by VARCHAR, production_code VARCHAR) ### ANSWER SELECT original_air_date FROM table_name_35 WHERE directed_by = "lev l. spiro" AND production_code = "07-00-109"</s>
{ "answer": "SELECT original_air_date FROM table_name_35 WHERE directed_by = \"lev l. spiro\" AND production_code = \"07-00-109\"", "context": "CREATE TABLE table_name_35 (original_air_date VARCHAR, directed_by VARCHAR, production_code VARCHAR)", "question": "What is the Original air date for the episode directed by lev l. spiro, with a Production code of 07-00-109?" }
### QUESTION What is the most points for a vehicle with a lola thl1, chassis later than 1986? ### CONTEXT CREATE TABLE table_name_54 (points INTEGER, chassis VARCHAR, year VARCHAR) ### ANSWER SELECT MAX(points) FROM table_name_54 WHERE chassis = "lola thl1" AND year > 1986</s>
{ "answer": "SELECT MAX(points) FROM table_name_54 WHERE chassis = \"lola thl1\" AND year > 1986", "context": "CREATE TABLE table_name_54 (points INTEGER, chassis VARCHAR, year VARCHAR)", "question": "What is the most points for a vehicle with a lola thl1, chassis later than 1986?" }
### QUESTION Which game modes have Pinyin of chāojí mǎlìōu shìjiè? ### CONTEXT CREATE TABLE table_name_13 (game_modes VARCHAR, pinyin VARCHAR) ### ANSWER SELECT game_modes FROM table_name_13 WHERE pinyin = "chāojí mǎlìōu shìjiè"</s>
{ "answer": "SELECT game_modes FROM table_name_13 WHERE pinyin = \"chāojí mǎlìōu shìjiè\"", "context": "CREATE TABLE table_name_13 (game_modes VARCHAR, pinyin VARCHAR)", "question": "Which game modes have Pinyin of chāojí mǎlìōu shìjiè?" }
### QUESTION What was the score on 24 February 2013? ### CONTEXT CREATE TABLE table_name_32 (score VARCHAR, date VARCHAR) ### ANSWER SELECT score FROM table_name_32 WHERE date = "24 february 2013"</s>
{ "answer": "SELECT score FROM table_name_32 WHERE date = \"24 february 2013\"", "context": "CREATE TABLE table_name_32 (score VARCHAR, date VARCHAR)", "question": "What was the score on 24 February 2013?" }
### QUESTION What is Population density (per km²), when Name is Antigua and Barbuda, and when Capital is St. John's? ### CONTEXT CREATE TABLE table_name_81 (population_density__per_km²_ VARCHAR, name VARCHAR, capital VARCHAR) ### ANSWER SELECT population_density__per_km²_ FROM table_name_81 WHERE name = "antigua and barbuda" AND capital = "st. john's"</s>
{ "answer": "SELECT population_density__per_km²_ FROM table_name_81 WHERE name = \"antigua and barbuda\" AND capital = \"st. john's\"", "context": "CREATE TABLE table_name_81 (population_density__per_km²_ VARCHAR, name VARCHAR, capital VARCHAR)", "question": "What is Population density (per km²), when Name is Antigua and Barbuda, and when Capital is St. John's?" }
### QUESTION Who were the opponents on grass when playing with Mark Woodforde, and the outcome of winner, and a year greater than 1996? ### CONTEXT CREATE TABLE table_name_61 (opponents VARCHAR, year VARCHAR, outcome VARCHAR, surface VARCHAR, partner VARCHAR) ### ANSWER SELECT opponents FROM table_name_61 WHERE surface = "grass" AND partner = "mark woodforde" AND outcome = "winner" AND year > 1996</s>
{ "answer": "SELECT opponents FROM table_name_61 WHERE surface = \"grass\" AND partner = \"mark woodforde\" AND outcome = \"winner\" AND year > 1996", "context": "CREATE TABLE table_name_61 (opponents VARCHAR, year VARCHAR, outcome VARCHAR, surface VARCHAR, partner VARCHAR)", "question": "Who were the opponents on grass when playing with Mark Woodforde, and the outcome of winner, and a year greater than 1996?" }