text
stringlengths
150
1.06k
source
dict
### QUESTION Which City of license has a Call sign of w220ba? ### CONTEXT CREATE TABLE table_name_64 (city_of_license VARCHAR, call_sign VARCHAR) ### ANSWER SELECT city_of_license FROM table_name_64 WHERE call_sign = "w220ba"</s>
{ "answer": "SELECT city_of_license FROM table_name_64 WHERE call_sign = \"w220ba\"", "context": "CREATE TABLE table_name_64 (city_of_license VARCHAR, call_sign VARCHAR)", "question": "Which City of license has a Call sign of w220ba?" }
### QUESTION Which ERP W has a Frequency MHz of 89.3 fm? ### CONTEXT CREATE TABLE table_name_98 (erp_w INTEGER, frequency_mhz VARCHAR) ### ANSWER SELECT MAX(erp_w) FROM table_name_98 WHERE frequency_mhz = "89.3 fm"</s>
{ "answer": "SELECT MAX(erp_w) FROM table_name_98 WHERE frequency_mhz = \"89.3 fm\"", "context": "CREATE TABLE table_name_98 (erp_w INTEGER, frequency_mhz VARCHAR)", "question": "Which ERP W has a Frequency MHz of 89.3 fm?" }
### QUESTION Which Perth has Auckland yes and Gold Coast yes? ### CONTEXT CREATE TABLE table_name_50 (perth VARCHAR, auckland VARCHAR, gold_coast VARCHAR) ### ANSWER SELECT perth FROM table_name_50 WHERE auckland = "yes" AND gold_coast = "yes"</s>
{ "answer": "SELECT perth FROM table_name_50 WHERE auckland = \"yes\" AND gold_coast = \"yes\"", "context": "CREATE TABLE table_name_50 (perth VARCHAR, auckland VARCHAR, gold_coast VARCHAR)", "question": "Which Perth has Auckland yes and Gold Coast yes?" }
### QUESTION Name the year with the best female pop vocal album and result of won ### CONTEXT CREATE TABLE table_name_43 (year VARCHAR, category VARCHAR, result VARCHAR) ### ANSWER SELECT year FROM table_name_43 WHERE category = "best female pop vocal album" AND result = "won"</s>
{ "answer": "SELECT year FROM table_name_43 WHERE category = \"best female pop vocal album\" AND result = \"won\"", "context": "CREATE TABLE table_name_43 (year VARCHAR, category VARCHAR, result VARCHAR)", "question": "Name the year with the best female pop vocal album and result of won" }
### QUESTION How much money does the player with a 68-67-69-71=275 score have? ### CONTEXT CREATE TABLE table_name_62 (money___£__ VARCHAR, score VARCHAR) ### ANSWER SELECT money___£__ FROM table_name_62 WHERE score = 68 - 67 - 69 - 71 = 275</s>
{ "answer": "SELECT money___£__ FROM table_name_62 WHERE score = 68 - 67 - 69 - 71 = 275", "context": "CREATE TABLE table_name_62 (money___£__ VARCHAR, score VARCHAR)", "question": "How much money does the player with a 68-67-69-71=275 score have?" }
### QUESTION Which is the highest total at rank 6, bronze 2, and gold larger than 0? ### CONTEXT CREATE TABLE table_name_74 (total INTEGER, gold VARCHAR, rank VARCHAR, bronze VARCHAR) ### ANSWER SELECT MAX(total) FROM table_name_74 WHERE rank = 6 AND bronze = 2 AND gold > 0</s>
{ "answer": "SELECT MAX(total) FROM table_name_74 WHERE rank = 6 AND bronze = 2 AND gold > 0", "context": "CREATE TABLE table_name_74 (total INTEGER, gold VARCHAR, rank VARCHAR, bronze VARCHAR)", "question": "Which is the highest total at rank 6, bronze 2, and gold larger than 0?" }
### QUESTION What was the score at Spartan Stadium when San Jose was the Home team? ### CONTEXT CREATE TABLE table_name_18 (score VARCHAR, home_team VARCHAR, venue VARCHAR) ### ANSWER SELECT score FROM table_name_18 WHERE home_team = "san jose" AND venue = "spartan stadium"</s>
{ "answer": "SELECT score FROM table_name_18 WHERE home_team = \"san jose\" AND venue = \"spartan stadium\"", "context": "CREATE TABLE table_name_18 (score VARCHAR, home_team VARCHAR, venue VARCHAR)", "question": "What was the score at Spartan Stadium when San Jose was the Home team?" }
### QUESTION What years did Elden Campbell category:articles with hcards and jersesy number of 41 play? ### CONTEXT CREATE TABLE table_name_31 (years VARCHAR, jersey_number_s_ VARCHAR, player VARCHAR) ### ANSWER SELECT years FROM table_name_31 WHERE jersey_number_s_ = 41 AND player = "elden campbell category:articles with hcards"</s>
{ "answer": "SELECT years FROM table_name_31 WHERE jersey_number_s_ = 41 AND player = \"elden campbell category:articles with hcards\"", "context": "CREATE TABLE table_name_31 (years VARCHAR, jersey_number_s_ VARCHAR, player VARCHAR)", "question": "What years did Elden Campbell category:articles with hcards and jersesy number of 41 play?" }
### QUESTION In which city is the network with the callsign kgns-dt3 licensed? ### CONTEXT CREATE TABLE table_name_71 (city_of_license VARCHAR, callsign VARCHAR) ### ANSWER SELECT city_of_license FROM table_name_71 WHERE callsign = "kgns-dt3"</s>
{ "answer": "SELECT city_of_license FROM table_name_71 WHERE callsign = \"kgns-dt3\"", "context": "CREATE TABLE table_name_71 (city_of_license VARCHAR, callsign VARCHAR)", "question": "In which city is the network with the callsign kgns-dt3 licensed?" }
### QUESTION How many in the introduced segment retired later than 1994 and had Fokker as a manufacturer? ### CONTEXT CREATE TABLE table_name_80 (introduced VARCHAR, retired VARCHAR, manufacturer VARCHAR) ### ANSWER SELECT COUNT(introduced) FROM table_name_80 WHERE retired > 1994 AND manufacturer = "fokker"</s>
{ "answer": "SELECT COUNT(introduced) FROM table_name_80 WHERE retired > 1994 AND manufacturer = \"fokker\"", "context": "CREATE TABLE table_name_80 (introduced VARCHAR, retired VARCHAR, manufacturer VARCHAR)", "question": "How many in the introduced segment retired later than 1994 and had Fokker as a manufacturer?" }
### QUESTION What competition did he compete in before 2007 in gothenburg, sweden? ### CONTEXT CREATE TABLE table_name_6 (competition VARCHAR, year VARCHAR, venue VARCHAR) ### ANSWER SELECT competition FROM table_name_6 WHERE year < 2007 AND venue = "gothenburg, sweden"</s>
{ "answer": "SELECT competition FROM table_name_6 WHERE year < 2007 AND venue = \"gothenburg, sweden\"", "context": "CREATE TABLE table_name_6 (competition VARCHAR, year VARCHAR, venue VARCHAR)", "question": "What competition did he compete in before 2007 in gothenburg, sweden?" }
### QUESTION What was the sum of the draws for the team that had 11 wins, less than 38 points, and a position smaller than 4? ### CONTEXT CREATE TABLE table_name_19 (draws INTEGER, points VARCHAR, position VARCHAR, wins VARCHAR) ### ANSWER SELECT SUM(draws) FROM table_name_19 WHERE position < 4 AND wins = 11 AND points < 38</s>
{ "answer": "SELECT SUM(draws) FROM table_name_19 WHERE position < 4 AND wins = 11 AND points < 38", "context": "CREATE TABLE table_name_19 (draws INTEGER, points VARCHAR, position VARCHAR, wins VARCHAR)", "question": "What was the sum of the draws for the team that had 11 wins, less than 38 points, and a position smaller than 4?" }
### QUESTION What is the lowest number conceded for the team that had less than 8 wins, scored 21, and had less than 23 points? ### CONTEXT CREATE TABLE table_name_77 (conceded INTEGER, points VARCHAR, wins VARCHAR, scored VARCHAR) ### ANSWER SELECT MIN(conceded) FROM table_name_77 WHERE wins < 8 AND scored = 21 AND points < 23</s>
{ "answer": "SELECT MIN(conceded) FROM table_name_77 WHERE wins < 8 AND scored = 21 AND points < 23", "context": "CREATE TABLE table_name_77 (conceded INTEGER, points VARCHAR, wins VARCHAR, scored VARCHAR)", "question": "What is the lowest number conceded for the team that had less than 8 wins, scored 21, and had less than 23 points?" }
### QUESTION What is the pos with more than 1 tier during Pokal Slovenije 1. round? ### CONTEXT CREATE TABLE table_name_20 (pos VARCHAR, tier VARCHAR, cup_competitions VARCHAR) ### ANSWER SELECT pos FROM table_name_20 WHERE tier > 1 AND cup_competitions = "pokal slovenije 1. round"</s>
{ "answer": "SELECT pos FROM table_name_20 WHERE tier > 1 AND cup_competitions = \"pokal slovenije 1. round\"", "context": "CREATE TABLE table_name_20 (pos VARCHAR, tier VARCHAR, cup_competitions VARCHAR)", "question": "What is the pos with more than 1 tier during Pokal Slovenije 1. round?" }
### QUESTION Who was the manager for the team with captain Neil Redfearn? ### CONTEXT CREATE TABLE table_name_24 (manager_1 VARCHAR, captain VARCHAR) ### ANSWER SELECT manager_1 FROM table_name_24 WHERE captain = "neil redfearn"</s>
{ "answer": "SELECT manager_1 FROM table_name_24 WHERE captain = \"neil redfearn\"", "context": "CREATE TABLE table_name_24 (manager_1 VARCHAR, captain VARCHAR)", "question": "Who was the manager for the team with captain Neil Redfearn?" }
### QUESTION Who was the team captain for Crystal Palace? ### CONTEXT CREATE TABLE table_name_56 (captain VARCHAR, team VARCHAR) ### ANSWER SELECT captain FROM table_name_56 WHERE team = "crystal palace"</s>
{ "answer": "SELECT captain FROM table_name_56 WHERE team = \"crystal palace\"", "context": "CREATE TABLE table_name_56 (captain VARCHAR, team VARCHAR)", "question": "Who was the team captain for Crystal Palace?" }
### QUESTION What is the highest round that has a draftee from Washington State University? ### CONTEXT CREATE TABLE table_name_60 (round INTEGER, school VARCHAR) ### ANSWER SELECT MAX(round) FROM table_name_60 WHERE school = "washington state university"</s>
{ "answer": "SELECT MAX(round) FROM table_name_60 WHERE school = \"washington state university\"", "context": "CREATE TABLE table_name_60 (round INTEGER, school VARCHAR)", "question": "What is the highest round that has a draftee from Washington State University?" }
### QUESTION What is the total number of Points that Peter Whitehead earned in a Ferrari 125? ### CONTEXT CREATE TABLE table_name_42 (points INTEGER, entrant VARCHAR, chassis VARCHAR) ### ANSWER SELECT SUM(points) FROM table_name_42 WHERE entrant = "peter whitehead" AND chassis = "ferrari 125"</s>
{ "answer": "SELECT SUM(points) FROM table_name_42 WHERE entrant = \"peter whitehead\" AND chassis = \"ferrari 125\"", "context": "CREATE TABLE table_name_42 (points INTEGER, entrant VARCHAR, chassis VARCHAR)", "question": "What is the total number of Points that Peter Whitehead earned in a Ferrari 125?" }
### QUESTION What is the Record of the game on November 15 against Visitor Chicago Black Hawks with a Score of 1–3? ### CONTEXT CREATE TABLE table_name_32 (record VARCHAR, date VARCHAR, score VARCHAR, visitor VARCHAR) ### ANSWER SELECT record FROM table_name_32 WHERE score = "1–3" AND visitor = "chicago black hawks" AND date = "november 15"</s>
{ "answer": "SELECT record FROM table_name_32 WHERE score = \"1–3\" AND visitor = \"chicago black hawks\" AND date = \"november 15\"", "context": "CREATE TABLE table_name_32 (record VARCHAR, date VARCHAR, score VARCHAR, visitor VARCHAR)", "question": "What is the Record of the game on November 15 against Visitor Chicago Black Hawks with a Score of 1–3?" }
### QUESTION When seats for 2001 is greater than 15 and % 2001 is greater than 100, what is the % 2006? ### CONTEXT CREATE TABLE table_name_70 (_percentage_2006 INTEGER, seats_2001 VARCHAR, _percentage_2001 VARCHAR) ### ANSWER SELECT AVG(_percentage_2006) FROM table_name_70 WHERE seats_2001 > 15 AND _percentage_2001 > 100</s>
{ "answer": "SELECT AVG(_percentage_2006) FROM table_name_70 WHERE seats_2001 > 15 AND _percentage_2001 > 100", "context": "CREATE TABLE table_name_70 (_percentage_2006 INTEGER, seats_2001 VARCHAR, _percentage_2001 VARCHAR)", "question": "When seats for 2001 is greater than 15 and % 2001 is greater than 100, what is the % 2006?" }
### QUESTION What were the circumstances of the Hostile incident on the road to Jalalabad? ### CONTEXT CREATE TABLE table_name_18 (circumstances VARCHAR, nature_of_incident VARCHAR, location VARCHAR) ### ANSWER SELECT circumstances FROM table_name_18 WHERE nature_of_incident = "hostile" AND location = "road to jalalabad"</s>
{ "answer": "SELECT circumstances FROM table_name_18 WHERE nature_of_incident = \"hostile\" AND location = \"road to jalalabad\"", "context": "CREATE TABLE table_name_18 (circumstances VARCHAR, nature_of_incident VARCHAR, location VARCHAR)", "question": "What were the circumstances of the Hostile incident on the road to Jalalabad?" }
### QUESTION What is Record, when Location Attendance, is Madison Square Garden 19,009? ### CONTEXT CREATE TABLE table_name_32 (record VARCHAR, location_attendance VARCHAR) ### ANSWER SELECT record FROM table_name_32 WHERE location_attendance = "madison square garden 19,009"</s>
{ "answer": "SELECT record FROM table_name_32 WHERE location_attendance = \"madison square garden 19,009\"", "context": "CREATE TABLE table_name_32 (record VARCHAR, location_attendance VARCHAR)", "question": "What is Record, when Location Attendance, is Madison Square Garden 19,009?" }
### QUESTION What is the Chinese name of the Eliminated player from Singapore in Index f9? ### CONTEXT CREATE TABLE table_name_51 (Chinese VARCHAR, index VARCHAR, status VARCHAR, country VARCHAR) ### ANSWER SELECT Chinese AS name FROM table_name_51 WHERE status = "eliminated" AND country = "singapore" AND index = "f9"</s>
{ "answer": "SELECT Chinese AS name FROM table_name_51 WHERE status = \"eliminated\" AND country = \"singapore\" AND index = \"f9\"", "context": "CREATE TABLE table_name_51 (Chinese VARCHAR, index VARCHAR, status VARCHAR, country VARCHAR)", "question": "What is the Chinese name of the Eliminated player from Singapore in Index f9?" }
### QUESTION What is the name of the player from Malaysia, Kuala Lumpur in Index f8? ### CONTEXT CREATE TABLE table_name_67 (name VARCHAR, country VARCHAR, index VARCHAR) ### ANSWER SELECT name FROM table_name_67 WHERE country = "malaysia, kuala lumpur" AND index = "f8"</s>
{ "answer": "SELECT name FROM table_name_67 WHERE country = \"malaysia, kuala lumpur\" AND index = \"f8\"", "context": "CREATE TABLE table_name_67 (name VARCHAR, country VARCHAR, index VARCHAR)", "question": "What is the name of the player from Malaysia, Kuala Lumpur in Index f8?" }
### QUESTION What was the placing of the race in which Chic won by 8gf? ### CONTEXT CREATE TABLE table_name_58 (placing VARCHAR, beat_by VARCHAR, distance VARCHAR) ### ANSWER SELECT placing FROM table_name_58 WHERE beat_by = "won" AND distance = "8gf"</s>
{ "answer": "SELECT placing FROM table_name_58 WHERE beat_by = \"won\" AND distance = \"8gf\"", "context": "CREATE TABLE table_name_58 (placing VARCHAR, beat_by VARCHAR, distance VARCHAR)", "question": "What was the placing of the race in which Chic won by 8gf?" }
### QUESTION What year did Ivanovic win with Ivanovic greater than 4 and round of R16? ### CONTEXT CREATE TABLE table_name_95 (year INTEGER, round VARCHAR, winner VARCHAR) ### ANSWER SELECT SUM(year) FROM table_name_95 WHERE winner = "ivanovic" AND "ivanovic" > 4 AND round = "r16"</s>
{ "answer": "SELECT SUM(year) FROM table_name_95 WHERE winner = \"ivanovic\" AND \"ivanovic\" > 4 AND round = \"r16\"", "context": "CREATE TABLE table_name_95 (year INTEGER, round VARCHAR, winner VARCHAR)", "question": "What year did Ivanovic win with Ivanovic greater than 4 and round of R16?" }
### QUESTION What the highest Year with a Remixed by Laurent Boutonnat? ### CONTEXT CREATE TABLE table_name_38 (year INTEGER, remixed_by VARCHAR) ### ANSWER SELECT MAX(year) FROM table_name_38 WHERE remixed_by = "laurent boutonnat"</s>
{ "answer": "SELECT MAX(year) FROM table_name_38 WHERE remixed_by = \"laurent boutonnat\"", "context": "CREATE TABLE table_name_38 (year INTEGER, remixed_by VARCHAR)", "question": "What the highest Year with a Remixed by Laurent Boutonnat?" }
### QUESTION Which Inhabitants has a Party of south tyrolean people's party, a Municipality of bruneck, and an Election larger than 2010? ### CONTEXT CREATE TABLE table_name_36 (inhabitants INTEGER, election VARCHAR, party VARCHAR, municipality VARCHAR) ### ANSWER SELECT AVG(inhabitants) FROM table_name_36 WHERE party = "south tyrolean people's party" AND municipality = "bruneck" AND election > 2010</s>
{ "answer": "SELECT AVG(inhabitants) FROM table_name_36 WHERE party = \"south tyrolean people's party\" AND municipality = \"bruneck\" AND election > 2010", "context": "CREATE TABLE table_name_36 (inhabitants INTEGER, election VARCHAR, party VARCHAR, municipality VARCHAR)", "question": "Which Inhabitants has a Party of south tyrolean people's party, a Municipality of bruneck, and an Election larger than 2010?" }
### QUESTION Name the award won for category of choice tv villain in years after 2008 ### CONTEXT CREATE TABLE table_name_94 (award VARCHAR, year VARCHAR, result VARCHAR, category VARCHAR) ### ANSWER SELECT award FROM table_name_94 WHERE result = "won" AND category = "choice tv villain" AND year > 2008</s>
{ "answer": "SELECT award FROM table_name_94 WHERE result = \"won\" AND category = \"choice tv villain\" AND year > 2008", "context": "CREATE TABLE table_name_94 (award VARCHAR, year VARCHAR, result VARCHAR, category VARCHAR)", "question": "Name the award won for category of choice tv villain in years after 2008" }
### QUESTION What is the number week with a result of w 40–62? ### CONTEXT CREATE TABLE table_name_35 (week INTEGER, result VARCHAR) ### ANSWER SELECT SUM(week) FROM table_name_35 WHERE result = "w 40–62"</s>
{ "answer": "SELECT SUM(week) FROM table_name_35 WHERE result = \"w 40–62\"", "context": "CREATE TABLE table_name_35 (week INTEGER, result VARCHAR)", "question": "What is the number week with a result of w 40–62?" }
### QUESTION Which Adelaide has Sydney yes, Melbourne yes, and Perth no? ### CONTEXT CREATE TABLE table_name_31 (adelaide VARCHAR, perth VARCHAR, sydney VARCHAR, melbourne VARCHAR) ### ANSWER SELECT adelaide FROM table_name_31 WHERE sydney = "yes" AND melbourne = "yes" AND perth = "no"</s>
{ "answer": "SELECT adelaide FROM table_name_31 WHERE sydney = \"yes\" AND melbourne = \"yes\" AND perth = \"no\"", "context": "CREATE TABLE table_name_31 (adelaide VARCHAR, perth VARCHAR, sydney VARCHAR, melbourne VARCHAR)", "question": "Which Adelaide has Sydney yes, Melbourne yes, and Perth no?" }
### QUESTION Which Perth has Gold Coast yes, Sydney yes, Melbourne yes, and Adelaide yes? ### CONTEXT CREATE TABLE table_name_56 (perth VARCHAR, adelaide VARCHAR, melbourne VARCHAR, gold_coast VARCHAR, sydney VARCHAR) ### ANSWER SELECT perth FROM table_name_56 WHERE gold_coast = "yes" AND sydney = "yes" AND melbourne = "yes" AND adelaide = "yes"</s>
{ "answer": "SELECT perth FROM table_name_56 WHERE gold_coast = \"yes\" AND sydney = \"yes\" AND melbourne = \"yes\" AND adelaide = \"yes\"", "context": "CREATE TABLE table_name_56 (perth VARCHAR, adelaide VARCHAR, melbourne VARCHAR, gold_coast VARCHAR, sydney VARCHAR)", "question": "Which Perth has Gold Coast yes, Sydney yes, Melbourne yes, and Adelaide yes?" }
### QUESTION Which Melbourne has Gold Coast yes, Perth cancelled, and Adelaide cancelled? ### CONTEXT CREATE TABLE table_name_11 (melbourne VARCHAR, adelaide VARCHAR, gold_coast VARCHAR, perth VARCHAR) ### ANSWER SELECT melbourne FROM table_name_11 WHERE gold_coast = "yes" AND perth = "cancelled" AND adelaide = "cancelled"</s>
{ "answer": "SELECT melbourne FROM table_name_11 WHERE gold_coast = \"yes\" AND perth = \"cancelled\" AND adelaide = \"cancelled\"", "context": "CREATE TABLE table_name_11 (melbourne VARCHAR, adelaide VARCHAR, gold_coast VARCHAR, perth VARCHAR)", "question": "Which Melbourne has Gold Coast yes, Perth cancelled, and Adelaide cancelled?" }
### QUESTION What is the gross in the United Kingdom? ### CONTEXT CREATE TABLE table_name_33 (gross VARCHAR, territory VARCHAR) ### ANSWER SELECT gross FROM table_name_33 WHERE territory = "united kingdom"</s>
{ "answer": "SELECT gross FROM table_name_33 WHERE territory = \"united kingdom\"", "context": "CREATE TABLE table_name_33 (gross VARCHAR, territory VARCHAR)", "question": "What is the gross in the United Kingdom?" }
### QUESTION Name the condition for partial thromboplastin time of prolonged and platelet count of unaffected with bleeding time of prolonged ### CONTEXT CREATE TABLE table_name_41 (condition VARCHAR, bleeding_time VARCHAR, partial_thromboplastin_time VARCHAR, platelet_count VARCHAR) ### ANSWER SELECT condition FROM table_name_41 WHERE partial_thromboplastin_time = "prolonged" AND platelet_count = "unaffected" AND bleeding_time = "prolonged"</s>
{ "answer": "SELECT condition FROM table_name_41 WHERE partial_thromboplastin_time = \"prolonged\" AND platelet_count = \"unaffected\" AND bleeding_time = \"prolonged\"", "context": "CREATE TABLE table_name_41 (condition VARCHAR, bleeding_time VARCHAR, partial_thromboplastin_time VARCHAR, platelet_count VARCHAR)", "question": "Name the condition for partial thromboplastin time of prolonged and platelet count of unaffected with bleeding time of prolonged" }
### QUESTION Which Popular vote has a Liberal leader of king, and Seats won larger than 116, and a Year of 1921? ### CONTEXT CREATE TABLE table_name_32 (popular_vote INTEGER, year VARCHAR, liberal_leader VARCHAR, seats_won VARCHAR) ### ANSWER SELECT AVG(popular_vote) FROM table_name_32 WHERE liberal_leader = "king" AND seats_won > 116 AND year = "1921"</s>
{ "answer": "SELECT AVG(popular_vote) FROM table_name_32 WHERE liberal_leader = \"king\" AND seats_won > 116 AND year = \"1921\"", "context": "CREATE TABLE table_name_32 (popular_vote INTEGER, year VARCHAR, liberal_leader VARCHAR, seats_won VARCHAR)", "question": "Which Popular vote has a Liberal leader of king, and Seats won larger than 116, and a Year of 1921?" }
### QUESTION How many Liberal candidates have a Liberal leader of pearson, and a % of popular vote of 40.2%, and Seats won smaller than 131? ### CONTEXT CREATE TABLE table_name_94 (liberal_candidates VARCHAR, seats_won VARCHAR, liberal_leader VARCHAR, _percentage_of_popular_vote VARCHAR) ### ANSWER SELECT COUNT(liberal_candidates) FROM table_name_94 WHERE liberal_leader = "pearson" AND _percentage_of_popular_vote = "40.2%" AND seats_won < 131</s>
{ "answer": "SELECT COUNT(liberal_candidates) FROM table_name_94 WHERE liberal_leader = \"pearson\" AND _percentage_of_popular_vote = \"40.2%\" AND seats_won < 131", "context": "CREATE TABLE table_name_94 (liberal_candidates VARCHAR, seats_won VARCHAR, liberal_leader VARCHAR, _percentage_of_popular_vote VARCHAR)", "question": "How many Liberal candidates have a Liberal leader of pearson, and a % of popular vote of 40.2%, and Seats won smaller than 131?" }
### QUESTION Name the condition with platelet count of unaffected and bleeding time of unaffected with prothrombin time of prolonged and partial thromboplastin time of prolonged ### CONTEXT CREATE TABLE table_name_52 (condition VARCHAR, partial_thromboplastin_time VARCHAR, prothrombin_time VARCHAR, platelet_count VARCHAR, bleeding_time VARCHAR) ### ANSWER SELECT condition FROM table_name_52 WHERE platelet_count = "unaffected" AND bleeding_time = "unaffected" AND prothrombin_time = "prolonged" AND partial_thromboplastin_time = "prolonged"</s>
{ "answer": "SELECT condition FROM table_name_52 WHERE platelet_count = \"unaffected\" AND bleeding_time = \"unaffected\" AND prothrombin_time = \"prolonged\" AND partial_thromboplastin_time = \"prolonged\"", "context": "CREATE TABLE table_name_52 (condition VARCHAR, partial_thromboplastin_time VARCHAR, prothrombin_time VARCHAR, platelet_count VARCHAR, bleeding_time VARCHAR)", "question": "Name the condition with platelet count of unaffected and bleeding time of unaffected with prothrombin time of prolonged and partial thromboplastin time of prolonged" }
### QUESTION What is Score, when Game is less than 61, when February is less than 11, and when Opponent is "@ Buffalo Sabres"? ### CONTEXT CREATE TABLE table_name_25 (score VARCHAR, opponent VARCHAR, game VARCHAR, february VARCHAR) ### ANSWER SELECT score FROM table_name_25 WHERE game < 61 AND february < 11 AND opponent = "@ buffalo sabres"</s>
{ "answer": "SELECT score FROM table_name_25 WHERE game < 61 AND february < 11 AND opponent = \"@ buffalo sabres\"", "context": "CREATE TABLE table_name_25 (score VARCHAR, opponent VARCHAR, game VARCHAR, february VARCHAR)", "question": "What is Score, when Game is less than 61, when February is less than 11, and when Opponent is \"@ Buffalo Sabres\"?" }
### QUESTION What is the score of the match with UTC as the runner-up and Saint-Gaudens Bears as the winners? ### CONTEXT CREATE TABLE table_name_77 (score VARCHAR, runner_up VARCHAR, winners VARCHAR) ### ANSWER SELECT score FROM table_name_77 WHERE runner_up = "utc" AND winners = "saint-gaudens bears"</s>
{ "answer": "SELECT score FROM table_name_77 WHERE runner_up = \"utc\" AND winners = \"saint-gaudens bears\"", "context": "CREATE TABLE table_name_77 (score VARCHAR, runner_up VARCHAR, winners VARCHAR)", "question": "What is the score of the match with UTC as the runner-up and Saint-Gaudens Bears as the winners?" }
### QUESTION Which year had UTC as the runner-up and Saint-Gaudens Bears as the winners? ### CONTEXT CREATE TABLE table_name_3 (year VARCHAR, runner_up VARCHAR, winners VARCHAR) ### ANSWER SELECT year FROM table_name_3 WHERE runner_up = "utc" AND winners = "saint-gaudens bears"</s>
{ "answer": "SELECT year FROM table_name_3 WHERE runner_up = \"utc\" AND winners = \"saint-gaudens bears\"", "context": "CREATE TABLE table_name_3 (year VARCHAR, runner_up VARCHAR, winners VARCHAR)", "question": "Which year had UTC as the runner-up and Saint-Gaudens Bears as the winners?" }
### QUESTION what is the number of draws for ali said gouled? ### CONTEXT CREATE TABLE table_name_12 (draws VARCHAR, name VARCHAR) ### ANSWER SELECT COUNT(draws) FROM table_name_12 WHERE name = "ali said gouled"</s>
{ "answer": "SELECT COUNT(draws) FROM table_name_12 WHERE name = \"ali said gouled\"", "context": "CREATE TABLE table_name_12 (draws VARCHAR, name VARCHAR)", "question": "what is the number of draws for ali said gouled?" }
### QUESTION What is Postition, when Nationality is United States, when Jersey Number(s) is 12, and when Player is Tom Black Category:Articles With hCards? ### CONTEXT CREATE TABLE table_name_50 (position VARCHAR, player VARCHAR, nationality VARCHAR, jersey_number_s_ VARCHAR) ### ANSWER SELECT position FROM table_name_50 WHERE nationality = "united states" AND jersey_number_s_ = "12" AND player = "tom black category:articles with hcards"</s>
{ "answer": "SELECT position FROM table_name_50 WHERE nationality = \"united states\" AND jersey_number_s_ = \"12\" AND player = \"tom black category:articles with hcards\"", "context": "CREATE TABLE table_name_50 (position VARCHAR, player VARCHAR, nationality VARCHAR, jersey_number_s_ VARCHAR)", "question": "What is Postition, when Nationality is United States, when Jersey Number(s) is 12, and when Player is Tom Black Category:Articles With hCards?" }
### QUESTION What are the school colors for the college whose main campus is overland park? ### CONTEXT CREATE TABLE table_name_66 (school_colors VARCHAR, main_campus_location VARCHAR) ### ANSWER SELECT school_colors FROM table_name_66 WHERE main_campus_location = "overland park"</s>
{ "answer": "SELECT school_colors FROM table_name_66 WHERE main_campus_location = \"overland park\"", "context": "CREATE TABLE table_name_66 (school_colors VARCHAR, main_campus_location VARCHAR)", "question": "What are the school colors for the college whose main campus is overland park?" }
### QUESTION What is the recoupa sudaamericana 1996 result of team flamengo, which did not qualify for the copa conmebol 1996? ### CONTEXT CREATE TABLE table_name_10 (recopa_sudamericana_1996 VARCHAR, copa_conmebol_1996 VARCHAR, team VARCHAR) ### ANSWER SELECT recopa_sudamericana_1996 FROM table_name_10 WHERE copa_conmebol_1996 = "did not qualify" AND team = "flamengo"</s>
{ "answer": "SELECT recopa_sudamericana_1996 FROM table_name_10 WHERE copa_conmebol_1996 = \"did not qualify\" AND team = \"flamengo\"", "context": "CREATE TABLE table_name_10 (recopa_sudamericana_1996 VARCHAR, copa_conmebol_1996 VARCHAR, team VARCHAR)", "question": "What is the recoupa sudaamericana 1996 result of team flamengo, which did not qualify for the copa conmebol 1996?" }
### QUESTION What was the tier versus Annalisa bona? ### CONTEXT CREATE TABLE table_name_59 (tier VARCHAR, opponent_in_the_final VARCHAR) ### ANSWER SELECT tier FROM table_name_59 WHERE opponent_in_the_final = "annalisa bona"</s>
{ "answer": "SELECT tier FROM table_name_59 WHERE opponent_in_the_final = \"annalisa bona\"", "context": "CREATE TABLE table_name_59 (tier VARCHAR, opponent_in_the_final VARCHAR)", "question": "What was the tier versus Annalisa bona?" }
### QUESTION What is the Version of the CD release on June 12, 2008 in Cyprus? ### CONTEXT CREATE TABLE table_name_82 (version VARCHAR, region VARCHAR, format VARCHAR, date VARCHAR) ### ANSWER SELECT version FROM table_name_82 WHERE format = "cd" AND date = "june 12, 2008" AND region = "cyprus"</s>
{ "answer": "SELECT version FROM table_name_82 WHERE format = \"cd\" AND date = \"june 12, 2008\" AND region = \"cyprus\"", "context": "CREATE TABLE table_name_82 (version VARCHAR, region VARCHAR, format VARCHAR, date VARCHAR)", "question": "What is the Version of the CD release on June 12, 2008 in Cyprus?" }
### QUESTION What is the lowest Game where Inning is 6th, and the Opposing Pitcher is cliff curtis? ### CONTEXT CREATE TABLE table_name_14 (game INTEGER, inning VARCHAR, opposing_pitcher VARCHAR) ### ANSWER SELECT MIN(game) FROM table_name_14 WHERE inning = "6th" AND opposing_pitcher = "cliff curtis"</s>
{ "answer": "SELECT MIN(game) FROM table_name_14 WHERE inning = \"6th\" AND opposing_pitcher = \"cliff curtis\"", "context": "CREATE TABLE table_name_14 (game INTEGER, inning VARCHAR, opposing_pitcher VARCHAR)", "question": "What is the lowest Game where Inning is 6th, and the Opposing Pitcher is cliff curtis?" }
### QUESTION Name the nominating festival for un cartus de kent si un pachet de cafea ### CONTEXT CREATE TABLE table_name_93 (nominating_festival VARCHAR, film VARCHAR) ### ANSWER SELECT nominating_festival FROM table_name_93 WHERE film = "un cartus de kent si un pachet de cafea"</s>
{ "answer": "SELECT nominating_festival FROM table_name_93 WHERE film = \"un cartus de kent si un pachet de cafea\"", "context": "CREATE TABLE table_name_93 (nominating_festival VARCHAR, film VARCHAR)", "question": "Name the nominating festival for un cartus de kent si un pachet de cafea" }
### QUESTION What was the result F-A for round 5? ### CONTEXT CREATE TABLE table_name_22 (result_f___a VARCHAR, round VARCHAR) ### ANSWER SELECT result_f___a FROM table_name_22 WHERE round = "round 5"</s>
{ "answer": "SELECT result_f___a FROM table_name_22 WHERE round = \"round 5\"", "context": "CREATE TABLE table_name_22 (result_f___a VARCHAR, round VARCHAR)", "question": "What was the result F-A for round 5?" }
### QUESTION What was the Event in the city of copenhagen? ### CONTEXT CREATE TABLE table_name_32 (event VARCHAR, city VARCHAR) ### ANSWER SELECT event FROM table_name_32 WHERE city = "copenhagen"</s>
{ "answer": "SELECT event FROM table_name_32 WHERE city = \"copenhagen\"", "context": "CREATE TABLE table_name_32 (event VARCHAR, city VARCHAR)", "question": "What was the Event in the city of copenhagen?" }
### QUESTION What was the result for song of the year award in 1994? ### CONTEXT CREATE TABLE table_name_69 (result VARCHAR, year VARCHAR, award VARCHAR) ### ANSWER SELECT result FROM table_name_69 WHERE year = 1994 AND award = "song of the year"</s>
{ "answer": "SELECT result FROM table_name_69 WHERE year = 1994 AND award = \"song of the year\"", "context": "CREATE TABLE table_name_69 (result VARCHAR, year VARCHAR, award VARCHAR)", "question": "What was the result for song of the year award in 1994?" }
### QUESTION what is the money for trevor immelman? ### CONTEXT CREATE TABLE table_name_77 (money___$__ VARCHAR, player VARCHAR) ### ANSWER SELECT money___$__ FROM table_name_77 WHERE player = "trevor immelman"</s>
{ "answer": "SELECT money___$__ FROM table_name_77 WHERE player = \"trevor immelman\"", "context": "CREATE TABLE table_name_77 (money___$__ VARCHAR, player VARCHAR)", "question": "what is the money for trevor immelman?" }
### QUESTION Manager of marty berghammer, and a Finish of 1st involved what lowest year? ### CONTEXT CREATE TABLE table_name_59 (year INTEGER, manager VARCHAR, finish VARCHAR) ### ANSWER SELECT MIN(year) FROM table_name_59 WHERE manager = "marty berghammer" AND finish = "1st"</s>
{ "answer": "SELECT MIN(year) FROM table_name_59 WHERE manager = \"marty berghammer\" AND finish = \"1st\"", "context": "CREATE TABLE table_name_59 (year INTEGER, manager VARCHAR, finish VARCHAR)", "question": "Manager of marty berghammer, and a Finish of 1st involved what lowest year?" }
### QUESTION What location has more than 2 games with 2:56? ### CONTEXT CREATE TABLE table_name_67 (location VARCHAR, game VARCHAR, time VARCHAR) ### ANSWER SELECT location FROM table_name_67 WHERE game > 2 AND time = "2:56"</s>
{ "answer": "SELECT location FROM table_name_67 WHERE game > 2 AND time = \"2:56\"", "context": "CREATE TABLE table_name_67 (location VARCHAR, game VARCHAR, time VARCHAR)", "question": "What location has more than 2 games with 2:56?" }
### QUESTION what is the total number of seats 2006 that has parties and voter turnout in % and whose %2006 is greater than 51.5? ### CONTEXT CREATE TABLE table_name_33 (seats_2006 INTEGER, parties_and_voter_communities VARCHAR, _percentage_2006 VARCHAR) ### ANSWER SELECT SUM(seats_2006) FROM table_name_33 WHERE parties_and_voter_communities = "voter turnout in %" AND _percentage_2006 > 51.5</s>
{ "answer": "SELECT SUM(seats_2006) FROM table_name_33 WHERE parties_and_voter_communities = \"voter turnout in %\" AND _percentage_2006 > 51.5", "context": "CREATE TABLE table_name_33 (seats_2006 INTEGER, parties_and_voter_communities VARCHAR, _percentage_2006 VARCHAR)", "question": "what is the total number of seats 2006 that has parties and voter turnout in % and whose %2006 is greater than 51.5?" }
### QUESTION what is the total number of seats 2001 with seats 2006 more than 10 and voter communities of cdu? ### CONTEXT CREATE TABLE table_name_91 (seats_2001 INTEGER, parties_and_voter_communities VARCHAR, seats_2006 VARCHAR) ### ANSWER SELECT SUM(seats_2001) FROM table_name_91 WHERE parties_and_voter_communities = "cdu" AND seats_2006 > 10</s>
{ "answer": "SELECT SUM(seats_2001) FROM table_name_91 WHERE parties_and_voter_communities = \"cdu\" AND seats_2006 > 10", "context": "CREATE TABLE table_name_91 (seats_2001 INTEGER, parties_and_voter_communities VARCHAR, seats_2006 VARCHAR)", "question": "what is the total number of seats 2001 with seats 2006 more than 10 and voter communities of cdu?" }
### QUESTION Name the Company which has a Price in USD of free / negotiable? ### CONTEXT CREATE TABLE table_name_69 (company VARCHAR, price_in_usd VARCHAR) ### ANSWER SELECT company FROM table_name_69 WHERE price_in_usd = "free / negotiable"</s>
{ "answer": "SELECT company FROM table_name_69 WHERE price_in_usd = \"free / negotiable\"", "context": "CREATE TABLE table_name_69 (company VARCHAR, price_in_usd VARCHAR)", "question": "Name the Company which has a Price in USD of free / negotiable?" }
### QUESTION Which of the attributes has is cancelable and an answer of yes for bubbles? ### CONTEXT CREATE TABLE table_name_15 (attribute VARCHAR, cancelable VARCHAR, bubbles VARCHAR) ### ANSWER SELECT attribute FROM table_name_15 WHERE cancelable = "yes" AND bubbles = "yes"</s>
{ "answer": "SELECT attribute FROM table_name_15 WHERE cancelable = \"yes\" AND bubbles = \"yes\"", "context": "CREATE TABLE table_name_15 (attribute VARCHAR, cancelable VARCHAR, bubbles VARCHAR)", "question": "Which of the attributes has is cancelable and an answer of yes for bubbles?" }
### QUESTION What is the total number of 1st prize ($) that has a United States country with a score lower than 271 and in a year after 1964 with a winner of Bobby Mitchell? ### CONTEXT ### ANSWER SELECT COUNT(*) AS $__ FROM table_name_15 WHERE country = "united states" AND score < 271 AND year > 1964 AND winner = "bobby mitchell"</s>
{ "answer": "SELECT COUNT(*) AS $__ FROM table_name_15 WHERE country = \"united states\" AND score < 271 AND year > 1964 AND winner = \"bobby mitchell\"", "context": "", "question": "What is the total number of 1st prize ($) that has a United States country with a score lower than 271 and in a year after 1964 with a winner of Bobby Mitchell?" }
### QUESTION What is the highest laps with a 30 finish? ### CONTEXT CREATE TABLE table_name_89 (laps INTEGER, finish VARCHAR) ### ANSWER SELECT MAX(laps) FROM table_name_89 WHERE finish = "30"</s>
{ "answer": "SELECT MAX(laps) FROM table_name_89 WHERE finish = \"30\"", "context": "CREATE TABLE table_name_89 (laps INTEGER, finish VARCHAR)", "question": "What is the highest laps with a 30 finish?" }
### QUESTION What is the most Champions League assists for those with a total of 6 and position of Midfielder? ### CONTEXT CREATE TABLE table_name_48 (Champions INTEGER, total VARCHAR, position VARCHAR) ### ANSWER SELECT MAX(Champions) AS league FROM table_name_48 WHERE total = 6 AND position = "midfielder"</s>
{ "answer": "SELECT MAX(Champions) AS league FROM table_name_48 WHERE total = 6 AND position = \"midfielder\"", "context": "CREATE TABLE table_name_48 (Champions INTEGER, total VARCHAR, position VARCHAR)", "question": "What is the most Champions League assists for those with a total of 6 and position of Midfielder?" }
### QUESTION What percentage of others have an SZDSZ of 4% and a Fidesz of 60%? ### CONTEXT CREATE TABLE table_name_10 (others VARCHAR, szdsz VARCHAR, fidesz VARCHAR) ### ANSWER SELECT others FROM table_name_10 WHERE szdsz = "4%" AND fidesz = "60%"</s>
{ "answer": "SELECT others FROM table_name_10 WHERE szdsz = \"4%\" AND fidesz = \"60%\"", "context": "CREATE TABLE table_name_10 (others VARCHAR, szdsz VARCHAR, fidesz VARCHAR)", "question": "What percentage of others have an SZDSZ of 4% and a Fidesz of 60%?" }
### QUESTION What is the average FAC/LC apps with a CL G greater than 0, less than 33 PL apps, a FAC/LC G of 0, and less than 2 FA YC? ### CONTEXT CREATE TABLE table_name_46 (fac___lc_apps INTEGER, fa_yc VARCHAR, fac___lc_g VARCHAR, cl_g VARCHAR, pl_apps VARCHAR) ### ANSWER SELECT AVG(fac___lc_apps) FROM table_name_46 WHERE cl_g > 0 AND pl_apps < 33 AND fac___lc_g = 0 AND fa_yc < 2</s>
{ "answer": "SELECT AVG(fac___lc_apps) FROM table_name_46 WHERE cl_g > 0 AND pl_apps < 33 AND fac___lc_g = 0 AND fa_yc < 2", "context": "CREATE TABLE table_name_46 (fac___lc_apps INTEGER, fa_yc VARCHAR, fac___lc_g VARCHAR, cl_g VARCHAR, pl_apps VARCHAR)", "question": "What is the average FAC/LC apps with a CL G greater than 0, less than 33 PL apps, a FAC/LC G of 0, and less than 2 FA YC?" }
### QUESTION On what date do others have 5% with an SZDSZ of 5%? ### CONTEXT CREATE TABLE table_name_14 (date VARCHAR, others VARCHAR, szdsz VARCHAR) ### ANSWER SELECT date FROM table_name_14 WHERE others = "5%" AND szdsz = "5%"</s>
{ "answer": "SELECT date FROM table_name_14 WHERE others = \"5%\" AND szdsz = \"5%\"", "context": "CREATE TABLE table_name_14 (date VARCHAR, others VARCHAR, szdsz VARCHAR)", "question": "On what date do others have 5% with an SZDSZ of 5%?" }
### QUESTION What is the total PL G of player pennant, who has less than 7 CL G, less than 7 CL apps, and a FA YC of 0? ### CONTEXT CREATE TABLE table_name_74 (pl_g VARCHAR, player VARCHAR, fa_yc VARCHAR, cl_g VARCHAR, cl_apps VARCHAR) ### ANSWER SELECT COUNT(pl_g) FROM table_name_74 WHERE cl_g < 7 AND cl_apps < 7 AND fa_yc = 0 AND player = "pennant"</s>
{ "answer": "SELECT COUNT(pl_g) FROM table_name_74 WHERE cl_g < 7 AND cl_apps < 7 AND fa_yc = 0 AND player = \"pennant\"", "context": "CREATE TABLE table_name_74 (pl_g VARCHAR, player VARCHAR, fa_yc VARCHAR, cl_g VARCHAR, cl_apps VARCHAR)", "question": "What is the total PL G of player pennant, who has less than 7 CL G, less than 7 CL apps, and a FA YC of 0?" }
### QUESTION What is the original title of the film for which Dersu Uzala was nominated? ### CONTEXT CREATE TABLE table_name_10 (original_title VARCHAR, film_title_used_in_nomination VARCHAR) ### ANSWER SELECT original_title FROM table_name_10 WHERE film_title_used_in_nomination = "dersu uzala"</s>
{ "answer": "SELECT original_title FROM table_name_10 WHERE film_title_used_in_nomination = \"dersu uzala\"", "context": "CREATE TABLE table_name_10 (original_title VARCHAR, film_title_used_in_nomination VARCHAR)", "question": "What is the original title of the film for which Dersu Uzala was nominated?" }
### QUESTION What was the outcome when darija jurak anaïs laurendon was the opponent? ### CONTEXT CREATE TABLE table_name_34 (outcome VARCHAR, opponents VARCHAR) ### ANSWER SELECT outcome FROM table_name_34 WHERE opponents = "darija jurak anaïs laurendon"</s>
{ "answer": "SELECT outcome FROM table_name_34 WHERE opponents = \"darija jurak anaïs laurendon\"", "context": "CREATE TABLE table_name_34 (outcome VARCHAR, opponents VARCHAR)", "question": "What was the outcome when darija jurak anaïs laurendon was the opponent?" }
### QUESTION When was the outcome runner-up with a score of 4–6, 3–6? ### CONTEXT CREATE TABLE table_name_49 (date VARCHAR, outcome VARCHAR, score VARCHAR) ### ANSWER SELECT date FROM table_name_49 WHERE outcome = "runner-up" AND score = "4–6, 3–6"</s>
{ "answer": "SELECT date FROM table_name_49 WHERE outcome = \"runner-up\" AND score = \"4–6, 3–6\"", "context": "CREATE TABLE table_name_49 (date VARCHAR, outcome VARCHAR, score VARCHAR)", "question": "When was the outcome runner-up with a score of 4–6, 3–6?" }
### QUESTION What engine what in the vehicle when adt champion racing ranked in 1st place? ### CONTEXT CREATE TABLE table_name_21 (engine VARCHAR, rank VARCHAR, entrant VARCHAR) ### ANSWER SELECT engine FROM table_name_21 WHERE rank = "1st" AND entrant = "adt champion racing"</s>
{ "answer": "SELECT engine FROM table_name_21 WHERE rank = \"1st\" AND entrant = \"adt champion racing\"", "context": "CREATE TABLE table_name_21 (engine VARCHAR, rank VARCHAR, entrant VARCHAR)", "question": "What engine what in the vehicle when adt champion racing ranked in 1st place?" }
### QUESTION what is the built when s.r. number is less than 2033, lb&sc number is less than 18, notes is i2 and withdrawal is cannot handle non-empty timestamp argument! 1935? ### CONTEXT CREATE TABLE table_name_48 (built VARCHAR, withdrawal VARCHAR, notes VARCHAR, sr_number VARCHAR, lb VARCHAR, sc_number VARCHAR) ### ANSWER SELECT built FROM table_name_48 WHERE sr_number < 2033 AND lb & sc_number < 18 AND notes = "i2" AND withdrawal = "cannot handle non-empty timestamp argument! 1935"</s>
{ "answer": "SELECT built FROM table_name_48 WHERE sr_number < 2033 AND lb & sc_number < 18 AND notes = \"i2\" AND withdrawal = \"cannot handle non-empty timestamp argument! 1935\"", "context": "CREATE TABLE table_name_48 (built VARCHAR, withdrawal VARCHAR, notes VARCHAR, sr_number VARCHAR, lb VARCHAR, sc_number VARCHAR)", "question": "what is the built when s.r. number is less than 2033, lb&sc number is less than 18, notes is i2 and withdrawal is cannot handle non-empty timestamp argument! 1935?" }
### QUESTION What was the class when adt champion racing ranked 1st with an audi r8 chassis, and less than 206 points? ### CONTEXT CREATE TABLE table_name_2 (class VARCHAR, rank VARCHAR, entrant VARCHAR, points VARCHAR, chassis VARCHAR) ### ANSWER SELECT class FROM table_name_2 WHERE points < 206 AND chassis = "audi r8" AND entrant = "adt champion racing" AND rank = "1st"</s>
{ "answer": "SELECT class FROM table_name_2 WHERE points < 206 AND chassis = \"audi r8\" AND entrant = \"adt champion racing\" AND rank = \"1st\"", "context": "CREATE TABLE table_name_2 (class VARCHAR, rank VARCHAR, entrant VARCHAR, points VARCHAR, chassis VARCHAR)", "question": "What was the class when adt champion racing ranked 1st with an audi r8 chassis, and less than 206 points?" }
### QUESTION What were the average partial failures when the rocket was Ariane 5? ### CONTEXT CREATE TABLE table_name_87 (partial_failures INTEGER, rocket VARCHAR) ### ANSWER SELECT AVG(partial_failures) FROM table_name_87 WHERE rocket = "ariane 5"</s>
{ "answer": "SELECT AVG(partial_failures) FROM table_name_87 WHERE rocket = \"ariane 5\"", "context": "CREATE TABLE table_name_87 (partial_failures INTEGER, rocket VARCHAR)", "question": "What were the average partial failures when the rocket was Ariane 5?" }
### QUESTION Who is nominated for the film Rugrats Go Wild? ### CONTEXT CREATE TABLE table_name_44 (winner_nominee_s_ VARCHAR, result VARCHAR, film VARCHAR) ### ANSWER SELECT winner_nominee_s_ FROM table_name_44 WHERE result = "nominated" AND film = "rugrats go wild"</s>
{ "answer": "SELECT winner_nominee_s_ FROM table_name_44 WHERE result = \"nominated\" AND film = \"rugrats go wild\"", "context": "CREATE TABLE table_name_44 (winner_nominee_s_ VARCHAR, result VARCHAR, film VARCHAR)", "question": "Who is nominated for the film Rugrats Go Wild?" }
### QUESTION What is the lowest Ovrs, when Wkts is greater than 13, and when Econ is less than 3.21? ### CONTEXT CREATE TABLE table_name_68 (ovrs INTEGER, wkts VARCHAR, econ VARCHAR) ### ANSWER SELECT MIN(ovrs) FROM table_name_68 WHERE wkts > 13 AND econ < 3.21</s>
{ "answer": "SELECT MIN(ovrs) FROM table_name_68 WHERE wkts > 13 AND econ < 3.21", "context": "CREATE TABLE table_name_68 (ovrs INTEGER, wkts VARCHAR, econ VARCHAR)", "question": "What is the lowest Ovrs, when Wkts is greater than 13, and when Econ is less than 3.21?" }
### QUESTION What is the least amount of failures with 1 launch and 0 partial failures? ### CONTEXT CREATE TABLE table_name_28 (failures INTEGER, launches VARCHAR, partial_failures VARCHAR) ### ANSWER SELECT MIN(failures) FROM table_name_28 WHERE launches = 1 AND partial_failures < 0</s>
{ "answer": "SELECT MIN(failures) FROM table_name_28 WHERE launches = 1 AND partial_failures < 0", "context": "CREATE TABLE table_name_28 (failures INTEGER, launches VARCHAR, partial_failures VARCHAR)", "question": "What is the least amount of failures with 1 launch and 0 partial failures?" }
### QUESTION What is the to par for the score 73-71=144? ### CONTEXT CREATE TABLE table_name_71 (to_par VARCHAR, score VARCHAR) ### ANSWER SELECT to_par FROM table_name_71 WHERE score = 73 - 71 = 144</s>
{ "answer": "SELECT to_par FROM table_name_71 WHERE score = 73 - 71 = 144", "context": "CREATE TABLE table_name_71 (to_par VARCHAR, score VARCHAR)", "question": "What is the to par for the score 73-71=144?" }
### QUESTION How far did p. carbery run to get 2nd? ### CONTEXT CREATE TABLE table_name_67 (distance VARCHAR, jockey VARCHAR, result VARCHAR) ### ANSWER SELECT distance FROM table_name_67 WHERE jockey = "p. carbery" AND result = "2nd"</s>
{ "answer": "SELECT distance FROM table_name_67 WHERE jockey = \"p. carbery\" AND result = \"2nd\"", "context": "CREATE TABLE table_name_67 (distance VARCHAR, jockey VARCHAR, result VARCHAR)", "question": "How far did p. carbery run to get 2nd?" }
### QUESTION What was the race of the jockey in na group in 4th place? ### CONTEXT CREATE TABLE table_name_15 (race VARCHAR, group VARCHAR, result VARCHAR) ### ANSWER SELECT race FROM table_name_15 WHERE group = "na" AND result = "4th"</s>
{ "answer": "SELECT race FROM table_name_15 WHERE group = \"na\" AND result = \"4th\"", "context": "CREATE TABLE table_name_15 (race VARCHAR, group VARCHAR, result VARCHAR)", "question": "What was the race of the jockey in na group in 4th place?" }
### QUESTION What are average launches with 0 failures, rocket of Soyuz, and less than 12 successes? ### CONTEXT CREATE TABLE table_name_3 (launches INTEGER, successes VARCHAR, failures VARCHAR, rocket VARCHAR) ### ANSWER SELECT AVG(launches) FROM table_name_3 WHERE failures = 0 AND rocket = "soyuz" AND successes < 12</s>
{ "answer": "SELECT AVG(launches) FROM table_name_3 WHERE failures = 0 AND rocket = \"soyuz\" AND successes < 12", "context": "CREATE TABLE table_name_3 (launches INTEGER, successes VARCHAR, failures VARCHAR, rocket VARCHAR)", "question": "What are average launches with 0 failures, rocket of Soyuz, and less than 12 successes?" }
### QUESTION Name the venue for margin less than 66 and opponent of north queensland cowboys ### CONTEXT CREATE TABLE table_name_60 (venue VARCHAR, margin VARCHAR, opponent VARCHAR) ### ANSWER SELECT venue FROM table_name_60 WHERE margin < 66 AND opponent = "north queensland cowboys"</s>
{ "answer": "SELECT venue FROM table_name_60 WHERE margin < 66 AND opponent = \"north queensland cowboys\"", "context": "CREATE TABLE table_name_60 (venue VARCHAR, margin VARCHAR, opponent VARCHAR)", "question": "Name the venue for margin less than 66 and opponent of north queensland cowboys" }
### QUESTION What is the Name with an Opened (closing date if defunct) of 1995 and has a Length of miles (m), in Illinois? ### CONTEXT CREATE TABLE table_name_9 (name VARCHAR, state VARCHAR, opened__closing_date_if_defunct_ VARCHAR, length VARCHAR) ### ANSWER SELECT name FROM table_name_9 WHERE opened__closing_date_if_defunct_ = "1995" AND length = "miles (m)" AND state = "illinois"</s>
{ "answer": "SELECT name FROM table_name_9 WHERE opened__closing_date_if_defunct_ = \"1995\" AND length = \"miles (m)\" AND state = \"illinois\"", "context": "CREATE TABLE table_name_9 (name VARCHAR, state VARCHAR, opened__closing_date_if_defunct_ VARCHAR, length VARCHAR)", "question": "What is the Name with an Opened (closing date if defunct) of 1995 and has a Length of miles (m), in Illinois?" }
### QUESTION What is the average year that has a final Tour position of 54 and a final Vuelta position over 55? ### CONTEXT CREATE TABLE table_name_67 (year INTEGER, final_position___tour VARCHAR, final_position___vuelta VARCHAR) ### ANSWER SELECT AVG(year) FROM table_name_67 WHERE final_position___tour = 54 AND final_position___vuelta > 55</s>
{ "answer": "SELECT AVG(year) FROM table_name_67 WHERE final_position___tour = 54 AND final_position___vuelta > 55", "context": "CREATE TABLE table_name_67 (year INTEGER, final_position___tour VARCHAR, final_position___vuelta VARCHAR)", "question": "What is the average year that has a final Tour position of 54 and a final Vuelta position over 55?" }
### QUESTION How many Giro positions are associated with the year 1971 and Tour final positions over 50? ### CONTEXT CREATE TABLE table_name_45 (final_position___giro VARCHAR, year VARCHAR, final_position___tour VARCHAR) ### ANSWER SELECT COUNT(final_position___giro) FROM table_name_45 WHERE year = 1971 AND final_position___tour > 50</s>
{ "answer": "SELECT COUNT(final_position___giro) FROM table_name_45 WHERE year = 1971 AND final_position___tour > 50", "context": "CREATE TABLE table_name_45 (final_position___giro VARCHAR, year VARCHAR, final_position___tour VARCHAR)", "question": "How many Giro positions are associated with the year 1971 and Tour final positions over 50?" }
### QUESTION What is Qual 2, when Best is 1:27.642? ### CONTEXT CREATE TABLE table_name_27 (qual_2 VARCHAR, best VARCHAR) ### ANSWER SELECT qual_2 FROM table_name_27 WHERE best = "1:27.642"</s>
{ "answer": "SELECT qual_2 FROM table_name_27 WHERE best = \"1:27.642\"", "context": "CREATE TABLE table_name_27 (qual_2 VARCHAR, best VARCHAR)", "question": "What is Qual 2, when Best is 1:27.642?" }
### QUESTION Venue of klfa stadium, cheras, and a Score of 3-3 had what competition? ### CONTEXT CREATE TABLE table_name_71 (competition VARCHAR, venue VARCHAR, score VARCHAR) ### ANSWER SELECT competition FROM table_name_71 WHERE venue = "klfa stadium, cheras" AND score = "3-3"</s>
{ "answer": "SELECT competition FROM table_name_71 WHERE venue = \"klfa stadium, cheras\" AND score = \"3-3\"", "context": "CREATE TABLE table_name_71 (competition VARCHAR, venue VARCHAR, score VARCHAR)", "question": "Venue of klfa stadium, cheras, and a Score of 3-3 had what competition?" }
### QUESTION Name the authority for te akau with roll less than 254 and decile of 8 ### CONTEXT CREATE TABLE table_name_64 (authority VARCHAR, area VARCHAR, roll VARCHAR, decile VARCHAR) ### ANSWER SELECT authority FROM table_name_64 WHERE roll < 254 AND decile = "8" AND area = "te akau"</s>
{ "answer": "SELECT authority FROM table_name_64 WHERE roll < 254 AND decile = \"8\" AND area = \"te akau\"", "context": "CREATE TABLE table_name_64 (authority VARCHAR, area VARCHAR, roll VARCHAR, decile VARCHAR)", "question": "Name the authority for te akau with roll less than 254 and decile of 8" }
### QUESTION What is the sum of Rank with a build year earlier than 2007 for the howard johnson hotel bucharest? ### CONTEXT CREATE TABLE table_name_39 (rank INTEGER, built VARCHAR, building VARCHAR) ### ANSWER SELECT SUM(rank) FROM table_name_39 WHERE built < 2007 AND building = "howard johnson hotel bucharest"</s>
{ "answer": "SELECT SUM(rank) FROM table_name_39 WHERE built < 2007 AND building = \"howard johnson hotel bucharest\"", "context": "CREATE TABLE table_name_39 (rank INTEGER, built VARCHAR, building VARCHAR)", "question": "What is the sum of Rank with a build year earlier than 2007 for the howard johnson hotel bucharest?" }
### QUESTION What is the score of the Boston Bruins game from April 11? ### CONTEXT CREATE TABLE table_name_39 (score VARCHAR, home VARCHAR, date VARCHAR) ### ANSWER SELECT score FROM table_name_39 WHERE home = "boston bruins" AND date = "april 11"</s>
{ "answer": "SELECT score FROM table_name_39 WHERE home = \"boston bruins\" AND date = \"april 11\"", "context": "CREATE TABLE table_name_39 (score VARCHAR, home VARCHAR, date VARCHAR)", "question": "What is the score of the Boston Bruins game from April 11?" }
### QUESTION With 0 Goals and less than 1 Tries, what is Matt James position? ### CONTEXT CREATE TABLE table_name_38 (position VARCHAR, player VARCHAR, goals VARCHAR, tries VARCHAR) ### ANSWER SELECT position FROM table_name_38 WHERE goals = "0" AND tries < 1 AND player = "matt james"</s>
{ "answer": "SELECT position FROM table_name_38 WHERE goals = \"0\" AND tries < 1 AND player = \"matt james\"", "context": "CREATE TABLE table_name_38 (position VARCHAR, player VARCHAR, goals VARCHAR, tries VARCHAR)", "question": "With 0 Goals and less than 1 Tries, what is Matt James position?" }
### QUESTION What is the earliest round drafted for a University of Southern California player? ### CONTEXT CREATE TABLE table_name_91 (round INTEGER, school VARCHAR) ### ANSWER SELECT MIN(round) FROM table_name_91 WHERE school = "university of southern california"</s>
{ "answer": "SELECT MIN(round) FROM table_name_91 WHERE school = \"university of southern california\"", "context": "CREATE TABLE table_name_91 (round INTEGER, school VARCHAR)", "question": "What is the earliest round drafted for a University of Southern California player?" }
### QUESTION On what date of polling was the Polling Firm forum research with 7 green and less than 30 liberals? ### CONTEXT CREATE TABLE table_name_2 (date_of_polling VARCHAR, liberal VARCHAR, polling_firm VARCHAR, green VARCHAR) ### ANSWER SELECT date_of_polling FROM table_name_2 WHERE polling_firm = "forum research" AND green = 7 AND liberal < 30</s>
{ "answer": "SELECT date_of_polling FROM table_name_2 WHERE polling_firm = \"forum research\" AND green = 7 AND liberal < 30", "context": "CREATE TABLE table_name_2 (date_of_polling VARCHAR, liberal VARCHAR, polling_firm VARCHAR, green VARCHAR)", "question": "On what date of polling was the Polling Firm forum research with 7 green and less than 30 liberals?" }
### QUESTION Which september 26–28, 2011 polling firm had a Link of html, less than 36 liberals, and less than 8 green? ### CONTEXT CREATE TABLE table_name_96 (polling_firm VARCHAR, date_of_polling VARCHAR, green VARCHAR, link VARCHAR, liberal VARCHAR) ### ANSWER SELECT polling_firm FROM table_name_96 WHERE link = "html" AND liberal < 36 AND green < 8 AND date_of_polling = "september 26–28, 2011"</s>
{ "answer": "SELECT polling_firm FROM table_name_96 WHERE link = \"html\" AND liberal < 36 AND green < 8 AND date_of_polling = \"september 26–28, 2011\"", "context": "CREATE TABLE table_name_96 (polling_firm VARCHAR, date_of_polling VARCHAR, green VARCHAR, link VARCHAR, liberal VARCHAR)", "question": "Which september 26–28, 2011 polling firm had a Link of html, less than 36 liberals, and less than 8 green?" }
### QUESTION What is the 1st leg score when US Mbila Nzambi is team 1? ### CONTEXT CREATE TABLE table_name_3 (team_1 VARCHAR) ### ANSWER SELECT 1 AS st_leg FROM table_name_3 WHERE team_1 = "us mbila nzambi"</s>
{ "answer": "SELECT 1 AS st_leg FROM table_name_3 WHERE team_1 = \"us mbila nzambi\"", "context": "CREATE TABLE table_name_3 (team_1 VARCHAR)", "question": "What is the 1st leg score when US Mbila Nzambi is team 1?" }
### QUESTION What is the lowest against value with less than 2 draws, 10 points, and less than 4 lost? ### CONTEXT CREATE TABLE table_name_17 (against INTEGER, lost VARCHAR, drawn VARCHAR, points VARCHAR) ### ANSWER SELECT MIN(against) FROM table_name_17 WHERE drawn < 2 AND points = 10 AND lost < 4</s>
{ "answer": "SELECT MIN(against) FROM table_name_17 WHERE drawn < 2 AND points = 10 AND lost < 4", "context": "CREATE TABLE table_name_17 (against INTEGER, lost VARCHAR, drawn VARCHAR, points VARCHAR)", "question": "What is the lowest against value with less than 2 draws, 10 points, and less than 4 lost?" }
### QUESTION Which Score has a Visitor of toronto st. pats, and a Home of montreal canadiens, and a Record of 3–2–0? ### CONTEXT CREATE TABLE table_name_83 (score VARCHAR, record VARCHAR, visitor VARCHAR, home VARCHAR) ### ANSWER SELECT score FROM table_name_83 WHERE visitor = "toronto st. pats" AND home = "montreal canadiens" AND record = "3–2–0"</s>
{ "answer": "SELECT score FROM table_name_83 WHERE visitor = \"toronto st. pats\" AND home = \"montreal canadiens\" AND record = \"3–2–0\"", "context": "CREATE TABLE table_name_83 (score VARCHAR, record VARCHAR, visitor VARCHAR, home VARCHAR)", "question": "Which Score has a Visitor of toronto st. pats, and a Home of montreal canadiens, and a Record of 3–2–0?" }
### QUESTION What is Player, when Pick is greater than 24, and when NBA years [a ] is "9"? ### CONTEXT CREATE TABLE table_name_2 (player VARCHAR, pick VARCHAR, nba_years_ VARCHAR, a_ VARCHAR) ### ANSWER SELECT player FROM table_name_2 WHERE pick > 24 AND nba_years_[a_] = "9"</s>
{ "answer": "SELECT player FROM table_name_2 WHERE pick > 24 AND nba_years_[a_] = \"9\"", "context": "CREATE TABLE table_name_2 (player VARCHAR, pick VARCHAR, nba_years_ VARCHAR, a_ VARCHAR)", "question": "What is Player, when Pick is greater than 24, and when NBA years [a ] is \"9\"?" }
### QUESTION When is the latest year that Real Colorado Foxes did not qualify for the playoffs but make it to Open Cup 2nd Round? ### CONTEXT CREATE TABLE table_name_95 (year INTEGER, playoffs VARCHAR, open_cup VARCHAR) ### ANSWER SELECT MAX(year) FROM table_name_95 WHERE playoffs = "did not qualify" AND open_cup = "2nd round"</s>
{ "answer": "SELECT MAX(year) FROM table_name_95 WHERE playoffs = \"did not qualify\" AND open_cup = \"2nd round\"", "context": "CREATE TABLE table_name_95 (year INTEGER, playoffs VARCHAR, open_cup VARCHAR)", "question": "When is the latest year that Real Colorado Foxes did not qualify for the playoffs but make it to Open Cup 2nd Round?" }
### QUESTION In 2012, which round in the Open Cup did Real Colorado Foxes make it to the conference semifinal? ### CONTEXT CREATE TABLE table_name_61 (open_cup VARCHAR, playoffs VARCHAR, year VARCHAR) ### ANSWER SELECT open_cup FROM table_name_61 WHERE playoffs = "conference semifinal" AND year = 2012</s>
{ "answer": "SELECT open_cup FROM table_name_61 WHERE playoffs = \"conference semifinal\" AND year = 2012", "context": "CREATE TABLE table_name_61 (open_cup VARCHAR, playoffs VARCHAR, year VARCHAR)", "question": "In 2012, which round in the Open Cup did Real Colorado Foxes make it to the conference semifinal?" }
### QUESTION Which date was the show aired on the RTL Televizija network? ### CONTEXT CREATE TABLE table_name_90 (date_aired VARCHAR, network VARCHAR) ### ANSWER SELECT date_aired FROM table_name_90 WHERE network = "rtl televizija"</s>
{ "answer": "SELECT date_aired FROM table_name_90 WHERE network = \"rtl televizija\"", "context": "CREATE TABLE table_name_90 (date_aired VARCHAR, network VARCHAR)", "question": "Which date was the show aired on the RTL Televizija network?" }