text
stringlengths
150
1.06k
source
dict
### QUESTION What is the Date that chicago black hawks has a Record of 2–2? ### CONTEXT CREATE TABLE table_name_5 (date VARCHAR, visitor VARCHAR, record VARCHAR) ### ANSWER SELECT date FROM table_name_5 WHERE visitor = "chicago black hawks" AND record = "2–2"</s>
{ "answer": "SELECT date FROM table_name_5 WHERE visitor = \"chicago black hawks\" AND record = \"2–2\"", "context": "CREATE TABLE table_name_5 (date VARCHAR, visitor VARCHAR, record VARCHAR)", "question": "What is the Date that chicago black hawks has a Record of 2–2?" }
### QUESTION What record was set when the result/game was montreal 20 @ ottawa 10? ### CONTEXT CREATE TABLE table_21436373_8 (type_of_record VARCHAR, result_games VARCHAR) ### ANSWER SELECT type_of_record FROM table_21436373_8 WHERE result_games = "Montreal 20 @ Ottawa 10"</s>
{ "answer": "SELECT type_of_record FROM table_21436373_8 WHERE result_games = \"Montreal 20 @ Ottawa 10\"", "context": "CREATE TABLE table_21436373_8 (type_of_record VARCHAR, result_games VARCHAR)", "question": "What record was set when the result/game was montreal 20 @ ottawa 10?" }
### QUESTION Which Position has a College/Junior/Club Team (League) of estevan bruins (wchl), and a Round of 3? ### CONTEXT CREATE TABLE table_name_11 (position VARCHAR, college_junior_club_team__league_ VARCHAR, round VARCHAR) ### ANSWER SELECT position FROM table_name_11 WHERE college_junior_club_team__league_ = "estevan bruins (wchl)" AND round = 3</s>
{ "answer": "SELECT position FROM table_name_11 WHERE college_junior_club_team__league_ = \"estevan bruins (wchl)\" AND round = 3", "context": "CREATE TABLE table_name_11 (position VARCHAR, college_junior_club_team__league_ VARCHAR, round VARCHAR)", "question": "Which Position has a College/Junior/Club Team (League) of estevan bruins (wchl), and a Round of 3?" }
### QUESTION What is the value for INT YDS, when the Team is New Orleans Saints, and when the value for Sacks is greater than 0, and when the vale for Solo is 71? ### CONTEXT CREATE TABLE table_name_68 (int_yds VARCHAR, solo VARCHAR, team VARCHAR, sacks VARCHAR) ### ANSWER SELECT int_yds FROM table_name_68 WHERE team = "new orleans saints" AND sacks > 0 AND solo = 71</s>
{ "answer": "SELECT int_yds FROM table_name_68 WHERE team = \"new orleans saints\" AND sacks > 0 AND solo = 71", "context": "CREATE TABLE table_name_68 (int_yds VARCHAR, solo VARCHAR, team VARCHAR, sacks VARCHAR)", "question": "What is the value for INT YDS, when the Team is New Orleans Saints, and when the value for Sacks is greater than 0, and when the vale for Solo is 71?" }
### QUESTION What is the sum of the episode numbers where chip esten is the 4th performer and christopher smith was the 2nd performer? ### CONTEXT CREATE TABLE table_name_37 (episode INTEGER, performer_4 VARCHAR, performer_2 VARCHAR) ### ANSWER SELECT SUM(episode) FROM table_name_37 WHERE performer_4 = "chip esten" AND performer_2 = "christopher smith"</s>
{ "answer": "SELECT SUM(episode) FROM table_name_37 WHERE performer_4 = \"chip esten\" AND performer_2 = \"christopher smith\"", "context": "CREATE TABLE table_name_37 (episode INTEGER, performer_4 VARCHAR, performer_2 VARCHAR)", "question": "What is the sum of the episode numbers where chip esten is the 4th performer and christopher smith was the 2nd performer?" }
### QUESTION What date was the match on a clay surface against Andrea Hlaváčková? ### CONTEXT CREATE TABLE table_name_55 (date VARCHAR, surface VARCHAR, opponent VARCHAR) ### ANSWER SELECT date FROM table_name_55 WHERE surface = "clay" AND opponent = "andrea hlaváčková"</s>
{ "answer": "SELECT date FROM table_name_55 WHERE surface = \"clay\" AND opponent = \"andrea hlaváčková\"", "context": "CREATE TABLE table_name_55 (date VARCHAR, surface VARCHAR, opponent VARCHAR)", "question": "What date was the match on a clay surface against Andrea Hlaváčková?" }
### QUESTION What is the name of the opponent at the Herceg Novi tournament? ### CONTEXT CREATE TABLE table_name_54 (opponent VARCHAR, tournament VARCHAR) ### ANSWER SELECT opponent FROM table_name_54 WHERE tournament = "herceg novi"</s>
{ "answer": "SELECT opponent FROM table_name_54 WHERE tournament = \"herceg novi\"", "context": "CREATE TABLE table_name_54 (opponent VARCHAR, tournament VARCHAR)", "question": "What is the name of the opponent at the Herceg Novi tournament?" }
### QUESTION Which Played has a Lost larger than 2, and a Team of américa? ### CONTEXT CREATE TABLE table_name_4 (played VARCHAR, lost VARCHAR, team VARCHAR) ### ANSWER SELECT played FROM table_name_4 WHERE lost > 2 AND team = "américa"</s>
{ "answer": "SELECT played FROM table_name_4 WHERE lost > 2 AND team = \"américa\"", "context": "CREATE TABLE table_name_4 (played VARCHAR, lost VARCHAR, team VARCHAR)", "question": "Which Played has a Lost larger than 2, and a Team of américa?" }
### QUESTION Which Draws has a Wins smaller than 17, and an Against smaller than 1158? ### CONTEXT CREATE TABLE table_name_64 (draws VARCHAR, wins VARCHAR, against VARCHAR) ### ANSWER SELECT COUNT(draws) FROM table_name_64 WHERE wins < 17 AND against < 1158</s>
{ "answer": "SELECT COUNT(draws) FROM table_name_64 WHERE wins < 17 AND against < 1158", "context": "CREATE TABLE table_name_64 (draws VARCHAR, wins VARCHAR, against VARCHAR)", "question": "Which Draws has a Wins smaller than 17, and an Against smaller than 1158?" }
### QUESTION What is the name of the winner of the tour championship tournament? ### CONTEXT CREATE TABLE table_name_73 (winner VARCHAR, tournament VARCHAR) ### ANSWER SELECT winner FROM table_name_73 WHERE tournament = "the tour championship"</s>
{ "answer": "SELECT winner FROM table_name_73 WHERE tournament = \"the tour championship\"", "context": "CREATE TABLE table_name_73 (winner VARCHAR, tournament VARCHAR)", "question": "What is the name of the winner of the tour championship tournament?" }
### QUESTION Which Site has a Sport of w swimming? ### CONTEXT CREATE TABLE table_name_38 (site VARCHAR, sport VARCHAR) ### ANSWER SELECT site FROM table_name_38 WHERE sport = "w swimming"</s>
{ "answer": "SELECT site FROM table_name_38 WHERE sport = \"w swimming\"", "context": "CREATE TABLE table_name_38 (site VARCHAR, sport VARCHAR)", "question": "Which Site has a Sport of w swimming?" }
### QUESTION What team has Steinar Kaldal, a guard / forward? ### CONTEXT CREATE TABLE table_name_57 (team VARCHAR, position VARCHAR, player VARCHAR) ### ANSWER SELECT team FROM table_name_57 WHERE position = "guard / forward" AND player = "steinar kaldal"</s>
{ "answer": "SELECT team FROM table_name_57 WHERE position = \"guard / forward\" AND player = \"steinar kaldal\"", "context": "CREATE TABLE table_name_57 (team VARCHAR, position VARCHAR, player VARCHAR)", "question": "What team has Steinar Kaldal, a guard / forward?" }
### QUESTION What is the format for the United States dated July 23, 2002? ### CONTEXT CREATE TABLE table_name_84 (format VARCHAR, region VARCHAR, date VARCHAR) ### ANSWER SELECT format FROM table_name_84 WHERE region = "united states" AND date = "july 23, 2002"</s>
{ "answer": "SELECT format FROM table_name_84 WHERE region = \"united states\" AND date = \"july 23, 2002\"", "context": "CREATE TABLE table_name_84 (format VARCHAR, region VARCHAR, date VARCHAR)", "question": "What is the format for the United States dated July 23, 2002?" }
### QUESTION What is varricchio's status? ### CONTEXT CREATE TABLE table_name_75 (status VARCHAR, authors VARCHAR) ### ANSWER SELECT status FROM table_name_75 WHERE authors = "varricchio"</s>
{ "answer": "SELECT status FROM table_name_75 WHERE authors = \"varricchio\"", "context": "CREATE TABLE table_name_75 (status VARCHAR, authors VARCHAR)", "question": "What is varricchio's status?" }
### QUESTION What is the points average when the tied is greater than 8, less than 82 games and the coach of Bryan Mclay † Morris Lallo ‡ Gerry Moore ‡, and greater than 322 goals? ### CONTEXT CREATE TABLE table_name_13 (points INTEGER, goals_against VARCHAR, coach VARCHAR, tied VARCHAR, games VARCHAR) ### ANSWER SELECT AVG(points) FROM table_name_13 WHERE tied > 8 AND games < 82 AND coach = "bryan mclay † morris lallo ‡ gerry moore ‡" AND goals_against > 322</s>
{ "answer": "SELECT AVG(points) FROM table_name_13 WHERE tied > 8 AND games < 82 AND coach = \"bryan mclay † morris lallo ‡ gerry moore ‡\" AND goals_against > 322", "context": "CREATE TABLE table_name_13 (points INTEGER, goals_against VARCHAR, coach VARCHAR, tied VARCHAR, games VARCHAR)", "question": "What is the points average when the tied is greater than 8, less than 82 games and the coach of Bryan Mclay † Morris Lallo ‡ Gerry Moore ‡, and greater than 322 goals?" }
### QUESTION Where was the game that the Indianapolis Colts lost 24-14? ### CONTEXT CREATE TABLE table_name_23 (location VARCHAR, loser VARCHAR, result VARCHAR) ### ANSWER SELECT location FROM table_name_23 WHERE loser = "indianapolis colts" AND result = "24-14"</s>
{ "answer": "SELECT location FROM table_name_23 WHERE loser = \"indianapolis colts\" AND result = \"24-14\"", "context": "CREATE TABLE table_name_23 (location VARCHAR, loser VARCHAR, result VARCHAR)", "question": "Where was the game that the Indianapolis Colts lost 24-14?" }
### QUESTION What is the highest 4 hoops, 2 clubs of Belarus, which has a total less than 38.25? ### CONTEXT ### ANSWER SELECT TOP('4 hoops 2 clubs') FROM table_name_14 WHERE nation = "belarus" AND total < 38.25</s>
{ "answer": "SELECT TOP('4 hoops 2 clubs') FROM table_name_14 WHERE nation = \"belarus\" AND total < 38.25", "context": "", "question": "What is the highest 4 hoops, 2 clubs of Belarus, which has a total less than 38.25?" }
### QUESTION Which team won against the New England Patriots 40-21? ### CONTEXT CREATE TABLE table_name_14 (winner VARCHAR, loser VARCHAR, result VARCHAR) ### ANSWER SELECT winner FROM table_name_14 WHERE loser = "new england patriots" AND result = "40-21"</s>
{ "answer": "SELECT winner FROM table_name_14 WHERE loser = \"new england patriots\" AND result = \"40-21\"", "context": "CREATE TABLE table_name_14 (winner VARCHAR, loser VARCHAR, result VARCHAR)", "question": "Which team won against the New England Patriots 40-21?" }
### QUESTION What is the average Extras for Muttiah Muralitharan, with less than 353 Runs Conceded? ### CONTEXT CREATE TABLE table_name_38 (extras INTEGER, name VARCHAR, runs_conceded VARCHAR) ### ANSWER SELECT AVG(extras) FROM table_name_38 WHERE name = "muttiah muralitharan" AND runs_conceded < 353</s>
{ "answer": "SELECT AVG(extras) FROM table_name_38 WHERE name = \"muttiah muralitharan\" AND runs_conceded < 353", "context": "CREATE TABLE table_name_38 (extras INTEGER, name VARCHAR, runs_conceded VARCHAR)", "question": "What is the average Extras for Muttiah Muralitharan, with less than 353 Runs Conceded?" }
### QUESTION Which average Round has a Pick # larger than 20, and a College of virginia, and an Overall larger than 127? ### CONTEXT CREATE TABLE table_name_43 (round INTEGER, overall VARCHAR, pick__number VARCHAR, college VARCHAR) ### ANSWER SELECT AVG(round) FROM table_name_43 WHERE pick__number > 20 AND college = "virginia" AND overall > 127</s>
{ "answer": "SELECT AVG(round) FROM table_name_43 WHERE pick__number > 20 AND college = \"virginia\" AND overall > 127", "context": "CREATE TABLE table_name_43 (round INTEGER, overall VARCHAR, pick__number VARCHAR, college VARCHAR)", "question": "Which average Round has a Pick # larger than 20, and a College of virginia, and an Overall larger than 127?" }
### QUESTION What is the year built of the home with a built status and a 42 m. height? ### CONTEXT CREATE TABLE table_name_41 (status VARCHAR, height VARCHAR) ### ANSWER SELECT "built" FROM table_name_41 WHERE status = "built" AND height = "42 m."</s>
{ "answer": "SELECT \"built\" FROM table_name_41 WHERE status = \"built\" AND height = \"42 m.\"", "context": "CREATE TABLE table_name_41 (status VARCHAR, height VARCHAR)", "question": "What is the year built of the home with a built status and a 42 m. height?" }
### QUESTION What is the name of the winner when the Score was 274 (–14) in tennessee? ### CONTEXT CREATE TABLE table_name_40 (winner VARCHAR, score VARCHAR, location VARCHAR) ### ANSWER SELECT winner FROM table_name_40 WHERE score = "274 (–14)" AND location = "tennessee"</s>
{ "answer": "SELECT winner FROM table_name_40 WHERE score = \"274 (–14)\" AND location = \"tennessee\"", "context": "CREATE TABLE table_name_40 (winner VARCHAR, score VARCHAR, location VARCHAR)", "question": "What is the name of the winner when the Score was 274 (–14) in tennessee?" }
### QUESTION What was the lowest number of Total Foreign-born (millions) people, when the number of people Born in a non EU state (millions) was 6.415? ### CONTEXT CREATE TABLE table_name_38 (total_foreign_born__millions_ INTEGER, born_in_a_non_eu_state__millions_ VARCHAR) ### ANSWER SELECT MIN(total_foreign_born__millions_) FROM table_name_38 WHERE born_in_a_non_eu_state__millions_ = 6.415</s>
{ "answer": "SELECT MIN(total_foreign_born__millions_) FROM table_name_38 WHERE born_in_a_non_eu_state__millions_ = 6.415", "context": "CREATE TABLE table_name_38 (total_foreign_born__millions_ INTEGER, born_in_a_non_eu_state__millions_ VARCHAR)", "question": "What was the lowest number of Total Foreign-born (millions) people, when the number of people Born in a non EU state (millions) was 6.415?" }
### QUESTION What was the average number of people born in other EU states in millions, when the number of people born in a non EU state in millions was 31.368, and when the total population in millions was higher than 501.098? ### CONTEXT CREATE TABLE table_name_88 (born_in_other_eu_state__millions_ INTEGER, born_in_a_non_eu_state__millions_ VARCHAR, total_population__millions_ VARCHAR) ### ANSWER SELECT AVG(born_in_other_eu_state__millions_) FROM table_name_88 WHERE born_in_a_non_eu_state__millions_ = 31.368 AND total_population__millions_ > 501.098</s>
{ "answer": "SELECT AVG(born_in_other_eu_state__millions_) FROM table_name_88 WHERE born_in_a_non_eu_state__millions_ = 31.368 AND total_population__millions_ > 501.098", "context": "CREATE TABLE table_name_88 (born_in_other_eu_state__millions_ INTEGER, born_in_a_non_eu_state__millions_ VARCHAR, total_population__millions_ VARCHAR)", "question": "What was the average number of people born in other EU states in millions, when the number of people born in a non EU state in millions was 31.368, and when the total population in millions was higher than 501.098?" }
### QUESTION Which Nationality has a Player of rudy poeschek? ### CONTEXT CREATE TABLE table_name_51 (nationality VARCHAR, player VARCHAR) ### ANSWER SELECT nationality FROM table_name_51 WHERE player = "rudy poeschek"</s>
{ "answer": "SELECT nationality FROM table_name_51 WHERE player = \"rudy poeschek\"", "context": "CREATE TABLE table_name_51 (nationality VARCHAR, player VARCHAR)", "question": "Which Nationality has a Player of rudy poeschek?" }
### QUESTION Which Position has a Nationality of canada, and a Player of pat janostin? ### CONTEXT CREATE TABLE table_name_81 (position VARCHAR, nationality VARCHAR, player VARCHAR) ### ANSWER SELECT position FROM table_name_81 WHERE nationality = "canada" AND player = "pat janostin"</s>
{ "answer": "SELECT position FROM table_name_81 WHERE nationality = \"canada\" AND player = \"pat janostin\"", "context": "CREATE TABLE table_name_81 (position VARCHAR, nationality VARCHAR, player VARCHAR)", "question": "Which Position has a Nationality of canada, and a Player of pat janostin?" }
### QUESTION Which Week has an Opponent of baltimore colts, and an Attendance smaller than 55,137? ### CONTEXT CREATE TABLE table_name_65 (week INTEGER, opponent VARCHAR, attendance VARCHAR) ### ANSWER SELECT AVG(week) FROM table_name_65 WHERE opponent = "baltimore colts" AND attendance < 55 OFFSET 137</s>
{ "answer": "SELECT AVG(week) FROM table_name_65 WHERE opponent = \"baltimore colts\" AND attendance < 55 OFFSET 137", "context": "CREATE TABLE table_name_65 (week INTEGER, opponent VARCHAR, attendance VARCHAR)", "question": "Which Week has an Opponent of baltimore colts, and an Attendance smaller than 55,137?" }
### QUESTION What was the partner of the team that faced the guillermo garcía-lópez albert portas on clay? ### CONTEXT CREATE TABLE table_name_45 (partner VARCHAR, surface VARCHAR, opponents VARCHAR) ### ANSWER SELECT partner FROM table_name_45 WHERE surface = "clay" AND opponents = "guillermo garcía-lópez albert portas"</s>
{ "answer": "SELECT partner FROM table_name_45 WHERE surface = \"clay\" AND opponents = \"guillermo garcía-lópez albert portas\"", "context": "CREATE TABLE table_name_45 (partner VARCHAR, surface VARCHAR, opponents VARCHAR)", "question": "What was the partner of the team that faced the guillermo garcía-lópez albert portas on clay?" }
### QUESTION What year was the startup for the Project Named of taq taq ph 2? ### CONTEXT CREATE TABLE table_name_51 (year_startup VARCHAR, project_name VARCHAR) ### ANSWER SELECT year_startup FROM table_name_51 WHERE project_name = "taq taq ph 2"</s>
{ "answer": "SELECT year_startup FROM table_name_51 WHERE project_name = \"taq taq ph 2\"", "context": "CREATE TABLE table_name_51 (year_startup VARCHAR, project_name VARCHAR)", "question": "What year was the startup for the Project Named of taq taq ph 2?" }
### QUESTION What is the operator for peak 90, in startup year 2010 for the project named Aosp expansion 1 (jackpine ph 1a)? ### CONTEXT CREATE TABLE table_name_89 (operator VARCHAR, project_name VARCHAR, peak VARCHAR, year_startup VARCHAR) ### ANSWER SELECT operator FROM table_name_89 WHERE peak = "90" AND year_startup = "2010" AND project_name = "aosp expansion 1 (jackpine ph 1a)"</s>
{ "answer": "SELECT operator FROM table_name_89 WHERE peak = \"90\" AND year_startup = \"2010\" AND project_name = \"aosp expansion 1 (jackpine ph 1a)\"", "context": "CREATE TABLE table_name_89 (operator VARCHAR, project_name VARCHAR, peak VARCHAR, year_startup VARCHAR)", "question": "What is the operator for peak 90, in startup year 2010 for the project named Aosp expansion 1 (jackpine ph 1a)?" }
### QUESTION Which Partner has an Opponents of wayne arthurs sandon stolle? ### CONTEXT CREATE TABLE table_name_24 (partner VARCHAR, opponents VARCHAR) ### ANSWER SELECT partner FROM table_name_24 WHERE opponents = "wayne arthurs sandon stolle"</s>
{ "answer": "SELECT partner FROM table_name_24 WHERE opponents = \"wayne arthurs sandon stolle\"", "context": "CREATE TABLE table_name_24 (partner VARCHAR, opponents VARCHAR)", "question": "Which Partner has an Opponents of wayne arthurs sandon stolle?" }
### QUESTION What is listed under occupation for someone from Santa Monica, California? ### CONTEXT CREATE TABLE table_name_71 (occupation VARCHAR, hometown VARCHAR) ### ANSWER SELECT occupation FROM table_name_71 WHERE hometown = "santa monica, california"</s>
{ "answer": "SELECT occupation FROM table_name_71 WHERE hometown = \"santa monica, california\"", "context": "CREATE TABLE table_name_71 (occupation VARCHAR, hometown VARCHAR)", "question": "What is listed under occupation for someone from Santa Monica, California?" }
### QUESTION Which years have a Decile smaller than 6, an Area of te kuiti, and an Authority of state integrated? ### CONTEXT CREATE TABLE table_name_41 (years VARCHAR, authority VARCHAR, decile VARCHAR, area VARCHAR) ### ANSWER SELECT years FROM table_name_41 WHERE decile < 6 AND area = "te kuiti" AND authority = "state integrated"</s>
{ "answer": "SELECT years FROM table_name_41 WHERE decile < 6 AND area = \"te kuiti\" AND authority = \"state integrated\"", "context": "CREATE TABLE table_name_41 (years VARCHAR, authority VARCHAR, decile VARCHAR, area VARCHAR)", "question": "Which years have a Decile smaller than 6, an Area of te kuiti, and an Authority of state integrated?" }
### QUESTION What is the home team score of the Ghantoot Racing and Polo Club Ground? ### CONTEXT CREATE TABLE table_name_25 (home_team VARCHAR, ground VARCHAR) ### ANSWER SELECT home_team AS score FROM table_name_25 WHERE ground = "ghantoot racing and polo club"</s>
{ "answer": "SELECT home_team AS score FROM table_name_25 WHERE ground = \"ghantoot racing and polo club\"", "context": "CREATE TABLE table_name_25 (home_team VARCHAR, ground VARCHAR)", "question": "What is the home team score of the Ghantoot Racing and Polo Club Ground?" }
### QUESTION What is the nomination title used for the original film, Monsieur Hawarden? ### CONTEXT CREATE TABLE table_name_18 (film_title_used_in_nomination VARCHAR, original_title VARCHAR) ### ANSWER SELECT film_title_used_in_nomination FROM table_name_18 WHERE original_title = "monsieur hawarden"</s>
{ "answer": "SELECT film_title_used_in_nomination FROM table_name_18 WHERE original_title = \"monsieur hawarden\"", "context": "CREATE TABLE table_name_18 (film_title_used_in_nomination VARCHAR, original_title VARCHAR)", "question": "What is the nomination title used for the original film, Monsieur Hawarden?" }
### QUESTION Which Sampling Memory/Upgrade-able has a rate of 16-bit 44.1khz? ### CONTEXT CREATE TABLE table_name_66 (sampling_memory_upgrade_able VARCHAR, sampling_rate VARCHAR) ### ANSWER SELECT sampling_memory_upgrade_able FROM table_name_66 WHERE sampling_rate = "16-bit 44.1khz"</s>
{ "answer": "SELECT sampling_memory_upgrade_able FROM table_name_66 WHERE sampling_rate = \"16-bit 44.1khz\"", "context": "CREATE TABLE table_name_66 (sampling_memory_upgrade_able VARCHAR, sampling_rate VARCHAR)", "question": "Which Sampling Memory/Upgrade-able has a rate of 16-bit 44.1khz?" }
### QUESTION What is the average agricultural panel value with a Labour panel less than 1, a total value less than 21, and a National University of Ireland value greater than 0? ### CONTEXT CREATE TABLE table_name_53 (agricultural_panel INTEGER, national_university_of_ireland VARCHAR, labour_panel VARCHAR, total VARCHAR) ### ANSWER SELECT AVG(agricultural_panel) FROM table_name_53 WHERE labour_panel < 1 AND total < 21 AND national_university_of_ireland > 0</s>
{ "answer": "SELECT AVG(agricultural_panel) FROM table_name_53 WHERE labour_panel < 1 AND total < 21 AND national_university_of_ireland > 0", "context": "CREATE TABLE table_name_53 (agricultural_panel INTEGER, national_university_of_ireland VARCHAR, labour_panel VARCHAR, total VARCHAR)", "question": "What is the average agricultural panel value with a Labour panel less than 1, a total value less than 21, and a National University of Ireland value greater than 0?" }
### QUESTION What is the highest labour panel value with a cultural and educational panel greater than 1, a University of Dublin value greater than 0, and a total value less than 60? ### CONTEXT CREATE TABLE table_name_43 (labour_panel INTEGER, total VARCHAR, cultural_and_educational_panel VARCHAR, university_of_dublin VARCHAR) ### ANSWER SELECT MAX(labour_panel) FROM table_name_43 WHERE cultural_and_educational_panel > 1 AND university_of_dublin > 0 AND total < 60</s>
{ "answer": "SELECT MAX(labour_panel) FROM table_name_43 WHERE cultural_and_educational_panel > 1 AND university_of_dublin > 0 AND total < 60", "context": "CREATE TABLE table_name_43 (labour_panel INTEGER, total VARCHAR, cultural_and_educational_panel VARCHAR, university_of_dublin VARCHAR)", "question": "What is the highest labour panel value with a cultural and educational panel greater than 1, a University of Dublin value greater than 0, and a total value less than 60?" }
### QUESTION Which Locomotive Entered Service in November 1984 and has an Operator of Southern Shorthaul Railroad? ### CONTEXT CREATE TABLE table_name_59 (locomotive VARCHAR, operator VARCHAR, entered_service VARCHAR) ### ANSWER SELECT locomotive FROM table_name_59 WHERE operator = "southern shorthaul railroad" AND entered_service = "november 1984"</s>
{ "answer": "SELECT locomotive FROM table_name_59 WHERE operator = \"southern shorthaul railroad\" AND entered_service = \"november 1984\"", "context": "CREATE TABLE table_name_59 (locomotive VARCHAR, operator VARCHAR, entered_service VARCHAR)", "question": "Which Locomotive Entered Service in November 1984 and has an Operator of Southern Shorthaul Railroad?" }
### QUESTION What is the Serial number of the Locomotive that Entered Service in November 1984 and has an Owner of Chicago Freight Car Leasing Australia? ### CONTEXT CREATE TABLE table_name_90 (serial_no VARCHAR, entered_service VARCHAR, owner VARCHAR) ### ANSWER SELECT serial_no FROM table_name_90 WHERE entered_service = "november 1984" AND owner = "chicago freight car leasing australia"</s>
{ "answer": "SELECT serial_no FROM table_name_90 WHERE entered_service = \"november 1984\" AND owner = \"chicago freight car leasing australia\"", "context": "CREATE TABLE table_name_90 (serial_no VARCHAR, entered_service VARCHAR, owner VARCHAR)", "question": "What is the Serial number of the Locomotive that Entered Service in November 1984 and has an Owner of Chicago Freight Car Leasing Australia?" }
### QUESTION What is the Serial Number of the Locomotive that Entered Service October 1989? ### CONTEXT CREATE TABLE table_name_26 (serial_no VARCHAR, entered_service VARCHAR) ### ANSWER SELECT serial_no FROM table_name_26 WHERE entered_service = "october 1989"</s>
{ "answer": "SELECT serial_no FROM table_name_26 WHERE entered_service = \"october 1989\"", "context": "CREATE TABLE table_name_26 (serial_no VARCHAR, entered_service VARCHAR)", "question": "What is the Serial Number of the Locomotive that Entered Service October 1989?" }
### QUESTION What is the 2011 value with a 2008 value of 0.3 and is a member state of the European Union? ### CONTEXT CREATE TABLE table_name_64 (member_state VARCHAR) ### ANSWER SELECT 2011 FROM table_name_64 WHERE 2008 = "0.3" AND member_state = "european union"</s>
{ "answer": "SELECT 2011 FROM table_name_64 WHERE 2008 = \"0.3\" AND member_state = \"european union\"", "context": "CREATE TABLE table_name_64 (member_state VARCHAR)", "question": "What is the 2011 value with a 2008 value of 0.3 and is a member state of the European Union?" }
### QUESTION What is the position number of the club with more than 24 points and a w-l-d of 8-5-3? ### CONTEXT CREATE TABLE table_name_99 (position VARCHAR, points VARCHAR, w_l_d VARCHAR) ### ANSWER SELECT COUNT(position) FROM table_name_99 WHERE points > 24 AND w_l_d = "8-5-3"</s>
{ "answer": "SELECT COUNT(position) FROM table_name_99 WHERE points > 24 AND w_l_d = \"8-5-3\"", "context": "CREATE TABLE table_name_99 (position VARCHAR, points VARCHAR, w_l_d VARCHAR)", "question": "What is the position number of the club with more than 24 points and a w-l-d of 8-5-3?" }
### QUESTION What kind of IATA has an Airport of hamburg airport? ### CONTEXT CREATE TABLE table_name_5 (iata VARCHAR, airport VARCHAR) ### ANSWER SELECT iata FROM table_name_5 WHERE airport = "hamburg airport"</s>
{ "answer": "SELECT iata FROM table_name_5 WHERE airport = \"hamburg airport\"", "context": "CREATE TABLE table_name_5 (iata VARCHAR, airport VARCHAR)", "question": "What kind of IATA has an Airport of hamburg airport?" }
### QUESTION Can you tell me the Lost that has Losing BP of 5, and the Try BP of 0? ### CONTEXT CREATE TABLE table_name_65 (lost VARCHAR, losing_bp VARCHAR, try_bp VARCHAR) ### ANSWER SELECT lost FROM table_name_65 WHERE losing_bp = "5" AND try_bp = "0"</s>
{ "answer": "SELECT lost FROM table_name_65 WHERE losing_bp = \"5\" AND try_bp = \"0\"", "context": "CREATE TABLE table_name_65 (lost VARCHAR, losing_bp VARCHAR, try_bp VARCHAR)", "question": "Can you tell me the Lost that has Losing BP of 5, and the Try BP of 0?" }
### QUESTION Which cornerback has the lowest overall and a pick number smaller than 16? ### CONTEXT CREATE TABLE table_name_30 (overall INTEGER, position VARCHAR, pick__number VARCHAR) ### ANSWER SELECT MIN(overall) FROM table_name_30 WHERE position = "cornerback" AND pick__number < 16</s>
{ "answer": "SELECT MIN(overall) FROM table_name_30 WHERE position = \"cornerback\" AND pick__number < 16", "context": "CREATE TABLE table_name_30 (overall INTEGER, position VARCHAR, pick__number VARCHAR)", "question": "Which cornerback has the lowest overall and a pick number smaller than 16?" }
### QUESTION Which cornerback has the highest round? ### CONTEXT CREATE TABLE table_name_97 (round INTEGER, position VARCHAR) ### ANSWER SELECT MAX(round) FROM table_name_97 WHERE position = "cornerback"</s>
{ "answer": "SELECT MAX(round) FROM table_name_97 WHERE position = \"cornerback\"", "context": "CREATE TABLE table_name_97 (round INTEGER, position VARCHAR)", "question": "Which cornerback has the highest round?" }
### QUESTION What was the location that had an accident by the F-27-600RF aircraft with tail number 6O-SAZ? ### CONTEXT CREATE TABLE table_name_42 (location VARCHAR, aircraft VARCHAR, tail_number VARCHAR) ### ANSWER SELECT location FROM table_name_42 WHERE aircraft = "f-27-600rf" AND tail_number = "6o-saz"</s>
{ "answer": "SELECT location FROM table_name_42 WHERE aircraft = \"f-27-600rf\" AND tail_number = \"6o-saz\"", "context": "CREATE TABLE table_name_42 (location VARCHAR, aircraft VARCHAR, tail_number VARCHAR)", "question": "What was the location that had an accident by the F-27-600RF aircraft with tail number 6O-SAZ?" }
### QUESTION In Limerick County, what is the Rank with a Total larger than 12 and Tipperary as the Opposition? ### CONTEXT CREATE TABLE table_name_48 (rank INTEGER, total VARCHAR, opposition VARCHAR, county VARCHAR) ### ANSWER SELECT AVG(rank) FROM table_name_48 WHERE opposition = "tipperary" AND county = "limerick" AND total > 12</s>
{ "answer": "SELECT AVG(rank) FROM table_name_48 WHERE opposition = \"tipperary\" AND county = \"limerick\" AND total > 12", "context": "CREATE TABLE table_name_48 (rank INTEGER, total VARCHAR, opposition VARCHAR, county VARCHAR)", "question": "In Limerick County, what is the Rank with a Total larger than 12 and Tipperary as the Opposition?" }
### QUESTION How many earnings have Wins larger than 3? ### CONTEXT CREATE TABLE table_name_70 (earnings___ INTEGER, wins INTEGER) ### ANSWER SELECT SUM(earnings___) AS $__ FROM table_name_70 WHERE wins > 3</s>
{ "answer": "SELECT SUM(earnings___) AS $__ FROM table_name_70 WHERE wins > 3", "context": "CREATE TABLE table_name_70 (earnings___ INTEGER, wins INTEGER)", "question": "How many earnings have Wins larger than 3?" }
### QUESTION What is the average of points for 8th place with draw more than 8? ### CONTEXT CREATE TABLE table_name_55 (points INTEGER, place VARCHAR, draw VARCHAR) ### ANSWER SELECT AVG(points) FROM table_name_55 WHERE place = "8th" AND draw > 8</s>
{ "answer": "SELECT AVG(points) FROM table_name_55 WHERE place = \"8th\" AND draw > 8", "context": "CREATE TABLE table_name_55 (points INTEGER, place VARCHAR, draw VARCHAR)", "question": "What is the average of points for 8th place with draw more than 8?" }
### QUESTION What is the sum for gold when there is more than 17 silver and more than 24 bronze? ### CONTEXT CREATE TABLE table_name_28 (gold INTEGER, silver VARCHAR, bronze VARCHAR) ### ANSWER SELECT SUM(gold) FROM table_name_28 WHERE silver > 17 AND bronze > 24</s>
{ "answer": "SELECT SUM(gold) FROM table_name_28 WHERE silver > 17 AND bronze > 24", "context": "CREATE TABLE table_name_28 (gold INTEGER, silver VARCHAR, bronze VARCHAR)", "question": "What is the sum for gold when there is more than 17 silver and more than 24 bronze?" }
### QUESTION What is the label for October 21, 1981? ### CONTEXT CREATE TABLE table_name_37 (label VARCHAR, date VARCHAR) ### ANSWER SELECT label FROM table_name_37 WHERE date = "october 21, 1981"</s>
{ "answer": "SELECT label FROM table_name_37 WHERE date = \"october 21, 1981\"", "context": "CREATE TABLE table_name_37 (label VARCHAR, date VARCHAR)", "question": "What is the label for October 21, 1981?" }
### QUESTION What is the format for July 27, 1994? ### CONTEXT CREATE TABLE table_name_94 (format VARCHAR, date VARCHAR) ### ANSWER SELECT format FROM table_name_94 WHERE date = "july 27, 1994"</s>
{ "answer": "SELECT format FROM table_name_94 WHERE date = \"july 27, 1994\"", "context": "CREATE TABLE table_name_94 (format VARCHAR, date VARCHAR)", "question": "What is the format for July 27, 1994?" }
### QUESTION Which Nationality has a Position of left wing? ### CONTEXT CREATE TABLE table_name_99 (nationality VARCHAR, position VARCHAR) ### ANSWER SELECT nationality FROM table_name_99 WHERE position = "left wing"</s>
{ "answer": "SELECT nationality FROM table_name_99 WHERE position = \"left wing\"", "context": "CREATE TABLE table_name_99 (nationality VARCHAR, position VARCHAR)", "question": "Which Nationality has a Position of left wing?" }
### QUESTION Which champion has sentosa golf club as the tournament location? ### CONTEXT CREATE TABLE table_name_55 (champion VARCHAR, tournament_location VARCHAR) ### ANSWER SELECT champion FROM table_name_55 WHERE tournament_location = "sentosa golf club"</s>
{ "answer": "SELECT champion FROM table_name_55 WHERE tournament_location = \"sentosa golf club\"", "context": "CREATE TABLE table_name_55 (champion VARCHAR, tournament_location VARCHAR)", "question": "Which champion has sentosa golf club as the tournament location?" }
### QUESTION What is the highest pick of the back player from round 28? ### CONTEXT CREATE TABLE table_name_42 (pick INTEGER, position VARCHAR, round VARCHAR) ### ANSWER SELECT MAX(pick) FROM table_name_42 WHERE position = "back" AND round = 28</s>
{ "answer": "SELECT MAX(pick) FROM table_name_42 WHERE position = \"back\" AND round = 28", "context": "CREATE TABLE table_name_42 (pick INTEGER, position VARCHAR, round VARCHAR)", "question": "What is the highest pick of the back player from round 28?" }
### QUESTION what tournament was on a hard surface and saw jacob adaktusson as the opponent? ### CONTEXT CREATE TABLE table_name_78 (tournament VARCHAR, surface VARCHAR, opponent VARCHAR) ### ANSWER SELECT tournament FROM table_name_78 WHERE surface = "hard" AND opponent = "jacob adaktusson"</s>
{ "answer": "SELECT tournament FROM table_name_78 WHERE surface = \"hard\" AND opponent = \"jacob adaktusson\"", "context": "CREATE TABLE table_name_78 (tournament VARCHAR, surface VARCHAR, opponent VARCHAR)", "question": "what tournament was on a hard surface and saw jacob adaktusson as the opponent?" }
### QUESTION Which round has pain and glory 2006 as the event? ### CONTEXT CREATE TABLE table_name_94 (round VARCHAR, event VARCHAR) ### ANSWER SELECT round FROM table_name_94 WHERE event = "pain and glory 2006"</s>
{ "answer": "SELECT round FROM table_name_94 WHERE event = \"pain and glory 2006\"", "context": "CREATE TABLE table_name_94 (round VARCHAR, event VARCHAR)", "question": "Which round has pain and glory 2006 as the event?" }
### QUESTION Which record has 5:00 as the time, jess liaudin as the opponent for the location of england? ### CONTEXT CREATE TABLE table_name_49 (record VARCHAR, location VARCHAR, time VARCHAR, opponent VARCHAR) ### ANSWER SELECT record FROM table_name_49 WHERE time = "5:00" AND opponent = "jess liaudin" AND location = "england"</s>
{ "answer": "SELECT record FROM table_name_49 WHERE time = \"5:00\" AND opponent = \"jess liaudin\" AND location = \"england\"", "context": "CREATE TABLE table_name_49 (record VARCHAR, location VARCHAR, time VARCHAR, opponent VARCHAR)", "question": "Which record has 5:00 as the time, jess liaudin as the opponent for the location of england?" }
### QUESTION What is the Enrollment for the Coyotes Founded in 1891? ### CONTEXT CREATE TABLE table_name_34 (enrollment VARCHAR, founded VARCHAR, team_nickname VARCHAR) ### ANSWER SELECT COUNT(enrollment) FROM table_name_34 WHERE founded = 1891 AND team_nickname = "coyotes"</s>
{ "answer": "SELECT COUNT(enrollment) FROM table_name_34 WHERE founded = 1891 AND team_nickname = \"coyotes\"", "context": "CREATE TABLE table_name_34 (enrollment VARCHAR, founded VARCHAR, team_nickname VARCHAR)", "question": "What is the Enrollment for the Coyotes Founded in 1891?" }
### QUESTION Game Site of hoosier dome, and a Result of l 7–31 involved what attendance? ### CONTEXT CREATE TABLE table_name_29 (attendance VARCHAR, game_site VARCHAR, result VARCHAR) ### ANSWER SELECT attendance FROM table_name_29 WHERE game_site = "hoosier dome" AND result = "l 7–31"</s>
{ "answer": "SELECT attendance FROM table_name_29 WHERE game_site = \"hoosier dome\" AND result = \"l 7–31\"", "context": "CREATE TABLE table_name_29 (attendance VARCHAR, game_site VARCHAR, result VARCHAR)", "question": "Game Site of hoosier dome, and a Result of l 7–31 involved what attendance?" }
### QUESTION How many weeks did the single that entered the charts 14 september 2002 stay on the charts ? ### CONTEXT CREATE TABLE table_name_30 (weeks_on_chart__uk_ VARCHAR, entered_chart__uk_ VARCHAR) ### ANSWER SELECT COUNT(weeks_on_chart__uk_) FROM table_name_30 WHERE entered_chart__uk_ = "14 september 2002"</s>
{ "answer": "SELECT COUNT(weeks_on_chart__uk_) FROM table_name_30 WHERE entered_chart__uk_ = \"14 september 2002\"", "context": "CREATE TABLE table_name_30 (weeks_on_chart__uk_ VARCHAR, entered_chart__uk_ VARCHAR)", "question": "How many weeks did the single that entered the charts 14 september 2002 stay on the charts ?" }
### QUESTION What name has pembroke as the built by hm dockyard, and may 1825 as the laid down? ### CONTEXT CREATE TABLE table_name_79 (name VARCHAR, built_by_hm_dockyard VARCHAR, laid_down VARCHAR) ### ANSWER SELECT name FROM table_name_79 WHERE built_by_hm_dockyard = "pembroke" AND laid_down = "may 1825"</s>
{ "answer": "SELECT name FROM table_name_79 WHERE built_by_hm_dockyard = \"pembroke\" AND laid_down = \"may 1825\"", "context": "CREATE TABLE table_name_79 (name VARCHAR, built_by_hm_dockyard VARCHAR, laid_down VARCHAR)", "question": "What name has pembroke as the built by hm dockyard, and may 1825 as the laid down?" }
### QUESTION What is the Name of the Multiple Type museum in Anchorage? ### CONTEXT CREATE TABLE table_name_54 (name VARCHAR, town_city VARCHAR, type VARCHAR) ### ANSWER SELECT name FROM table_name_54 WHERE town_city = "anchorage" AND type = "multiple"</s>
{ "answer": "SELECT name FROM table_name_54 WHERE town_city = \"anchorage\" AND type = \"multiple\"", "context": "CREATE TABLE table_name_54 (name VARCHAR, town_city VARCHAR, type VARCHAR)", "question": "What is the Name of the Multiple Type museum in Anchorage?" }
### QUESTION Which tournament was held on 9 Jun 2002? ### CONTEXT CREATE TABLE table_name_57 (tournament VARCHAR, date VARCHAR) ### ANSWER SELECT tournament FROM table_name_57 WHERE date = "9 jun 2002"</s>
{ "answer": "SELECT tournament FROM table_name_57 WHERE date = \"9 jun 2002\"", "context": "CREATE TABLE table_name_57 (tournament VARCHAR, date VARCHAR)", "question": "Which tournament was held on 9 Jun 2002?" }
### QUESTION What is the winning score with a margin of victory of 4 strokes for the NEC Invitational tournament? ### CONTEXT CREATE TABLE table_name_93 (winning_score VARCHAR, margin_of_victory VARCHAR, tournament VARCHAR) ### ANSWER SELECT winning_score FROM table_name_93 WHERE margin_of_victory = "4 strokes" AND tournament = "nec invitational"</s>
{ "answer": "SELECT winning_score FROM table_name_93 WHERE margin_of_victory = \"4 strokes\" AND tournament = \"nec invitational\"", "context": "CREATE TABLE table_name_93 (winning_score VARCHAR, margin_of_victory VARCHAR, tournament VARCHAR)", "question": "What is the winning score with a margin of victory of 4 strokes for the NEC Invitational tournament?" }
### QUESTION What is the sum of the game with a PWin% of —, Term [c] of 1987–1988, and Win% less than 0.506? ### CONTEXT CREATE TABLE table_name_30 (games INTEGER, win_percentage VARCHAR, Pwin_percentage VARCHAR, — VARCHAR, term_ VARCHAR, c_ VARCHAR) ### ANSWER SELECT SUM(games) FROM table_name_30 WHERE Pwin_percentage = — AND term_[c_] = "1987–1988" AND win_percentage < 0.506</s>
{ "answer": "SELECT SUM(games) FROM table_name_30 WHERE Pwin_percentage = — AND term_[c_] = \"1987–1988\" AND win_percentage < 0.506", "context": "CREATE TABLE table_name_30 (games INTEGER, win_percentage VARCHAR, Pwin_percentage VARCHAR, — VARCHAR, term_ VARCHAR, c_ VARCHAR)", "question": "What is the sum of the game with a PWin% of —, Term [c] of 1987–1988, and Win% less than 0.506?" }
### QUESTION What is the lowest Year with an Album that is live love in London? ### CONTEXT CREATE TABLE table_name_34 (year INTEGER, album VARCHAR) ### ANSWER SELECT MIN(year) FROM table_name_34 WHERE album = "live love in london"</s>
{ "answer": "SELECT MIN(year) FROM table_name_34 WHERE album = \"live love in london\"", "context": "CREATE TABLE table_name_34 (year INTEGER, album VARCHAR)", "question": "What is the lowest Year with an Album that is live love in London?" }
### QUESTION How many tourists visited the country that had 2.5 million tourists in 2011? ### CONTEXT CREATE TABLE table_name_38 (international_tourist_arrivals__2012_ VARCHAR, international_tourist_arrivals__2011_ VARCHAR) ### ANSWER SELECT international_tourist_arrivals__2012_ FROM table_name_38 WHERE international_tourist_arrivals__2011_ = "2.5 million"</s>
{ "answer": "SELECT international_tourist_arrivals__2012_ FROM table_name_38 WHERE international_tourist_arrivals__2011_ = \"2.5 million\"", "context": "CREATE TABLE table_name_38 (international_tourist_arrivals__2012_ VARCHAR, international_tourist_arrivals__2011_ VARCHAR)", "question": "How many tourists visited the country that had 2.5 million tourists in 2011?" }
### QUESTION Which opponent was played at Forbes Field after week 4? ### CONTEXT CREATE TABLE table_name_76 (opponent VARCHAR, game_site VARCHAR, week VARCHAR) ### ANSWER SELECT opponent FROM table_name_76 WHERE game_site = "forbes field" AND week > 4</s>
{ "answer": "SELECT opponent FROM table_name_76 WHERE game_site = \"forbes field\" AND week > 4", "context": "CREATE TABLE table_name_76 (opponent VARCHAR, game_site VARCHAR, week VARCHAR)", "question": "Which opponent was played at Forbes Field after week 4?" }
### QUESTION How many years have a conventional plan of 7%? ### CONTEXT CREATE TABLE table_name_24 (year INTEGER, conventional_plans VARCHAR) ### ANSWER SELECT SUM(year) FROM table_name_24 WHERE conventional_plans = "7%"</s>
{ "answer": "SELECT SUM(year) FROM table_name_24 WHERE conventional_plans = \"7%\"", "context": "CREATE TABLE table_name_24 (year INTEGER, conventional_plans VARCHAR)", "question": "How many years have a conventional plan of 7%?" }
### QUESTION What was the date of the game played at Fenway Park? ### CONTEXT CREATE TABLE table_name_28 (date VARCHAR, game_site VARCHAR) ### ANSWER SELECT date FROM table_name_28 WHERE game_site = "fenway park"</s>
{ "answer": "SELECT date FROM table_name_28 WHERE game_site = \"fenway park\"", "context": "CREATE TABLE table_name_28 (date VARCHAR, game_site VARCHAR)", "question": "What was the date of the game played at Fenway Park?" }
### QUESTION Which conventional plan has a POS plan of 21%? ### CONTEXT CREATE TABLE table_name_14 (conventional_plans VARCHAR, pos_plans VARCHAR) ### ANSWER SELECT conventional_plans FROM table_name_14 WHERE pos_plans = "21%"</s>
{ "answer": "SELECT conventional_plans FROM table_name_14 WHERE pos_plans = \"21%\"", "context": "CREATE TABLE table_name_14 (conventional_plans VARCHAR, pos_plans VARCHAR)", "question": "Which conventional plan has a POS plan of 21%?" }
### QUESTION Which Opponents have a Score of 1–2, and a Team of arsenal, and Progress of first round? ### CONTEXT CREATE TABLE table_name_82 (opponents VARCHAR, progress VARCHAR, score VARCHAR, team VARCHAR) ### ANSWER SELECT opponents FROM table_name_82 WHERE score = "1–2" AND team = "arsenal" AND progress = "first round"</s>
{ "answer": "SELECT opponents FROM table_name_82 WHERE score = \"1–2\" AND team = \"arsenal\" AND progress = \"first round\"", "context": "CREATE TABLE table_name_82 (opponents VARCHAR, progress VARCHAR, score VARCHAR, team VARCHAR)", "question": "Which Opponents have a Score of 1–2, and a Team of arsenal, and Progress of first round?" }
### QUESTION In what year has a Post of designer? ### CONTEXT CREATE TABLE table_name_91 (year INTEGER, post VARCHAR) ### ANSWER SELECT SUM(year) FROM table_name_91 WHERE post = "designer"</s>
{ "answer": "SELECT SUM(year) FROM table_name_91 WHERE post = \"designer\"", "context": "CREATE TABLE table_name_91 (year INTEGER, post VARCHAR)", "question": "In what year has a Post of designer?" }
### QUESTION Who is listed as the Visitor that has a Home of Boston Bruins and a Date of November 15? ### CONTEXT CREATE TABLE table_name_97 (visitor VARCHAR, home VARCHAR, date VARCHAR) ### ANSWER SELECT visitor FROM table_name_97 WHERE home = "boston bruins" AND date = "november 15"</s>
{ "answer": "SELECT visitor FROM table_name_97 WHERE home = \"boston bruins\" AND date = \"november 15\"", "context": "CREATE TABLE table_name_97 (visitor VARCHAR, home VARCHAR, date VARCHAR)", "question": "Who is listed as the Visitor that has a Home of Boston Bruins and a Date of November 15?" }
### QUESTION Which Chart peak has a Time of 3:11? ### CONTEXT CREATE TABLE table_name_30 (chart_peak VARCHAR, time VARCHAR) ### ANSWER SELECT chart_peak FROM table_name_30 WHERE time = "3:11"</s>
{ "answer": "SELECT chart_peak FROM table_name_30 WHERE time = \"3:11\"", "context": "CREATE TABLE table_name_30 (chart_peak VARCHAR, time VARCHAR)", "question": "Which Chart peak has a Time of 3:11?" }
### QUESTION What is the country's name with a numeric code less than 246 and a Latin 3-letter code of slv? ### CONTEXT CREATE TABLE table_name_63 (country_name VARCHAR, numeric_code VARCHAR, latin_3_letter_code VARCHAR) ### ANSWER SELECT country_name FROM table_name_63 WHERE numeric_code < 246 AND latin_3_letter_code = "slv"</s>
{ "answer": "SELECT country_name FROM table_name_63 WHERE numeric_code < 246 AND latin_3_letter_code = \"slv\"", "context": "CREATE TABLE table_name_63 (country_name VARCHAR, numeric_code VARCHAR, latin_3_letter_code VARCHAR)", "question": "What is the country's name with a numeric code less than 246 and a Latin 3-letter code of slv?" }
### QUESTION Name the least place for draw more than 3 and points of 8 ### CONTEXT CREATE TABLE table_name_47 (place INTEGER, draw VARCHAR, points VARCHAR) ### ANSWER SELECT MIN(place) FROM table_name_47 WHERE draw > 3 AND points = 8</s>
{ "answer": "SELECT MIN(place) FROM table_name_47 WHERE draw > 3 AND points = 8", "context": "CREATE TABLE table_name_47 (place INTEGER, draw VARCHAR, points VARCHAR)", "question": "Name the least place for draw more than 3 and points of 8" }
### QUESTION What is the method of resolution for the fight that had a time of 5:00 and a record of 5-0? ### CONTEXT CREATE TABLE table_name_57 (method VARCHAR, time VARCHAR, record VARCHAR) ### ANSWER SELECT method FROM table_name_57 WHERE time = "5:00" AND record = "5-0"</s>
{ "answer": "SELECT method FROM table_name_57 WHERE time = \"5:00\" AND record = \"5-0\"", "context": "CREATE TABLE table_name_57 (method VARCHAR, time VARCHAR, record VARCHAR)", "question": "What is the method of resolution for the fight that had a time of 5:00 and a record of 5-0?" }
### QUESTION What is the average rank of Roman Koudelka, who has less than 274.4 points? ### CONTEXT CREATE TABLE table_name_41 (rank INTEGER, points VARCHAR, name VARCHAR) ### ANSWER SELECT AVG(rank) FROM table_name_41 WHERE points < 274.4 AND name = "roman koudelka"</s>
{ "answer": "SELECT AVG(rank) FROM table_name_41 WHERE points < 274.4 AND name = \"roman koudelka\"", "context": "CREATE TABLE table_name_41 (rank INTEGER, points VARCHAR, name VARCHAR)", "question": "What is the average rank of Roman Koudelka, who has less than 274.4 points?" }
### QUESTION Which Attendance has Mandalay Bay Resort ### CONTEXT CREATE TABLE table_name_75 (attendance VARCHAR, venue VARCHAR) ### ANSWER SELECT attendance FROM table_name_75 WHERE venue = "mandalay bay resort"</s>
{ "answer": "SELECT attendance FROM table_name_75 WHERE venue = \"mandalay bay resort\"", "context": "CREATE TABLE table_name_75 (attendance VARCHAR, venue VARCHAR)", "question": "Which Attendance has Mandalay Bay Resort" }
### QUESTION What is the socket related to the processor released on June 22, 2005, having a frequency of 1600MHz and voltage under 1.35V? ### CONTEXT CREATE TABLE table_name_7 (socket VARCHAR, voltage VARCHAR, frequency VARCHAR, release_date VARCHAR) ### ANSWER SELECT socket FROM table_name_7 WHERE frequency = "1600mhz" AND release_date = "june 22, 2005" AND voltage < 1.35</s>
{ "answer": "SELECT socket FROM table_name_7 WHERE frequency = \"1600mhz\" AND release_date = \"june 22, 2005\" AND voltage < 1.35", "context": "CREATE TABLE table_name_7 (socket VARCHAR, voltage VARCHAR, frequency VARCHAR, release_date VARCHAR)", "question": "What is the socket related to the processor released on June 22, 2005, having a frequency of 1600MHz and voltage under 1.35V?" }
### QUESTION Who was the artist for the album, Christmas under the reunion label with the guitar? ### CONTEXT CREATE TABLE table_name_67 (artist VARCHAR, album VARCHAR, label VARCHAR, credit VARCHAR) ### ANSWER SELECT artist FROM table_name_67 WHERE label = "reunion" AND credit = "guitar" AND album = "christmas"</s>
{ "answer": "SELECT artist FROM table_name_67 WHERE label = \"reunion\" AND credit = \"guitar\" AND album = \"christmas\"", "context": "CREATE TABLE table_name_67 (artist VARCHAR, album VARCHAR, label VARCHAR, credit VARCHAR)", "question": "Who was the artist for the album, Christmas under the reunion label with the guitar?" }
### QUESTION What was the record on March 22? ### CONTEXT CREATE TABLE table_name_58 (record VARCHAR, date VARCHAR) ### ANSWER SELECT record FROM table_name_58 WHERE date = "march 22"</s>
{ "answer": "SELECT record FROM table_name_58 WHERE date = \"march 22\"", "context": "CREATE TABLE table_name_58 (record VARCHAR, date VARCHAR)", "question": "What was the record on March 22?" }
### QUESTION What is the total number of bronze medals of the nation with 4 total medals and 1 silver? ### CONTEXT CREATE TABLE table_name_89 (bronze VARCHAR, total VARCHAR, silver VARCHAR) ### ANSWER SELECT COUNT(bronze) FROM table_name_89 WHERE total = 4 AND silver = 1</s>
{ "answer": "SELECT COUNT(bronze) FROM table_name_89 WHERE total = 4 AND silver = 1", "context": "CREATE TABLE table_name_89 (bronze VARCHAR, total VARCHAR, silver VARCHAR)", "question": "What is the total number of bronze medals of the nation with 4 total medals and 1 silver?" }
### QUESTION What season had Kanto Gakuin University as the winner, with an attendance of n/a, and a title of 37th? ### CONTEXT CREATE TABLE table_name_62 (season VARCHAR, title VARCHAR, winner VARCHAR, attendance VARCHAR) ### ANSWER SELECT season FROM table_name_62 WHERE winner = "kanto gakuin university" AND attendance = "n/a" AND title = "37th"</s>
{ "answer": "SELECT season FROM table_name_62 WHERE winner = \"kanto gakuin university\" AND attendance = \"n/a\" AND title = \"37th\"", "context": "CREATE TABLE table_name_62 (season VARCHAR, title VARCHAR, winner VARCHAR, attendance VARCHAR)", "question": "What season had Kanto Gakuin University as the winner, with an attendance of n/a, and a title of 37th?" }
### QUESTION What is High Assists, when High Points is Keon Clark (19)? ### CONTEXT CREATE TABLE table_name_57 (high_assists VARCHAR, high_points VARCHAR) ### ANSWER SELECT high_assists FROM table_name_57 WHERE high_points = "keon clark (19)"</s>
{ "answer": "SELECT high_assists FROM table_name_57 WHERE high_points = \"keon clark (19)\"", "context": "CREATE TABLE table_name_57 (high_assists VARCHAR, high_points VARCHAR)", "question": "What is High Assists, when High Points is Keon Clark (19)?" }
### QUESTION What is Location Attendance, when High Assists is Alvin Williams (9)? ### CONTEXT CREATE TABLE table_name_29 (location_attendance VARCHAR, high_assists VARCHAR) ### ANSWER SELECT location_attendance FROM table_name_29 WHERE high_assists = "alvin williams (9)"</s>
{ "answer": "SELECT location_attendance FROM table_name_29 WHERE high_assists = \"alvin williams (9)\"", "context": "CREATE TABLE table_name_29 (location_attendance VARCHAR, high_assists VARCHAR)", "question": "What is Location Attendance, when High Assists is Alvin Williams (9)?" }
### QUESTION What season has a runner-up of waseda, and a title of 47th? ### CONTEXT CREATE TABLE table_name_25 (season VARCHAR, runner_up VARCHAR, title VARCHAR) ### ANSWER SELECT season FROM table_name_25 WHERE runner_up = "waseda" AND title = "47th"</s>
{ "answer": "SELECT season FROM table_name_25 WHERE runner_up = \"waseda\" AND title = \"47th\"", "context": "CREATE TABLE table_name_25 (season VARCHAR, runner_up VARCHAR, title VARCHAR)", "question": "What season has a runner-up of waseda, and a title of 47th?" }
### QUESTION What name has 100 w. pender st. as the address? ### CONTEXT CREATE TABLE table_name_6 (name VARCHAR, street_address VARCHAR) ### ANSWER SELECT name FROM table_name_6 WHERE street_address = "100 w. pender st."</s>
{ "answer": "SELECT name FROM table_name_6 WHERE street_address = \"100 w. pender st.\"", "context": "CREATE TABLE table_name_6 (name VARCHAR, street_address VARCHAR)", "question": "What name has 100 w. pender st. as the address?" }
### QUESTION Which City has 600kw 500kw ERP ? ### CONTEXT CREATE TABLE table_name_86 (city VARCHAR, erp__analog__digital_ VARCHAR) ### ANSWER SELECT city FROM table_name_86 WHERE erp__analog__digital_ = "600kw 500kw"</s>
{ "answer": "SELECT city FROM table_name_86 WHERE erp__analog__digital_ = \"600kw 500kw\"", "context": "CREATE TABLE table_name_86 (city VARCHAR, erp__analog__digital_ VARCHAR)", "question": "Which City has 600kw 500kw ERP ?" }
### QUESTION On which date did the Indians have a record of 67-58 ### CONTEXT CREATE TABLE table_name_92 (date VARCHAR, record VARCHAR) ### ANSWER SELECT date FROM table_name_92 WHERE record = "67-58"</s>
{ "answer": "SELECT date FROM table_name_92 WHERE record = \"67-58\"", "context": "CREATE TABLE table_name_92 (date VARCHAR, record VARCHAR)", "question": "On which date did the Indians have a record of 67-58" }
### QUESTION What is Package/Option, when HDTV is no, when Language is Italian, and when Television service is cartello promozionale sky hd? ### CONTEXT CREATE TABLE table_name_43 (package_option VARCHAR, television_service VARCHAR, hdtv VARCHAR, language VARCHAR) ### ANSWER SELECT package_option FROM table_name_43 WHERE hdtv = "no" AND language = "italian" AND television_service = "cartello promozionale sky hd"</s>
{ "answer": "SELECT package_option FROM table_name_43 WHERE hdtv = \"no\" AND language = \"italian\" AND television_service = \"cartello promozionale sky hd\"", "context": "CREATE TABLE table_name_43 (package_option VARCHAR, television_service VARCHAR, hdtv VARCHAR, language VARCHAR)", "question": "What is Package/Option, when HDTV is no, when Language is Italian, and when Television service is cartello promozionale sky hd?" }
### QUESTION Which Award has a Year smaller than 2004, and a Work of the clone, and a Result of won, and a Category of favourite actress? ### CONTEXT CREATE TABLE table_name_45 (award VARCHAR, category VARCHAR, result VARCHAR, year VARCHAR, work VARCHAR) ### ANSWER SELECT award FROM table_name_45 WHERE year < 2004 AND work = "the clone" AND result = "won" AND category = "favourite actress"</s>
{ "answer": "SELECT award FROM table_name_45 WHERE year < 2004 AND work = \"the clone\" AND result = \"won\" AND category = \"favourite actress\"", "context": "CREATE TABLE table_name_45 (award VARCHAR, category VARCHAR, result VARCHAR, year VARCHAR, work VARCHAR)", "question": "Which Award has a Year smaller than 2004, and a Work of the clone, and a Result of won, and a Category of favourite actress?" }
### QUESTION With the Destination of Jupiter and the Closest approach of 4 February 2004, what is the Time elapsed? ### CONTEXT CREATE TABLE table_name_11 (time_elapsed VARCHAR, destination VARCHAR, closest_approach VARCHAR) ### ANSWER SELECT time_elapsed FROM table_name_11 WHERE destination = "jupiter" AND closest_approach = "4 february 2004"</s>
{ "answer": "SELECT time_elapsed FROM table_name_11 WHERE destination = \"jupiter\" AND closest_approach = \"4 february 2004\"", "context": "CREATE TABLE table_name_11 (time_elapsed VARCHAR, destination VARCHAR, closest_approach VARCHAR)", "question": "With the Destination of Jupiter and the Closest approach of 4 February 2004, what is the Time elapsed?" }
### QUESTION What Launched has both a Spacecraft of Ulysses and 491 days (1 yr, 4 mo, 3 d) as Time elapsed? ### CONTEXT CREATE TABLE table_name_56 (launched VARCHAR, spacecraft VARCHAR, time_elapsed VARCHAR) ### ANSWER SELECT launched FROM table_name_56 WHERE spacecraft = "ulysses" AND time_elapsed = "491 days (1 yr, 4 mo, 3 d)"</s>
{ "answer": "SELECT launched FROM table_name_56 WHERE spacecraft = \"ulysses\" AND time_elapsed = \"491 days (1 yr, 4 mo, 3 d)\"", "context": "CREATE TABLE table_name_56 (launched VARCHAR, spacecraft VARCHAR, time_elapsed VARCHAR)", "question": "What Launched has both a Spacecraft of Ulysses and 491 days (1 yr, 4 mo, 3 d) as Time elapsed?" }
### QUESTION What percentage is Karen Handel at in the poll in which Eric Johnson is 13% and undecided is 22%? ### CONTEXT CREATE TABLE table_name_45 (karen_handel VARCHAR, eric_johnson VARCHAR, undecided VARCHAR) ### ANSWER SELECT karen_handel FROM table_name_45 WHERE eric_johnson = "13%" AND undecided = "22%"</s>
{ "answer": "SELECT karen_handel FROM table_name_45 WHERE eric_johnson = \"13%\" AND undecided = \"22%\"", "context": "CREATE TABLE table_name_45 (karen_handel VARCHAR, eric_johnson VARCHAR, undecided VARCHAR)", "question": "What percentage is Karen Handel at in the poll in which Eric Johnson is 13% and undecided is 22%?" }
### QUESTION What Opponents in the final had a match in 1984 with a Score in the final of 7–6, 6–1? ### CONTEXT CREATE TABLE table_name_77 (opponents_in_the_final VARCHAR, date VARCHAR, score_in_the_final VARCHAR) ### ANSWER SELECT opponents_in_the_final FROM table_name_77 WHERE date = 1984 AND score_in_the_final = "7–6, 6–1"</s>
{ "answer": "SELECT opponents_in_the_final FROM table_name_77 WHERE date = 1984 AND score_in_the_final = \"7–6, 6–1\"", "context": "CREATE TABLE table_name_77 (opponents_in_the_final VARCHAR, date VARCHAR, score_in_the_final VARCHAR)", "question": "What Opponents in the final had a match in 1984 with a Score in the final of 7–6, 6–1?" }