text
stringlengths
150
1.06k
source
dict
### QUESTION Name the least points for patrick ### CONTEXT CREATE TABLE table_14342592_4 (points INTEGER, player VARCHAR) ### ANSWER SELECT MIN(points) FROM table_14342592_4 WHERE player = "Patrick"</s>
{ "answer": "SELECT MIN(points) FROM table_14342592_4 WHERE player = \"Patrick\"", "context": "CREATE TABLE table_14342592_4 (points INTEGER, player VARCHAR)", "question": "Name the least points for patrick" }
### QUESTION How many viewers in millions for episode number 38? ### CONTEXT CREATE TABLE table_2602958_3 (us_viewers__million_ VARCHAR, no VARCHAR) ### ANSWER SELECT us_viewers__million_ FROM table_2602958_3 WHERE no = 38</s>
{ "answer": "SELECT us_viewers__million_ FROM table_2602958_3 WHERE no = 38", "context": "CREATE TABLE table_2602958_3 (us_viewers__million_ VARCHAR, no VARCHAR)", "question": "How many viewers in millions for episode number 38?" }
### QUESTION Name the number of players when starter is no and touchdowns is 1 for right halfback ### CONTEXT CREATE TABLE table_14342592_4 (player VARCHAR, position VARCHAR, starter VARCHAR, touchdowns VARCHAR) ### ANSWER SELECT COUNT(player) FROM table_14342592_4 WHERE starter = "No" AND touchdowns = 1 AND position = "Right halfback"</s>
{ "answer": "SELECT COUNT(player) FROM table_14342592_4 WHERE starter = \"No\" AND touchdowns = 1 AND position = \"Right halfback\"", "context": "CREATE TABLE table_14342592_4 (player VARCHAR, position VARCHAR, starter VARCHAR, touchdowns VARCHAR)", "question": "Name the number of players when starter is no and touchdowns is 1 for right halfback" }
### QUESTION What's the least losses for Horsham Saints with more than 13 wins and less than 1211 against? ### CONTEXT CREATE TABLE table_name_24 (losses INTEGER, wins VARCHAR, against VARCHAR, wimmera_fl VARCHAR) ### ANSWER SELECT MIN(losses) FROM table_name_24 WHERE against < 1211 AND wimmera_fl = "horsham saints" AND wins > 13</s>
{ "answer": "SELECT MIN(losses) FROM table_name_24 WHERE against < 1211 AND wimmera_fl = \"horsham saints\" AND wins > 13", "context": "CREATE TABLE table_name_24 (losses INTEGER, wins VARCHAR, against VARCHAR, wimmera_fl VARCHAR)", "question": "What's the least losses for Horsham Saints with more than 13 wins and less than 1211 against?" }
### QUESTION What was the lowest city population for the district of rajanpur district with a area of 6 km squared and a serial number less than 29? ### CONTEXT CREATE TABLE table_name_15 (city_population__2009_ INTEGER, serial_no VARCHAR, city_area_km_2__ VARCHAR, district VARCHAR) ### ANSWER SELECT MIN(city_population__2009_) FROM table_name_15 WHERE city_area_km_2__ = 6 AND district = "rajanpur district" AND serial_no < 29</s>
{ "answer": "SELECT MIN(city_population__2009_) FROM table_name_15 WHERE city_area_km_2__ = 6 AND district = \"rajanpur district\" AND serial_no < 29", "context": "CREATE TABLE table_name_15 (city_population__2009_ INTEGER, serial_no VARCHAR, city_area_km_2__ VARCHAR, district VARCHAR)", "question": "What was the lowest city population for the district of rajanpur district with a area of 6 km squared and a serial number less than 29?" }
### QUESTION Who won the stage when Mark Cavendish led the points classification, Rinaldo Nocentini led the general classification, and the stage was less than 11.0? ### CONTEXT CREATE TABLE table_14395920_2 (winner VARCHAR, stage VARCHAR, points_classification VARCHAR, general_classification VARCHAR) ### ANSWER SELECT winner FROM table_14395920_2 WHERE points_classification = "Mark Cavendish" AND general_classification = "Rinaldo Nocentini" AND stage < 11.0</s>
{ "answer": "SELECT winner FROM table_14395920_2 WHERE points_classification = \"Mark Cavendish\" AND general_classification = \"Rinaldo Nocentini\" AND stage < 11.0", "context": "CREATE TABLE table_14395920_2 (winner VARCHAR, stage VARCHAR, points_classification VARCHAR, general_classification VARCHAR)", "question": "Who won the stage when Mark Cavendish led the points classification, Rinaldo Nocentini led the general classification, and the stage was less than 11.0?" }
### QUESTION What is the Sr. number of Banikhet Dalhouse Khajiar? ### CONTEXT CREATE TABLE table_26036389_1 (sr_no INTEGER, name_of_road VARCHAR) ### ANSWER SELECT MAX(sr_no) FROM table_26036389_1 WHERE name_of_road = "Banikhet Dalhouse Khajiar"</s>
{ "answer": "SELECT MAX(sr_no) FROM table_26036389_1 WHERE name_of_road = \"Banikhet Dalhouse Khajiar\"", "context": "CREATE TABLE table_26036389_1 (sr_no INTEGER, name_of_road VARCHAR)", "question": "What is the Sr. number of Banikhet Dalhouse Khajiar?" }
### QUESTION What is the average number of golds for teams with 1 bronze, less than 3 silver, and a total over 2? ### CONTEXT CREATE TABLE table_name_55 (gold INTEGER, silver VARCHAR, bronze VARCHAR, total VARCHAR) ### ANSWER SELECT AVG(gold) FROM table_name_55 WHERE bronze = 1 AND total > 2 AND silver < 3</s>
{ "answer": "SELECT AVG(gold) FROM table_name_55 WHERE bronze = 1 AND total > 2 AND silver < 3", "context": "CREATE TABLE table_name_55 (gold INTEGER, silver VARCHAR, bronze VARCHAR, total VARCHAR)", "question": "What is the average number of golds for teams with 1 bronze, less than 3 silver, and a total over 2?" }
### QUESTION How many times has the playoff been 1 in the contest for the afc cup? ### CONTEXT CREATE TABLE table_14460937_1 (afc_cup VARCHAR, play_off VARCHAR) ### ANSWER SELECT COUNT(afc_cup) FROM table_14460937_1 WHERE play_off = 1</s>
{ "answer": "SELECT COUNT(afc_cup) FROM table_14460937_1 WHERE play_off = 1", "context": "CREATE TABLE table_14460937_1 (afc_cup VARCHAR, play_off VARCHAR)", "question": "How many times has the playoff been 1 in the contest for the afc cup?" }
### QUESTION What is the ranktotal number if the Hashan Tillakaratne? ### CONTEXT CREATE TABLE table_26041144_16 (rank VARCHAR, player VARCHAR) ### ANSWER SELECT COUNT(rank) FROM table_26041144_16 WHERE player = "Hashan Tillakaratne"</s>
{ "answer": "SELECT COUNT(rank) FROM table_26041144_16 WHERE player = \"Hashan Tillakaratne\"", "context": "CREATE TABLE table_26041144_16 (rank VARCHAR, player VARCHAR)", "question": "What is the ranktotal number if the Hashan Tillakaratne?" }
### QUESTION Which class to 1928 value had years of manufacture of 1921/23 and class from 1928 of BCi-21? ### CONTEXT CREATE TABLE table_name_21 (class_to_1928 VARCHAR, year_s__of_manufacture VARCHAR, class_from_1928 VARCHAR) ### ANSWER SELECT class_to_1928 FROM table_name_21 WHERE year_s__of_manufacture = "1921/23" AND class_from_1928 = "bci-21"</s>
{ "answer": "SELECT class_to_1928 FROM table_name_21 WHERE year_s__of_manufacture = \"1921/23\" AND class_from_1928 = \"bci-21\"", "context": "CREATE TABLE table_name_21 (class_to_1928 VARCHAR, year_s__of_manufacture VARCHAR, class_from_1928 VARCHAR)", "question": "Which class to 1928 value had years of manufacture of 1921/23 and class from 1928 of BCi-21?" }
### QUESTION What's the finishes for Lambros Athanassoulas having 0 podiums and 0 stage wins? ### CONTEXT CREATE TABLE table_name_57 (finishes INTEGER, driver VARCHAR, podiums VARCHAR, stage_wins VARCHAR) ### ANSWER SELECT SUM(finishes) FROM table_name_57 WHERE podiums = 0 AND stage_wins = 0 AND driver = "lambros athanassoulas"</s>
{ "answer": "SELECT SUM(finishes) FROM table_name_57 WHERE podiums = 0 AND stage_wins = 0 AND driver = \"lambros athanassoulas\"", "context": "CREATE TABLE table_name_57 (finishes INTEGER, driver VARCHAR, podiums VARCHAR, stage_wins VARCHAR)", "question": "What's the finishes for Lambros Athanassoulas having 0 podiums and 0 stage wins?" }
### QUESTION What the rank of the Virgin Islands athlete with react under 0.168? ### CONTEXT CREATE TABLE table_name_44 (rank VARCHAR, react VARCHAR, nationality VARCHAR) ### ANSWER SELECT rank FROM table_name_44 WHERE react < 0.168 AND nationality = "virgin islands"</s>
{ "answer": "SELECT rank FROM table_name_44 WHERE react < 0.168 AND nationality = \"virgin islands\"", "context": "CREATE TABLE table_name_44 (rank VARCHAR, react VARCHAR, nationality VARCHAR)", "question": "What the rank of the Virgin Islands athlete with react under 0.168?" }
### QUESTION What is the lowest rank for Chris Brown with react greater than 0.244? ### CONTEXT CREATE TABLE table_name_44 (rank INTEGER, athlete VARCHAR, react VARCHAR) ### ANSWER SELECT MIN(rank) FROM table_name_44 WHERE athlete = "chris brown" AND react > 0.244</s>
{ "answer": "SELECT MIN(rank) FROM table_name_44 WHERE athlete = \"chris brown\" AND react > 0.244", "context": "CREATE TABLE table_name_44 (rank INTEGER, athlete VARCHAR, react VARCHAR)", "question": "What is the lowest rank for Chris Brown with react greater than 0.244?" }
### QUESTION What was the position of the player picked by the Montreal Canadiens? ### CONTEXT CREATE TABLE table_1473672_5 (position VARCHAR, nhl_team VARCHAR) ### ANSWER SELECT position FROM table_1473672_5 WHERE nhl_team = "Montreal Canadiens"</s>
{ "answer": "SELECT position FROM table_1473672_5 WHERE nhl_team = \"Montreal Canadiens\"", "context": "CREATE TABLE table_1473672_5 (position VARCHAR, nhl_team VARCHAR)", "question": "What was the position of the player picked by the Montreal Canadiens?" }
### QUESTION What's the 2008 that has 3.4 in 2009 and more than 2.9 in 2005? ### CONTEXT CREATE TABLE table_name_35 (Id VARCHAR) ### ANSWER SELECT MAX(2008) FROM table_name_35 WHERE 2009 = 3.4 AND 2005 > 2.9</s>
{ "answer": "SELECT MAX(2008) FROM table_name_35 WHERE 2009 = 3.4 AND 2005 > 2.9", "context": "CREATE TABLE table_name_35 (Id VARCHAR)", "question": "What's the 2008 that has 3.4 in 2009 and more than 2.9 in 2005?" }
### QUESTION What date had Alexander Krasnorutskiy as a partner with a score of 6–3, 4–6, 6–2? ### CONTEXT CREATE TABLE table_name_2 (date VARCHAR, partner VARCHAR, score VARCHAR) ### ANSWER SELECT date FROM table_name_2 WHERE partner = "alexander krasnorutskiy" AND score = "6–3, 4–6, 6–2"</s>
{ "answer": "SELECT date FROM table_name_2 WHERE partner = \"alexander krasnorutskiy\" AND score = \"6–3, 4–6, 6–2\"", "context": "CREATE TABLE table_name_2 (date VARCHAR, partner VARCHAR, score VARCHAR)", "question": "What date had Alexander Krasnorutskiy as a partner with a score of 6–3, 4–6, 6–2?" }
### QUESTION How much Enrollment has a School of indianapolis tindley? ### CONTEXT CREATE TABLE table_name_32 (enrollment VARCHAR, school VARCHAR) ### ANSWER SELECT COUNT(enrollment) FROM table_name_32 WHERE school = "indianapolis tindley"</s>
{ "answer": "SELECT COUNT(enrollment) FROM table_name_32 WHERE school = \"indianapolis tindley\"", "context": "CREATE TABLE table_name_32 (enrollment VARCHAR, school VARCHAR)", "question": "How much Enrollment has a School of indianapolis tindley?" }
### QUESTION What day was kibawe created? ### CONTEXT CREATE TABLE table_261222_1 (date_of_creation VARCHAR, city___municipality VARCHAR) ### ANSWER SELECT date_of_creation FROM table_261222_1 WHERE city___municipality = "Kibawe"</s>
{ "answer": "SELECT date_of_creation FROM table_261222_1 WHERE city___municipality = \"Kibawe\"", "context": "CREATE TABLE table_261222_1 (date_of_creation VARCHAR, city___municipality VARCHAR)", "question": "What day was kibawe created?" }
### QUESTION How many places are named manolo fortich? ### CONTEXT CREATE TABLE table_261222_1 (area__km_2__ VARCHAR, city___municipality VARCHAR) ### ANSWER SELECT COUNT(area__km_2__) FROM table_261222_1 WHERE city___municipality = "Manolo Fortich"</s>
{ "answer": "SELECT COUNT(area__km_2__) FROM table_261222_1 WHERE city___municipality = \"Manolo Fortich\"", "context": "CREATE TABLE table_261222_1 (area__km_2__ VARCHAR, city___municipality VARCHAR)", "question": "How many places are named manolo fortich?" }
### QUESTION Name the international tourist arrivals for arrivals 2011 for 8.1 million ### CONTEXT CREATE TABLE table_14752049_3 (international_tourist_arrivals__2010_ VARCHAR, international_tourist_arrivals__2011_ VARCHAR) ### ANSWER SELECT international_tourist_arrivals__2010_ FROM table_14752049_3 WHERE international_tourist_arrivals__2011_ = "8.1 million"</s>
{ "answer": "SELECT international_tourist_arrivals__2010_ FROM table_14752049_3 WHERE international_tourist_arrivals__2011_ = \"8.1 million\"", "context": "CREATE TABLE table_14752049_3 (international_tourist_arrivals__2010_ VARCHAR, international_tourist_arrivals__2011_ VARCHAR)", "question": "Name the international tourist arrivals for arrivals 2011 for 8.1 million" }
### QUESTION what is the gold when the bronze is 1, total is 6 and silver is less than 3? ### CONTEXT CREATE TABLE table_name_2 (gold INTEGER, silver VARCHAR, bronze VARCHAR, total VARCHAR) ### ANSWER SELECT SUM(gold) FROM table_name_2 WHERE bronze = 1 AND total = "6" AND silver < 3</s>
{ "answer": "SELECT SUM(gold) FROM table_name_2 WHERE bronze = 1 AND total = \"6\" AND silver < 3", "context": "CREATE TABLE table_name_2 (gold INTEGER, silver VARCHAR, bronze VARCHAR, total VARCHAR)", "question": "what is the gold when the bronze is 1, total is 6 and silver is less than 3?" }
### QUESTION Name the number of ranks for international tourist arrivals being 6.2 million ### CONTEXT CREATE TABLE table_14752049_5 (rank VARCHAR, international_tourist_arrivals__2011_ VARCHAR) ### ANSWER SELECT COUNT(rank) FROM table_14752049_5 WHERE international_tourist_arrivals__2011_ = "6.2 million"</s>
{ "answer": "SELECT COUNT(rank) FROM table_14752049_5 WHERE international_tourist_arrivals__2011_ = \"6.2 million\"", "context": "CREATE TABLE table_14752049_5 (rank VARCHAR, international_tourist_arrivals__2011_ VARCHAR)", "question": "Name the number of ranks for international tourist arrivals being 6.2 million" }
### QUESTION What is the g (μs/km)when the frequency (hz) is 100k? ### CONTEXT CREATE TABLE table_261642_3 (g__μs_km_ VARCHAR, frequency__hz_ VARCHAR) ### ANSWER SELECT g__μs_km_ FROM table_261642_3 WHERE frequency__hz_ = "100k"</s>
{ "answer": "SELECT g__μs_km_ FROM table_261642_3 WHERE frequency__hz_ = \"100k\"", "context": "CREATE TABLE table_261642_3 (g__μs_km_ VARCHAR, frequency__hz_ VARCHAR)", "question": "What is the g (μs/km)when the frequency (hz) is 100k?" }
### QUESTION what is the mascot when the county is 43 kosciusko? ### CONTEXT CREATE TABLE table_name_82 (mascot VARCHAR, county VARCHAR) ### ANSWER SELECT mascot FROM table_name_82 WHERE county = "43 kosciusko"</s>
{ "answer": "SELECT mascot FROM table_name_82 WHERE county = \"43 kosciusko\"", "context": "CREATE TABLE table_name_82 (mascot VARCHAR, county VARCHAR)", "question": "what is the mascot when the county is 43 kosciusko?" }
### QUESTION which Film has a Category of best actress – musical or comedy, and a Lost to of nicole kidman ( moulin rouge! )? ### CONTEXT CREATE TABLE table_name_23 (film VARCHAR, category VARCHAR, lost_to VARCHAR) ### ANSWER SELECT film FROM table_name_23 WHERE category = "best actress – musical or comedy" AND lost_to = "nicole kidman ( moulin rouge! )"</s>
{ "answer": "SELECT film FROM table_name_23 WHERE category = \"best actress – musical or comedy\" AND lost_to = \"nicole kidman ( moulin rouge! )\"", "context": "CREATE TABLE table_name_23 (film VARCHAR, category VARCHAR, lost_to VARCHAR)", "question": "which Film has a Category of best actress – musical or comedy, and a Lost to of nicole kidman ( moulin rouge! )?" }
### QUESTION which Category has a Result of nominated, and a Lost to of jennifer westfeldt ( kissing jessica stein )? ### CONTEXT CREATE TABLE table_name_40 (category VARCHAR, result VARCHAR, lost_to VARCHAR) ### ANSWER SELECT category FROM table_name_40 WHERE result = "nominated" AND lost_to = "jennifer westfeldt ( kissing jessica stein )"</s>
{ "answer": "SELECT category FROM table_name_40 WHERE result = \"nominated\" AND lost_to = \"jennifer westfeldt ( kissing jessica stein )\"", "context": "CREATE TABLE table_name_40 (category VARCHAR, result VARCHAR, lost_to VARCHAR)", "question": "which Category has a Result of nominated, and a Lost to of jennifer westfeldt ( kissing jessica stein )?" }
### QUESTION What is the average attendance for games against the Pittsburgh Steelers when the opponents scored more than 0 points? ### CONTEXT CREATE TABLE table_name_2 (attendance INTEGER, opponent VARCHAR, opponents VARCHAR) ### ANSWER SELECT AVG(attendance) FROM table_name_2 WHERE opponent = "pittsburgh steelers" AND opponents > 0</s>
{ "answer": "SELECT AVG(attendance) FROM table_name_2 WHERE opponent = \"pittsburgh steelers\" AND opponents > 0", "context": "CREATE TABLE table_name_2 (attendance INTEGER, opponent VARCHAR, opponents VARCHAR)", "question": "What is the average attendance for games against the Pittsburgh Steelers when the opponents scored more than 0 points?" }
### QUESTION Name the population 1891 for area being 175836 ### CONTEXT CREATE TABLE table_14925084_1 (population_1891 VARCHAR, area_1891__statute_acres_ VARCHAR) ### ANSWER SELECT COUNT(population_1891) FROM table_14925084_1 WHERE area_1891__statute_acres_ = 175836</s>
{ "answer": "SELECT COUNT(population_1891) FROM table_14925084_1 WHERE area_1891__statute_acres_ = 175836", "context": "CREATE TABLE table_14925084_1 (population_1891 VARCHAR, area_1891__statute_acres_ VARCHAR)", "question": "Name the population 1891 for area being 175836" }
### QUESTION Name the number of administrative county for area 1961 and 176694 ### CONTEXT CREATE TABLE table_14925084_1 (administrative_county VARCHAR, area_1961__statute_acres_ VARCHAR) ### ANSWER SELECT COUNT(administrative_county) FROM table_14925084_1 WHERE area_1961__statute_acres_ = 176694</s>
{ "answer": "SELECT COUNT(administrative_county) FROM table_14925084_1 WHERE area_1961__statute_acres_ = 176694", "context": "CREATE TABLE table_14925084_1 (administrative_county VARCHAR, area_1961__statute_acres_ VARCHAR)", "question": "Name the number of administrative county for area 1961 and 176694" }
### QUESTION Name the number of week for game site being memorial stadium for buffalo bills ### CONTEXT CREATE TABLE table_14940519_1 (week VARCHAR, game_site VARCHAR, opponent VARCHAR) ### ANSWER SELECT COUNT(week) FROM table_14940519_1 WHERE game_site = "Memorial Stadium" AND opponent = "Buffalo Bills"</s>
{ "answer": "SELECT COUNT(week) FROM table_14940519_1 WHERE game_site = \"Memorial Stadium\" AND opponent = \"Buffalo Bills\"", "context": "CREATE TABLE table_14940519_1 (week VARCHAR, game_site VARCHAR, opponent VARCHAR)", "question": "Name the number of week for game site being memorial stadium for buffalo bills" }
### QUESTION What school has more than 533 enrolled and is an IHSAA Football Class of aa? ### CONTEXT CREATE TABLE table_name_27 (school VARCHAR, enrollment VARCHAR, ihsaa_football_class VARCHAR) ### ANSWER SELECT school FROM table_name_27 WHERE enrollment > 533 AND ihsaa_football_class = "aa"</s>
{ "answer": "SELECT school FROM table_name_27 WHERE enrollment > 533 AND ihsaa_football_class = \"aa\"", "context": "CREATE TABLE table_name_27 (school VARCHAR, enrollment VARCHAR, ihsaa_football_class VARCHAR)", "question": "What school has more than 533 enrolled and is an IHSAA Football Class of aa?" }
### QUESTION What is the lowest apps for rank 3 and 0% wins? ### CONTEXT CREATE TABLE table_name_33 (apps INTEGER, rank VARCHAR, win__percentage VARCHAR) ### ANSWER SELECT MIN(apps) FROM table_name_33 WHERE rank = 3 AND win__percentage < 0</s>
{ "answer": "SELECT MIN(apps) FROM table_name_33 WHERE rank = 3 AND win__percentage < 0", "context": "CREATE TABLE table_name_33 (apps INTEGER, rank VARCHAR, win__percentage VARCHAR)", "question": "What is the lowest apps for rank 3 and 0% wins?" }
### QUESTION What's the size of Centerville in 89 Wayne county with an IHSAA class of AA in the year before 1974? ### CONTEXT CREATE TABLE table_name_61 (size VARCHAR, school VARCHAR, _number___county VARCHAR, year_joined VARCHAR, ihsaa_class VARCHAR) ### ANSWER SELECT size FROM table_name_61 WHERE year_joined < 1974 AND ihsaa_class = "aa" AND _number___county = "89 wayne" AND school = "centerville"</s>
{ "answer": "SELECT size FROM table_name_61 WHERE year_joined < 1974 AND ihsaa_class = \"aa\" AND _number___county = \"89 wayne\" AND school = \"centerville\"", "context": "CREATE TABLE table_name_61 (size VARCHAR, school VARCHAR, _number___county VARCHAR, year_joined VARCHAR, ihsaa_class VARCHAR)", "question": "What's the size of Centerville in 89 Wayne county with an IHSAA class of AA in the year before 1974?" }
### QUESTION What's the year that Hagerstown joined? ### CONTEXT CREATE TABLE table_name_66 (year_joined VARCHAR, school VARCHAR) ### ANSWER SELECT year_joined FROM table_name_66 WHERE school = "hagerstown"</s>
{ "answer": "SELECT year_joined FROM table_name_66 WHERE school = \"hagerstown\"", "context": "CREATE TABLE table_name_66 (year_joined VARCHAR, school VARCHAR)", "question": "What's the year that Hagerstown joined?" }
### QUESTION What's the previous conference of Fountain City with a size more than 287? ### CONTEXT CREATE TABLE table_name_88 (previous_conference VARCHAR, size VARCHAR, location VARCHAR) ### ANSWER SELECT previous_conference FROM table_name_88 WHERE size > 287 AND location = "fountain city"</s>
{ "answer": "SELECT previous_conference FROM table_name_88 WHERE size > 287 AND location = \"fountain city\"", "context": "CREATE TABLE table_name_88 (previous_conference VARCHAR, size VARCHAR, location VARCHAR)", "question": "What's the previous conference of Fountain City with a size more than 287?" }
### QUESTION What is the highest ff when solo is 56? ### CONTEXT CREATE TABLE table_26176081_29 (ff INTEGER, solo VARCHAR) ### ANSWER SELECT MAX(ff) FROM table_26176081_29 WHERE solo = 56</s>
{ "answer": "SELECT MAX(ff) FROM table_26176081_29 WHERE solo = 56", "context": "CREATE TABLE table_26176081_29 (ff INTEGER, solo VARCHAR)", "question": "What is the highest ff when solo is 56?" }
### QUESTION Name the artist of 2 draw ### CONTEXT CREATE TABLE table_14977252_2 (artist VARCHAR, draw VARCHAR) ### ANSWER SELECT artist FROM table_14977252_2 WHERE draw = 2</s>
{ "answer": "SELECT artist FROM table_14977252_2 WHERE draw = 2", "context": "CREATE TABLE table_14977252_2 (artist VARCHAR, draw VARCHAR)", "question": "Name the artist of 2 draw" }
### QUESTION When was the original air date written by michael s. chernuchin & joe morgenstern? ### CONTEXT CREATE TABLE table_2618072_1 (original_air_date VARCHAR, written_by VARCHAR) ### ANSWER SELECT original_air_date FROM table_2618072_1 WHERE written_by = "Michael S. Chernuchin & Joe Morgenstern"</s>
{ "answer": "SELECT original_air_date FROM table_2618072_1 WHERE written_by = \"Michael S. Chernuchin & Joe Morgenstern\"", "context": "CREATE TABLE table_2618072_1 (original_air_date VARCHAR, written_by VARCHAR)", "question": "When was the original air date written by michael s. chernuchin & joe morgenstern?" }
### QUESTION How many titles have directors of matthew Penn and number in series of 143? ### CONTEXT CREATE TABLE table_2618119_1 (title VARCHAR, directed_by VARCHAR, no_in_series VARCHAR) ### ANSWER SELECT COUNT(title) FROM table_2618119_1 WHERE directed_by = "Matthew Penn" AND no_in_series = 143</s>
{ "answer": "SELECT COUNT(title) FROM table_2618119_1 WHERE directed_by = \"Matthew Penn\" AND no_in_series = 143", "context": "CREATE TABLE table_2618119_1 (title VARCHAR, directed_by VARCHAR, no_in_series VARCHAR)", "question": "How many titles have directors of matthew Penn and number in series of 143?" }
### QUESTION Which player's results were T6 in the PGA Ch., T4 in the Masters and T8 at the U.S. Open? ### CONTEXT CREATE TABLE table_1506950_9 (player VARCHAR, us_open VARCHAR, pga_ch VARCHAR, masters VARCHAR) ### ANSWER SELECT player FROM table_1506950_9 WHERE pga_ch = "T6" AND masters = "T4" AND us_open = "T8"</s>
{ "answer": "SELECT player FROM table_1506950_9 WHERE pga_ch = \"T6\" AND masters = \"T4\" AND us_open = \"T8\"", "context": "CREATE TABLE table_1506950_9 (player VARCHAR, us_open VARCHAR, pga_ch VARCHAR, masters VARCHAR)", "question": "Which player's results were T6 in the PGA Ch., T4 in the Masters and T8 at the U.S. Open?" }
### QUESTION How many provinces have evening gown score of 8.49 ### CONTEXT CREATE TABLE table_15081939_4 (province VARCHAR, evening_gown VARCHAR) ### ANSWER SELECT COUNT(province) FROM table_15081939_4 WHERE evening_gown = "8.49"</s>
{ "answer": "SELECT COUNT(province) FROM table_15081939_4 WHERE evening_gown = \"8.49\"", "context": "CREATE TABLE table_15081939_4 (province VARCHAR, evening_gown VARCHAR)", "question": "How many provinces have evening gown score of 8.49" }
### QUESTION in electorate of 83850 what is the minimum s split vote ### CONTEXT CREATE TABLE table_15082102_3 (s_spoilt_vote INTEGER, electorate VARCHAR) ### ANSWER SELECT MIN(s_spoilt_vote) FROM table_15082102_3 WHERE electorate = 83850</s>
{ "answer": "SELECT MIN(s_spoilt_vote) FROM table_15082102_3 WHERE electorate = 83850", "context": "CREATE TABLE table_15082102_3 (s_spoilt_vote INTEGER, electorate VARCHAR)", "question": "in electorate of 83850 what is the minimum s split vote" }
### QUESTION When the division is Division 2 men what is the champion score? ### CONTEXT CREATE TABLE table_15161170_1 (champion_score VARCHAR, division VARCHAR) ### ANSWER SELECT champion_score FROM table_15161170_1 WHERE division = "division 2 Men"</s>
{ "answer": "SELECT champion_score FROM table_15161170_1 WHERE division = \"division 2 Men\"", "context": "CREATE TABLE table_15161170_1 (champion_score VARCHAR, division VARCHAR)", "question": "When the division is Division 2 men what is the champion score?" }
### QUESTION What is every institution with the nickname of Quakers? ### CONTEXT CREATE TABLE table_261954_1 (institution VARCHAR, nickname VARCHAR) ### ANSWER SELECT institution FROM table_261954_1 WHERE nickname = "Quakers"</s>
{ "answer": "SELECT institution FROM table_261954_1 WHERE nickname = \"Quakers\"", "context": "CREATE TABLE table_261954_1 (institution VARCHAR, nickname VARCHAR)", "question": "What is every institution with the nickname of Quakers?" }
### QUESTION What event has european championships as the tournament, with 2006 as the year? ### CONTEXT CREATE TABLE table_name_61 (event VARCHAR, tournament VARCHAR, year VARCHAR) ### ANSWER SELECT event FROM table_name_61 WHERE tournament = "european championships" AND year = 2006</s>
{ "answer": "SELECT event FROM table_name_61 WHERE tournament = \"european championships\" AND year = 2006", "context": "CREATE TABLE table_name_61 (event VARCHAR, tournament VARCHAR, year VARCHAR)", "question": "What event has european championships as the tournament, with 2006 as the year?" }
### QUESTION What is the highest rank for the team of egypt? ### CONTEXT CREATE TABLE table_name_58 (rank INTEGER, country VARCHAR) ### ANSWER SELECT MAX(rank) FROM table_name_58 WHERE country = "egypt"</s>
{ "answer": "SELECT MAX(rank) FROM table_name_58 WHERE country = \"egypt\"", "context": "CREATE TABLE table_name_58 (rank INTEGER, country VARCHAR)", "question": "What is the highest rank for the team of egypt?" }
### QUESTION Who won the race at Magny-Cours ### CONTEXT CREATE TABLE table_15187794_1 (race_winner VARCHAR, circuit VARCHAR) ### ANSWER SELECT race_winner FROM table_15187794_1 WHERE circuit = "Magny-Cours"</s>
{ "answer": "SELECT race_winner FROM table_15187794_1 WHERE circuit = \"Magny-Cours\"", "context": "CREATE TABLE table_15187794_1 (race_winner VARCHAR, circuit VARCHAR)", "question": "Who won the race at Magny-Cours" }
### QUESTION How many losses does Toronto Downtown Dingos have? ### CONTEXT CREATE TABLE table_26200568_16 (losses VARCHAR, club VARCHAR) ### ANSWER SELECT losses FROM table_26200568_16 WHERE club = "Toronto Downtown Dingos"</s>
{ "answer": "SELECT losses FROM table_26200568_16 WHERE club = \"Toronto Downtown Dingos\"", "context": "CREATE TABLE table_26200568_16 (losses VARCHAR, club VARCHAR)", "question": "How many losses does Toronto Downtown Dingos have?" }
### QUESTION What is the voltage range (v) if the clock multiplier is 3x or 2x mode and part number is a80486dx4wb-100? ### CONTEXT CREATE TABLE table_15261_1 (voltage_range__v_ VARCHAR, clock_multiplier VARCHAR, part_number VARCHAR) ### ANSWER SELECT COUNT(voltage_range__v_) FROM table_15261_1 WHERE clock_multiplier = "3X or 2X mode" AND part_number = "A80486DX4WB-100"</s>
{ "answer": "SELECT COUNT(voltage_range__v_) FROM table_15261_1 WHERE clock_multiplier = \"3X or 2X mode\" AND part_number = \"A80486DX4WB-100\"", "context": "CREATE TABLE table_15261_1 (voltage_range__v_ VARCHAR, clock_multiplier VARCHAR, part_number VARCHAR)", "question": "What is the voltage range (v) if the clock multiplier is 3x or 2x mode and part number is a80486dx4wb-100?" }
### QUESTION What is the clock multiplier if the voltage range (v) is 3.3 - 3.6; input clock (mhz) is 33 x 3 / 50 x 2; and part number is a80486dx4-100? ### CONTEXT CREATE TABLE table_15261_1 (clock_multiplier VARCHAR, part_number VARCHAR, voltage_range__v_ VARCHAR, input_clock__mhz_ VARCHAR) ### ANSWER SELECT clock_multiplier FROM table_15261_1 WHERE voltage_range__v_ = "3.3 - 3.6" AND input_clock__mhz_ = "33 X 3 / 50 X 2" AND part_number = "A80486DX4-100"</s>
{ "answer": "SELECT clock_multiplier FROM table_15261_1 WHERE voltage_range__v_ = \"3.3 - 3.6\" AND input_clock__mhz_ = \"33 X 3 / 50 X 2\" AND part_number = \"A80486DX4-100\"", "context": "CREATE TABLE table_15261_1 (clock_multiplier VARCHAR, part_number VARCHAR, voltage_range__v_ VARCHAR, input_clock__mhz_ VARCHAR)", "question": "What is the clock multiplier if the voltage range (v) is 3.3 - 3.6; input clock (mhz) is 33 x 3 / 50 x 2; and part number is a80486dx4-100?" }
### QUESTION How many times is player Stanislas Wawrinka on the list? ### CONTEXT CREATE TABLE table_26218783_6 (points VARCHAR, player VARCHAR) ### ANSWER SELECT COUNT(points) AS defending FROM table_26218783_6 WHERE player = "Stanislas Wawrinka"</s>
{ "answer": "SELECT COUNT(points) AS defending FROM table_26218783_6 WHERE player = \"Stanislas Wawrinka\"", "context": "CREATE TABLE table_26218783_6 (points VARCHAR, player VARCHAR)", "question": "How many times is player Stanislas Wawrinka on the list?" }
### QUESTION What is the total for Robert Stanescu ( rou ), when the B Score is larger than 8.75? ### CONTEXT CREATE TABLE table_name_40 (total INTEGER, gymnast VARCHAR, b_score VARCHAR) ### ANSWER SELECT SUM(total) FROM table_name_40 WHERE gymnast = "robert stanescu ( rou )" AND b_score > 8.75</s>
{ "answer": "SELECT SUM(total) FROM table_name_40 WHERE gymnast = \"robert stanescu ( rou )\" AND b_score > 8.75", "context": "CREATE TABLE table_name_40 (total INTEGER, gymnast VARCHAR, b_score VARCHAR)", "question": "What is the total for Robert Stanescu ( rou ), when the B Score is larger than 8.75?" }
### QUESTION Which college did Dean Kirkland go to ### CONTEXT CREATE TABLE table_15353123_1 (college VARCHAR, player VARCHAR) ### ANSWER SELECT college FROM table_15353123_1 WHERE player = "Dean Kirkland"</s>
{ "answer": "SELECT college FROM table_15353123_1 WHERE player = \"Dean Kirkland\"", "context": "CREATE TABLE table_15353123_1 (college VARCHAR, player VARCHAR)", "question": "Which college did Dean Kirkland go to" }
### QUESTION Which episodes in season 3 were written by Mark Drop? ### CONTEXT CREATE TABLE table_2623498_4 (Season VARCHAR, written_by VARCHAR) ### ANSWER SELECT Season AS episode__number FROM table_2623498_4 WHERE written_by = "Mark Drop"</s>
{ "answer": "SELECT Season AS episode__number FROM table_2623498_4 WHERE written_by = \"Mark Drop\"", "context": "CREATE TABLE table_2623498_4 (Season VARCHAR, written_by VARCHAR)", "question": "Which episodes in season 3 were written by Mark Drop?" }
### QUESTION How many metropolitan boroughs have dorridge as a station? ### CONTEXT CREATE TABLE table_15366849_1 (c_ VARCHAR, metropolitan_borough_ VARCHAR, station VARCHAR) ### ANSWER SELECT COUNT(metropolitan_borough_)[c_] FROM table_15366849_1 WHERE station = "Dorridge"</s>
{ "answer": "SELECT COUNT(metropolitan_borough_)[c_] FROM table_15366849_1 WHERE station = \"Dorridge\"", "context": "CREATE TABLE table_15366849_1 (c_ VARCHAR, metropolitan_borough_ VARCHAR, station VARCHAR)", "question": "How many metropolitan boroughs have dorridge as a station?" }
### QUESTION What's the bronze count for South Africa (RSA) with a total more than 16? ### CONTEXT CREATE TABLE table_name_64 (bronze INTEGER, nation VARCHAR, total VARCHAR) ### ANSWER SELECT MAX(bronze) FROM table_name_64 WHERE nation = "south africa (rsa)" AND total > 16</s>
{ "answer": "SELECT MAX(bronze) FROM table_name_64 WHERE nation = \"south africa (rsa)\" AND total > 16", "context": "CREATE TABLE table_name_64 (bronze INTEGER, nation VARCHAR, total VARCHAR)", "question": "What's the bronze count for South Africa (RSA) with a total more than 16?" }
### QUESTION What is the average election result for the province of Grosseto from 1766 and prior? ### CONTEXT CREATE TABLE table_name_50 (election INTEGER, province VARCHAR, established VARCHAR) ### ANSWER SELECT AVG(election) FROM table_name_50 WHERE province = "grosseto" AND established < 1766</s>
{ "answer": "SELECT AVG(election) FROM table_name_50 WHERE province = \"grosseto\" AND established < 1766", "context": "CREATE TABLE table_name_50 (election INTEGER, province VARCHAR, established VARCHAR)", "question": "What is the average election result for the province of Grosseto from 1766 and prior?" }
### QUESTION What is the total number of all bills co-sponsored associated with all amendments sponsored under 15, all bills sponsored of 6, and 0 amendments cosponsored? ### CONTEXT CREATE TABLE table_name_80 (all_bills_cosponsored VARCHAR, all_amendments_cosponsored VARCHAR, all_amendments_sponsored VARCHAR, all_bills_sponsored VARCHAR) ### ANSWER SELECT COUNT(all_bills_cosponsored) FROM table_name_80 WHERE all_amendments_sponsored < 15 AND all_bills_sponsored = 6 AND all_amendments_cosponsored < 0</s>
{ "answer": "SELECT COUNT(all_bills_cosponsored) FROM table_name_80 WHERE all_amendments_sponsored < 15 AND all_bills_sponsored = 6 AND all_amendments_cosponsored < 0", "context": "CREATE TABLE table_name_80 (all_bills_cosponsored VARCHAR, all_amendments_cosponsored VARCHAR, all_amendments_sponsored VARCHAR, all_bills_sponsored VARCHAR)", "question": "What is the total number of all bills co-sponsored associated with all amendments sponsored under 15, all bills sponsored of 6, and 0 amendments cosponsored?" }
### QUESTION what is the old English name of Saturday? ### CONTEXT CREATE TABLE table_2624098_1 (old_english_day_name VARCHAR, modern_english_day_name VARCHAR) ### ANSWER SELECT old_english_day_name FROM table_2624098_1 WHERE modern_english_day_name = "Saturday"</s>
{ "answer": "SELECT old_english_day_name FROM table_2624098_1 WHERE modern_english_day_name = \"Saturday\"", "context": "CREATE TABLE table_2624098_1 (old_english_day_name VARCHAR, modern_english_day_name VARCHAR)", "question": "what is the old English name of Saturday? " }
### QUESTION what is the English meaning of the old English name "sæturnesdæg"? ### CONTEXT CREATE TABLE table_2624098_1 (english_day_name_meaning VARCHAR, old_english_day_name VARCHAR) ### ANSWER SELECT english_day_name_meaning FROM table_2624098_1 WHERE old_english_day_name = "Sæturnesdæg"</s>
{ "answer": "SELECT english_day_name_meaning FROM table_2624098_1 WHERE old_english_day_name = \"Sæturnesdæg\"", "context": "CREATE TABLE table_2624098_1 (english_day_name_meaning VARCHAR, old_english_day_name VARCHAR)", "question": "what is the English meaning of the old English name \"sæturnesdæg\"?" }
### QUESTION how many different meanings does Wednesday have? ### CONTEXT CREATE TABLE table_2624098_1 (english_day_name_meaning VARCHAR, modern_english_day_name VARCHAR) ### ANSWER SELECT COUNT(english_day_name_meaning) FROM table_2624098_1 WHERE modern_english_day_name = "Wednesday"</s>
{ "answer": "SELECT COUNT(english_day_name_meaning) FROM table_2624098_1 WHERE modern_english_day_name = \"Wednesday\"", "context": "CREATE TABLE table_2624098_1 (english_day_name_meaning VARCHAR, modern_english_day_name VARCHAR)", "question": "how many different meanings does Wednesday have?" }
### QUESTION What is the fewest amendments sponsored associated with 150 bills originally cosponsored and over 247 bills cosponsored? ### CONTEXT CREATE TABLE table_name_52 (all_amendments_sponsored INTEGER, bills_originally_cosponsored VARCHAR, all_bills_cosponsored VARCHAR) ### ANSWER SELECT MIN(all_amendments_sponsored) FROM table_name_52 WHERE bills_originally_cosponsored = 150 AND all_bills_cosponsored > 247</s>
{ "answer": "SELECT MIN(all_amendments_sponsored) FROM table_name_52 WHERE bills_originally_cosponsored = 150 AND all_bills_cosponsored > 247", "context": "CREATE TABLE table_name_52 (all_amendments_sponsored INTEGER, bills_originally_cosponsored VARCHAR, all_bills_cosponsored VARCHAR)", "question": "What is the fewest amendments sponsored associated with 150 bills originally cosponsored and over 247 bills cosponsored?" }
### QUESTION Which station is from China and has a frequency of 684khz? ### CONTEXT CREATE TABLE table_name_79 (station VARCHAR, country_of_origin VARCHAR, frequency VARCHAR) ### ANSWER SELECT station FROM table_name_79 WHERE country_of_origin = "china" AND frequency = "684khz"</s>
{ "answer": "SELECT station FROM table_name_79 WHERE country_of_origin = \"china\" AND frequency = \"684khz\"", "context": "CREATE TABLE table_name_79 (station VARCHAR, country_of_origin VARCHAR, frequency VARCHAR)", "question": "Which station is from China and has a frequency of 684khz?" }
### QUESTION Name the name of the state ### CONTEXT CREATE TABLE table_15463188_7 (name VARCHAR, school_club_team VARCHAR) ### ANSWER SELECT name FROM table_15463188_7 WHERE school_club_team = "State"</s>
{ "answer": "SELECT name FROM table_15463188_7 WHERE school_club_team = \"State\"", "context": "CREATE TABLE table_15463188_7 (name VARCHAR, school_club_team VARCHAR)", "question": "Name the name of the state" }
### QUESTION Name the points for pontrhydyfen rfc ### CONTEXT CREATE TABLE table_15467476_2 (points VARCHAR, club VARCHAR) ### ANSWER SELECT points FROM table_15467476_2 WHERE club = "Pontrhydyfen RFC"</s>
{ "answer": "SELECT points FROM table_15467476_2 WHERE club = \"Pontrhydyfen RFC\"", "context": "CREATE TABLE table_15467476_2 (points VARCHAR, club VARCHAR)", "question": "Name the points for pontrhydyfen rfc" }
### QUESTION How many debut years have Years at club of 1950–1951, and Games larger than 14? ### CONTEXT CREATE TABLE table_name_39 (debut_year INTEGER, years_at_club VARCHAR, games VARCHAR) ### ANSWER SELECT SUM(debut_year) FROM table_name_39 WHERE years_at_club = "1950–1951" AND games > 14</s>
{ "answer": "SELECT SUM(debut_year) FROM table_name_39 WHERE years_at_club = \"1950–1951\" AND games > 14", "context": "CREATE TABLE table_name_39 (debut_year INTEGER, years_at_club VARCHAR, games VARCHAR)", "question": "How many debut years have Years at club of 1950–1951, and Games larger than 14?" }
### QUESTION What was the latest year of release for the greatest hits title? ### CONTEXT CREATE TABLE table_name_71 (year_of_release INTEGER, title VARCHAR) ### ANSWER SELECT MAX(year_of_release) FROM table_name_71 WHERE title = "greatest hits"</s>
{ "answer": "SELECT MAX(year_of_release) FROM table_name_71 WHERE title = \"greatest hits\"", "context": "CREATE TABLE table_name_71 (year_of_release INTEGER, title VARCHAR)", "question": "What was the latest year of release for the greatest hits title?" }
### QUESTION what is the latitude when water (sqmi) is 0.058 and the ansi code is less than 1759683? ### CONTEXT CREATE TABLE table_name_57 (latitude INTEGER, water__sqmi_ VARCHAR, ansi_code VARCHAR) ### ANSWER SELECT AVG(latitude) FROM table_name_57 WHERE water__sqmi_ = 0.058 AND ansi_code < 1759683</s>
{ "answer": "SELECT AVG(latitude) FROM table_name_57 WHERE water__sqmi_ = 0.058 AND ansi_code < 1759683", "context": "CREATE TABLE table_name_57 (latitude INTEGER, water__sqmi_ VARCHAR, ansi_code VARCHAR)", "question": "what is the latitude when water (sqmi) is 0.058 and the ansi code is less than 1759683?" }
### QUESTION The original artist The Temptations has what week #? ### CONTEXT CREATE TABLE table_26250253_1 (week__number VARCHAR, original_artist VARCHAR) ### ANSWER SELECT week__number FROM table_26250253_1 WHERE original_artist = "The Temptations"</s>
{ "answer": "SELECT week__number FROM table_26250253_1 WHERE original_artist = \"The Temptations\"", "context": "CREATE TABLE table_26250253_1 (week__number VARCHAR, original_artist VARCHAR)", "question": "The original artist The Temptations has what week #?" }
### QUESTION What is the latest number of the guard position from the Wake Forest school team? ### CONTEXT CREATE TABLE table_15621965_17 (no INTEGER, position VARCHAR, school_club_team VARCHAR) ### ANSWER SELECT MAX(no) FROM table_15621965_17 WHERE position = "Guard" AND school_club_team = "Wake Forest"</s>
{ "answer": "SELECT MAX(no) FROM table_15621965_17 WHERE position = \"Guard\" AND school_club_team = \"Wake Forest\"", "context": "CREATE TABLE table_15621965_17 (no INTEGER, position VARCHAR, school_club_team VARCHAR)", "question": "What is the latest number of the guard position from the Wake Forest school team?" }
### QUESTION Name the founded for school closed in 2005 ### CONTEXT CREATE TABLE table_262505_1 (founded VARCHAR, current_conference VARCHAR) ### ANSWER SELECT founded FROM table_262505_1 WHERE current_conference = "school closed in 2005"</s>
{ "answer": "SELECT founded FROM table_262505_1 WHERE current_conference = \"school closed in 2005\"", "context": "CREATE TABLE table_262505_1 (founded VARCHAR, current_conference VARCHAR)", "question": "Name the founded for school closed in 2005" }
### QUESTION WHAT WAS THE JERSEY NUMBER OF THE ROSTER PLAYER FROM OKLAHOMA STATE WHO PLAYED GUARD? ### CONTEXT CREATE TABLE table_15621965_18 (no VARCHAR, position VARCHAR, school_club_team VARCHAR) ### ANSWER SELECT no FROM table_15621965_18 WHERE position = "Guard" AND school_club_team = "Oklahoma State"</s>
{ "answer": "SELECT no FROM table_15621965_18 WHERE position = \"Guard\" AND school_club_team = \"Oklahoma State\"", "context": "CREATE TABLE table_15621965_18 (no VARCHAR, position VARCHAR, school_club_team VARCHAR)", "question": "WHAT WAS THE JERSEY NUMBER OF THE ROSTER PLAYER FROM OKLAHOMA STATE WHO PLAYED GUARD?" }
### QUESTION What is the catalog number of Venus Demilo's A-side? ### CONTEXT CREATE TABLE table_name_30 (catalog_number VARCHAR, a_side VARCHAR) ### ANSWER SELECT catalog_number FROM table_name_30 WHERE a_side = "venus demilo"</s>
{ "answer": "SELECT catalog_number FROM table_name_30 WHERE a_side = \"venus demilo\"", "context": "CREATE TABLE table_name_30 (catalog_number VARCHAR, a_side VARCHAR)", "question": "What is the catalog number of Venus Demilo's A-side?" }
### QUESTION how many series have production code 8acx05 ### CONTEXT CREATE TABLE table_26259391_1 (no_in_series VARCHAR, production_code VARCHAR) ### ANSWER SELECT no_in_series FROM table_26259391_1 WHERE production_code = "8ACX05"</s>
{ "answer": "SELECT no_in_series FROM table_26259391_1 WHERE production_code = \"8ACX05\"", "context": "CREATE TABLE table_26259391_1 (no_in_series VARCHAR, production_code VARCHAR)", "question": "how many series have production code 8acx05" }
### QUESTION Name the centerfold model when interview subject is steve jobs ### CONTEXT CREATE TABLE table_1566848_6 (centerfold_model VARCHAR, interview_subject VARCHAR) ### ANSWER SELECT centerfold_model FROM table_1566848_6 WHERE interview_subject = "Steve Jobs"</s>
{ "answer": "SELECT centerfold_model FROM table_1566848_6 WHERE interview_subject = \"Steve Jobs\"", "context": "CREATE TABLE table_1566848_6 (centerfold_model VARCHAR, interview_subject VARCHAR)", "question": "Name the centerfold model when interview subject is steve jobs" }
### QUESTION How many sprints classifications were associated with an overall winner of Joaquin Rodriguez? ### CONTEXT CREATE TABLE table_26257223_13 (sprints_classification VARCHAR, winner VARCHAR) ### ANSWER SELECT COUNT(sprints_classification) FROM table_26257223_13 WHERE winner = "Joaquin Rodriguez"</s>
{ "answer": "SELECT COUNT(sprints_classification) FROM table_26257223_13 WHERE winner = \"Joaquin Rodriguez\"", "context": "CREATE TABLE table_26257223_13 (sprints_classification VARCHAR, winner VARCHAR)", "question": "How many sprints classifications were associated with an overall winner of Joaquin Rodriguez?" }
### QUESTION Who led team classification during the stage whose winner was Chris Horner? ### CONTEXT CREATE TABLE table_26257223_13 (team_classification VARCHAR, winner VARCHAR) ### ANSWER SELECT team_classification FROM table_26257223_13 WHERE winner = "Chris Horner"</s>
{ "answer": "SELECT team_classification FROM table_26257223_13 WHERE winner = \"Chris Horner\"", "context": "CREATE TABLE table_26257223_13 (team_classification VARCHAR, winner VARCHAR)", "question": "Who led team classification during the stage whose winner was Chris Horner?" }
### QUESTION Who led sprints classification when Chris Horner led general classification? ### CONTEXT CREATE TABLE table_26257223_13 (sprints_classification VARCHAR, general_classification VARCHAR) ### ANSWER SELECT sprints_classification FROM table_26257223_13 WHERE general_classification = "Chris Horner"</s>
{ "answer": "SELECT sprints_classification FROM table_26257223_13 WHERE general_classification = \"Chris Horner\"", "context": "CREATE TABLE table_26257223_13 (sprints_classification VARCHAR, general_classification VARCHAR)", "question": "Who led sprints classification when Chris Horner led general classification?" }
### QUESTION How many winning constructor catagories are there when Mark Webber had the fastest lap? ### CONTEXT CREATE TABLE table_26258348_4 (winning_constructor VARCHAR, fastest_lap VARCHAR) ### ANSWER SELECT COUNT(winning_constructor) FROM table_26258348_4 WHERE fastest_lap = "Mark Webber"</s>
{ "answer": "SELECT COUNT(winning_constructor) FROM table_26258348_4 WHERE fastest_lap = \"Mark Webber\"", "context": "CREATE TABLE table_26258348_4 (winning_constructor VARCHAR, fastest_lap VARCHAR)", "question": "How many winning constructor catagories are there when Mark Webber had the fastest lap? " }
### QUESTION What is the release price for the GPU frequency of standard power, embedded? ### CONTEXT CREATE TABLE table_name_96 (release_price___usd__ VARCHAR, gpu_frequency VARCHAR) ### ANSWER SELECT release_price___usd__ FROM table_name_96 WHERE gpu_frequency = "standard power, embedded"</s>
{ "answer": "SELECT release_price___usd__ FROM table_name_96 WHERE gpu_frequency = \"standard power, embedded\"", "context": "CREATE TABLE table_name_96 (release_price___usd__ VARCHAR, gpu_frequency VARCHAR)", "question": "What is the release price for the GPU frequency of standard power, embedded?" }
### QUESTION What is the enrollment for the institution that is located in Lebanon, Tennessee (20,235)? ### CONTEXT CREATE TABLE table_262534_2 (enrollment VARCHAR, location__population_ VARCHAR) ### ANSWER SELECT enrollment FROM table_262534_2 WHERE location__population_ = "Lebanon, Tennessee (20,235)"</s>
{ "answer": "SELECT enrollment FROM table_262534_2 WHERE location__population_ = \"Lebanon, Tennessee (20,235)\"", "context": "CREATE TABLE table_262534_2 (enrollment VARCHAR, location__population_ VARCHAR)", "question": "What is the enrollment for the institution that is located in Lebanon, Tennessee (20,235)?" }
### QUESTION Crawley Town as the home team has what as the tie no? ### CONTEXT CREATE TABLE table_name_77 (tie_no VARCHAR, home_team VARCHAR) ### ANSWER SELECT tie_no FROM table_name_77 WHERE home_team = "crawley town"</s>
{ "answer": "SELECT tie_no FROM table_name_77 WHERE home_team = \"crawley town\"", "context": "CREATE TABLE table_name_77 (tie_no VARCHAR, home_team VARCHAR)", "question": "Crawley Town as the home team has what as the tie no?" }
### QUESTION On what date is the winning team Abt Sportsline and pole position Mattias Ekström in the Circuit Ricardo Tormo , Valencia? ### CONTEXT CREATE TABLE table_26267607_2 (date VARCHAR, circuit VARCHAR, winning_team VARCHAR, pole_position VARCHAR) ### ANSWER SELECT date FROM table_26267607_2 WHERE winning_team = "Abt Sportsline" AND pole_position = "Mattias Ekström" AND circuit = "circuit Ricardo Tormo , Valencia"</s>
{ "answer": "SELECT date FROM table_26267607_2 WHERE winning_team = \"Abt Sportsline\" AND pole_position = \"Mattias Ekström\" AND circuit = \"circuit Ricardo Tormo , Valencia\"", "context": "CREATE TABLE table_26267607_2 (date VARCHAR, circuit VARCHAR, winning_team VARCHAR, pole_position VARCHAR)", "question": "On what date is the winning team Abt Sportsline and pole position Mattias Ekström in the Circuit Ricardo Tormo , Valencia?" }
### QUESTION Where the fastest lap is Mike Rockenfeller, who is the winning driver? ### CONTEXT CREATE TABLE table_26267607_2 (winning_driver VARCHAR, fastest_lap VARCHAR) ### ANSWER SELECT winning_driver FROM table_26267607_2 WHERE fastest_lap = "Mike Rockenfeller"</s>
{ "answer": "SELECT winning_driver FROM table_26267607_2 WHERE fastest_lap = \"Mike Rockenfeller\"", "context": "CREATE TABLE table_26267607_2 (winning_driver VARCHAR, fastest_lap VARCHAR)", "question": "Where the fastest lap is Mike Rockenfeller, who is the winning driver?" }
### QUESTION WHERE THE WEEK NUMBER WAS TOP 8, WHAT WAS THE THEME? ### CONTEXT CREATE TABLE table_15778392_1 (theme VARCHAR, week__number VARCHAR) ### ANSWER SELECT theme FROM table_15778392_1 WHERE week__number = "Top 8"</s>
{ "answer": "SELECT theme FROM table_15778392_1 WHERE week__number = \"Top 8\"", "context": "CREATE TABLE table_15778392_1 (theme VARCHAR, week__number VARCHAR)", "question": "WHERE THE WEEK NUMBER WAS TOP 8, WHAT WAS THE THEME?" }
### QUESTION From what series is Peck Up Your Troubles? ### CONTEXT CREATE TABLE table_name_66 (series VARCHAR, title VARCHAR) ### ANSWER SELECT series FROM table_name_66 WHERE title = "peck up your troubles"</s>
{ "answer": "SELECT series FROM table_name_66 WHERE title = \"peck up your troubles\"", "context": "CREATE TABLE table_name_66 (series VARCHAR, title VARCHAR)", "question": "From what series is Peck Up Your Troubles?" }
### QUESTION Name for the high rebounds when score is w 105–91 (ot) ### CONTEXT CREATE TABLE table_15780718_6 (high_rebounds VARCHAR, score VARCHAR) ### ANSWER SELECT high_rebounds FROM table_15780718_6 WHERE score = "W 105–91 (OT)"</s>
{ "answer": "SELECT high_rebounds FROM table_15780718_6 WHERE score = \"W 105–91 (OT)\"", "context": "CREATE TABLE table_15780718_6 (high_rebounds VARCHAR, score VARCHAR)", "question": "Name for the high rebounds when score is w 105–91 (ot)" }
### QUESTION Who was the participant or recipient for the Best Female Actor? ### CONTEXT CREATE TABLE table_26282750_1 (participants_recipients VARCHAR, category VARCHAR) ### ANSWER SELECT participants_recipients FROM table_26282750_1 WHERE category = "Best Female Actor"</s>
{ "answer": "SELECT participants_recipients FROM table_26282750_1 WHERE category = \"Best Female Actor\"", "context": "CREATE TABLE table_26282750_1 (participants_recipients VARCHAR, category VARCHAR)", "question": "Who was the participant or recipient for the Best Female Actor?" }
### QUESTION What film festival had the Best Male Actor? ### CONTEXT CREATE TABLE table_26282750_1 (film_festival VARCHAR, category VARCHAR) ### ANSWER SELECT film_festival FROM table_26282750_1 WHERE category = "Best Male Actor"</s>
{ "answer": "SELECT film_festival FROM table_26282750_1 WHERE category = \"Best Male Actor\"", "context": "CREATE TABLE table_26282750_1 (film_festival VARCHAR, category VARCHAR)", "question": "What film festival had the Best Male Actor?" }
### QUESTION What is the smallest number of European Parliament sets when the international affiliation is global greens, egp? ### CONTEXT CREATE TABLE table_158282_1 (european_parliament_seats INTEGER, international_affiliation VARCHAR) ### ANSWER SELECT MIN(european_parliament_seats) FROM table_158282_1 WHERE international_affiliation = "Global Greens, EGP"</s>
{ "answer": "SELECT MIN(european_parliament_seats) FROM table_158282_1 WHERE international_affiliation = \"Global Greens, EGP\"", "context": "CREATE TABLE table_158282_1 (european_parliament_seats INTEGER, international_affiliation VARCHAR)", "question": "What is the smallest number of European Parliament sets when the international affiliation is global greens, egp? " }
### QUESTION Mortlake club has more than 924 against, less than 14 losses, and how many total draws? ### CONTEXT CREATE TABLE table_name_66 (draws VARCHAR, losses VARCHAR, against VARCHAR, club VARCHAR) ### ANSWER SELECT COUNT(draws) FROM table_name_66 WHERE against > 924 AND club = "mortlake" AND losses < 14</s>
{ "answer": "SELECT COUNT(draws) FROM table_name_66 WHERE against > 924 AND club = \"mortlake\" AND losses < 14", "context": "CREATE TABLE table_name_66 (draws VARCHAR, losses VARCHAR, against VARCHAR, club VARCHAR)", "question": "Mortlake club has more than 924 against, less than 14 losses, and how many total draws?" }
### QUESTION Which Population (2004) has a Moroccan population larger than 234506? ### CONTEXT CREATE TABLE table_name_38 (population__2004_ INTEGER, moroccan_population INTEGER) ### ANSWER SELECT AVG(population__2004_) FROM table_name_38 WHERE moroccan_population > 234506</s>
{ "answer": "SELECT AVG(population__2004_) FROM table_name_38 WHERE moroccan_population > 234506", "context": "CREATE TABLE table_name_38 (population__2004_ INTEGER, moroccan_population INTEGER)", "question": "Which Population (2004) has a Moroccan population larger than 234506?" }
### QUESTION What date was the opponent VFL Sindelfingen? ### CONTEXT CREATE TABLE table_name_98 (date VARCHAR, opponent VARCHAR) ### ANSWER SELECT date FROM table_name_98 WHERE opponent = "vfl sindelfingen"</s>
{ "answer": "SELECT date FROM table_name_98 WHERE opponent = \"vfl sindelfingen\"", "context": "CREATE TABLE table_name_98 (date VARCHAR, opponent VARCHAR)", "question": "What date was the opponent VFL Sindelfingen?" }
### QUESTION Name the gdp per capita for haiti ### CONTEXT CREATE TABLE table_26313243_1 (gdp__ppp__per_capita___intl_$___2011 VARCHAR, country VARCHAR) ### ANSWER SELECT gdp__ppp__per_capita___intl_$___2011 FROM table_26313243_1 WHERE country = "Haiti"</s>
{ "answer": "SELECT gdp__ppp__per_capita___intl_$___2011 FROM table_26313243_1 WHERE country = \"Haiti\"", "context": "CREATE TABLE table_26313243_1 (gdp__ppp__per_capita___intl_$___2011 VARCHAR, country VARCHAR)", "question": "Name the gdp per capita for haiti" }
### QUESTION Do the Sky Calcio 5 channels have PPV? ### CONTEXT CREATE TABLE table_15887683_4 (ppv VARCHAR, television_service VARCHAR) ### ANSWER SELECT ppv FROM table_15887683_4 WHERE television_service = "Sky Calcio 5"</s>
{ "answer": "SELECT ppv FROM table_15887683_4 WHERE television_service = \"Sky Calcio 5\"", "context": "CREATE TABLE table_15887683_4 (ppv VARCHAR, television_service VARCHAR)", "question": "Do the Sky Calcio 5 channels have PPV?" }
### QUESTION What was the score of the league cup in the 2007-08 season? ### CONTEXT CREATE TABLE table_name_90 (score VARCHAR, competition VARCHAR, season VARCHAR) ### ANSWER SELECT score FROM table_name_90 WHERE competition = "league cup" AND season = "2007-08"</s>
{ "answer": "SELECT score FROM table_name_90 WHERE competition = \"league cup\" AND season = \"2007-08\"", "context": "CREATE TABLE table_name_90 (score VARCHAR, competition VARCHAR, season VARCHAR)", "question": "What was the score of the league cup in the 2007-08 season?" }
### QUESTION The cylinder layout v8 is produced in what years? ### CONTEXT CREATE TABLE table_26352332_4 (years_produced VARCHAR, cylinder_layout VARCHAR) ### ANSWER SELECT years_produced FROM table_26352332_4 WHERE cylinder_layout = "V8"</s>
{ "answer": "SELECT years_produced FROM table_26352332_4 WHERE cylinder_layout = \"V8\"", "context": "CREATE TABLE table_26352332_4 (years_produced VARCHAR, cylinder_layout VARCHAR)", "question": "The cylinder layout v8 is produced in what years?" }
### QUESTION Which company has an author of Aristophanes and play of Plutus? ### CONTEXT CREATE TABLE table_name_74 (company VARCHAR, author VARCHAR, play VARCHAR) ### ANSWER SELECT company FROM table_name_74 WHERE author = "aristophanes" AND play = "plutus"</s>
{ "answer": "SELECT company FROM table_name_74 WHERE author = \"aristophanes\" AND play = \"plutus\"", "context": "CREATE TABLE table_name_74 (company VARCHAR, author VARCHAR, play VARCHAR)", "question": "Which company has an author of Aristophanes and play of Plutus?" }
### QUESTION The engine family MaxxForce 5 in the years produced 2007-current, have what cylinder layout? ### CONTEXT CREATE TABLE table_26352332_4 (cylinder_layout VARCHAR, years_produced VARCHAR, engine_family VARCHAR) ### ANSWER SELECT cylinder_layout FROM table_26352332_4 WHERE years_produced = "2007-current" AND engine_family = "MaxxForce 5"</s>
{ "answer": "SELECT cylinder_layout FROM table_26352332_4 WHERE years_produced = \"2007-current\" AND engine_family = \"MaxxForce 5\"", "context": "CREATE TABLE table_26352332_4 (cylinder_layout VARCHAR, years_produced VARCHAR, engine_family VARCHAR)", "question": "The engine family MaxxForce 5\t in the years produced 2007-current, have what cylinder layout?" }