text
stringlengths
146
1.06k
source
dict
### QUESTION What is the record when the score was l 84–96 (ot)? ### CONTEXT CREATE TABLE table_27723228_8 (record VARCHAR, score VARCHAR) ### ANSWER SELECT record FROM table_27723228_8 WHERE score = "L 84–96 (OT)"
{ "answer": "SELECT record FROM table_27723228_8 WHERE score = \"L 84–96 (OT)\"", "context": "CREATE TABLE table_27723228_8 (record VARCHAR, score VARCHAR)", "question": "What is the record when the score was l 84–96 (ot)?" }
### 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
{ "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 What is the L2 cache with ec number of slbmm(c2)slbsr(k0)? ### CONTEXT CREATE TABLE table_name_92 (l2_cache VARCHAR, sspec_number VARCHAR) ### ANSWER SELECT l2_cache FROM table_name_92 WHERE sspec_number = "slbmm(c2)slbsr(k0)"
{ "answer": "SELECT l2_cache FROM table_name_92 WHERE sspec_number = \"slbmm(c2)slbsr(k0)\"", "context": "CREATE TABLE table_name_92 (l2_cache VARCHAR, sspec_number VARCHAR)", "question": "What is the L2 cache with ec number of slbmm(c2)slbsr(k0)?" }
### QUESTION What is the most recent season for the Prema Powerteam with a Masters of Formula Three series? ### CONTEXT CREATE TABLE table_name_34 (season INTEGER, team VARCHAR, series VARCHAR) ### ANSWER SELECT MAX(season) FROM table_name_34 WHERE team = "prema powerteam" AND series = "masters of formula three"
{ "answer": "SELECT MAX(season) FROM table_name_34 WHERE team = \"prema powerteam\" AND series = \"masters of formula three\"", "context": "CREATE TABLE table_name_34 (season INTEGER, team VARCHAR, series VARCHAR)", "question": "What is the most recent season for the Prema Powerteam with a Masters of Formula Three series?" }
### QUESTION Who was the director of the film with the original title of "The Patience Stone"? ### CONTEXT CREATE TABLE table_17155250_1 (director VARCHAR, original_title VARCHAR) ### ANSWER SELECT director FROM table_17155250_1 WHERE original_title = "The Patience Stone"
{ "answer": "SELECT director FROM table_17155250_1 WHERE original_title = \"The Patience Stone\"", "context": "CREATE TABLE table_17155250_1 (director VARCHAR, original_title VARCHAR)", "question": "Who was the director of the film with the original title of \"The Patience Stone\"? " }
### QUESTION Find the name of customers who are living in Colorado? ### CONTEXT CREATE TABLE customer_addresses (customer_id VARCHAR, address_id VARCHAR); CREATE TABLE customers (customer_name VARCHAR, customer_id VARCHAR); CREATE TABLE addresses (address_id VARCHAR, state_province_county VARCHAR) ### ANSWER SELECT t1.customer_name FROM customers AS t1 JOIN customer_addresses AS t2 ON t1.customer_id = t2.customer_id JOIN addresses AS t3 ON t2.address_id = t3.address_id WHERE t3.state_province_county = "Colorado"
{ "answer": "SELECT t1.customer_name FROM customers AS t1 JOIN customer_addresses AS t2 ON t1.customer_id = t2.customer_id JOIN addresses AS t3 ON t2.address_id = t3.address_id WHERE t3.state_province_county = \"Colorado\"", "context": "CREATE TABLE customer_addresses (customer_id VARCHAR, address_id VARCHAR); CREATE TABLE customers (customer_name VARCHAR, customer_id VARCHAR); CREATE TABLE addresses (address_id VARCHAR, state_province_county VARCHAR)", "question": "Find the name of customers who are living in Colorado?" }
### QUESTION Name the catalog for alfa records and cd format ### CONTEXT CREATE TABLE table_name_84 (catalog VARCHAR, label VARCHAR, format VARCHAR) ### ANSWER SELECT catalog FROM table_name_84 WHERE label = "alfa records" AND format = "cd"
{ "answer": "SELECT catalog FROM table_name_84 WHERE label = \"alfa records\" AND format = \"cd\"", "context": "CREATE TABLE table_name_84 (catalog VARCHAR, label VARCHAR, format VARCHAR)", "question": "Name the catalog for alfa records and cd format" }
### QUESTION What Catalogue is Dated 14 november 2003, with the Format compact disc? ### CONTEXT CREATE TABLE table_name_47 (catalogue VARCHAR, date VARCHAR, format VARCHAR) ### ANSWER SELECT catalogue FROM table_name_47 WHERE date = "14 november 2003" AND format = "compact disc"
{ "answer": "SELECT catalogue FROM table_name_47 WHERE date = \"14 november 2003\" AND format = \"compact disc\"", "context": "CREATE TABLE table_name_47 (catalogue VARCHAR, date VARCHAR, format VARCHAR)", "question": "What Catalogue is Dated 14 november 2003, with the Format compact disc?" }
### 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"
{ "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 Who played against in venue a on 17 february 1900? ### CONTEXT CREATE TABLE table_name_43 (opponent VARCHAR, venue VARCHAR, date VARCHAR) ### ANSWER SELECT opponent FROM table_name_43 WHERE venue = "a" AND date = "17 february 1900"
{ "answer": "SELECT opponent FROM table_name_43 WHERE venue = \"a\" AND date = \"17 february 1900\"", "context": "CREATE TABLE table_name_43 (opponent VARCHAR, venue VARCHAR, date VARCHAR)", "question": "Who played against in venue a on 17 february 1900?" }
### QUESTION What status of school is informatics international college? ### CONTEXT CREATE TABLE table_2589963_1 (status VARCHAR, institution VARCHAR) ### ANSWER SELECT status FROM table_2589963_1 WHERE institution = "Informatics International College"
{ "answer": "SELECT status FROM table_2589963_1 WHERE institution = \"Informatics International College\"", "context": "CREATE TABLE table_2589963_1 (status VARCHAR, institution VARCHAR)", "question": "What status of school is informatics international college?" }
### QUESTION what is the title of the episode with the director pamela fryman and the production code 2alh07? ### CONTEXT CREATE TABLE table_26701861_1 (title VARCHAR, director VARCHAR, production_code VARCHAR) ### ANSWER SELECT title FROM table_26701861_1 WHERE director = "Pamela Fryman" AND production_code = "2ALH07"
{ "answer": "SELECT title FROM table_26701861_1 WHERE director = \"Pamela Fryman\" AND production_code = \"2ALH07\"", "context": "CREATE TABLE table_26701861_1 (title VARCHAR, director VARCHAR, production_code VARCHAR)", "question": "what is the title of the episode with the director pamela fryman and the production code 2alh07?" }
### QUESTION What numbered game featured a High rebounds of radoslav nesterović (8), and a High assists of josé calderón (9)? ### CONTEXT CREATE TABLE table_name_12 (game VARCHAR, high_rebounds VARCHAR, high_assists VARCHAR) ### ANSWER SELECT COUNT(game) FROM table_name_12 WHERE high_rebounds = "radoslav nesterović (8)" AND high_assists = "josé calderón (9)"
{ "answer": "SELECT COUNT(game) FROM table_name_12 WHERE high_rebounds = \"radoslav nesterović (8)\" AND high_assists = \"josé calderón (9)\"", "context": "CREATE TABLE table_name_12 (game VARCHAR, high_rebounds VARCHAR, high_assists VARCHAR)", "question": "What numbered game featured a High rebounds of radoslav nesterović (8), and a High assists of josé calderón (9)?" }
### QUESTION Find the name of the swimmer who has the most records. ### CONTEXT CREATE TABLE record (swimmer_id VARCHAR); CREATE TABLE swimmer (name VARCHAR, id VARCHAR) ### ANSWER SELECT t1.name FROM swimmer AS t1 JOIN record AS t2 ON t1.id = t2.swimmer_id GROUP BY t2.swimmer_id ORDER BY COUNT(*) DESC LIMIT 1
{ "answer": "SELECT t1.name FROM swimmer AS t1 JOIN record AS t2 ON t1.id = t2.swimmer_id GROUP BY t2.swimmer_id ORDER BY COUNT(*) DESC LIMIT 1", "context": "CREATE TABLE record (swimmer_id VARCHAR); CREATE TABLE swimmer (name VARCHAR, id VARCHAR)", "question": "Find the name of the swimmer who has the most records." }
### QUESTION What's the ACL qualification when the minor ladder position is 5th and the finals qualifications were DNQ? ### CONTEXT CREATE TABLE table_name_11 (acl_qualification VARCHAR, finals_qualification VARCHAR, minor_ladder_position VARCHAR) ### ANSWER SELECT acl_qualification FROM table_name_11 WHERE finals_qualification = "dnq" AND minor_ladder_position = "5th"
{ "answer": "SELECT acl_qualification FROM table_name_11 WHERE finals_qualification = \"dnq\" AND minor_ladder_position = \"5th\"", "context": "CREATE TABLE table_name_11 (acl_qualification VARCHAR, finals_qualification VARCHAR, minor_ladder_position VARCHAR)", "question": "What's the ACL qualification when the minor ladder position is 5th and the finals qualifications were DNQ?" }
### 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"
{ "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 What is the earliest year that the building in sonnemannstraße/rückertstraße, ostend was built with a height larger than 185 meters? ### CONTEXT CREATE TABLE table_name_26 (year_built INTEGER, location VARCHAR, height__m_ VARCHAR) ### ANSWER SELECT MIN(year_built) FROM table_name_26 WHERE location = "sonnemannstraße/rückertstraße, ostend" AND height__m_ > 185
{ "answer": "SELECT MIN(year_built) FROM table_name_26 WHERE location = \"sonnemannstraße/rückertstraße, ostend\" AND height__m_ > 185", "context": "CREATE TABLE table_name_26 (year_built INTEGER, location VARCHAR, height__m_ VARCHAR)", "question": "What is the earliest year that the building in sonnemannstraße/rückertstraße, ostend was built with a height larger than 185 meters?" }
### QUESTION Who won in 2003? ### CONTEXT CREATE TABLE table_name_19 (winner VARCHAR, year VARCHAR) ### ANSWER SELECT winner FROM table_name_19 WHERE year = 2003
{ "answer": "SELECT winner FROM table_name_19 WHERE year = 2003", "context": "CREATE TABLE table_name_19 (winner VARCHAR, year VARCHAR)", "question": "Who won in 2003?" }
### QUESTION What is the 2011 value with a 2008 value of 0.3 and is a member state of the European Union? ### CONTEXT CREATE TABLE table_name_64 (member_state VARCHAR) ### ANSWER SELECT 2011 FROM table_name_64 WHERE 2008 = "0.3" AND member_state = "european union"
{ "answer": "SELECT 2011 FROM table_name_64 WHERE 2008 = \"0.3\" AND member_state = \"european union\"", "context": "CREATE TABLE table_name_64 (member_state VARCHAR)", "question": "What is the 2011 value with a 2008 value of 0.3 and is a member state of the European Union?" }
### QUESTION What number was Rashad McCants? ### CONTEXT CREATE TABLE table_name_82 (number VARCHAR, name VARCHAR) ### ANSWER SELECT number FROM table_name_82 WHERE name = "rashad mccants"
{ "answer": "SELECT number FROM table_name_82 WHERE name = \"rashad mccants\"", "context": "CREATE TABLE table_name_82 (number VARCHAR, name VARCHAR)", "question": "What number was Rashad McCants?" }
### QUESTION What is the total grant amount of the organisations described as research? ### CONTEXT CREATE TABLE organisation_Types (organisation_type VARCHAR, organisation_type_description VARCHAR); CREATE TABLE Grants (organisation_id VARCHAR); CREATE TABLE Organisations (organisation_id VARCHAR, organisation_type VARCHAR) ### ANSWER SELECT SUM(grant_amount) FROM Grants AS T1 JOIN Organisations AS T2 ON T1.organisation_id = T2.organisation_id JOIN organisation_Types AS T3 ON T2.organisation_type = T3.organisation_type WHERE T3.organisation_type_description = 'Research'
{ "answer": "SELECT SUM(grant_amount) FROM Grants AS T1 JOIN Organisations AS T2 ON T1.organisation_id = T2.organisation_id JOIN organisation_Types AS T3 ON T2.organisation_type = T3.organisation_type WHERE T3.organisation_type_description = 'Research'", "context": "CREATE TABLE organisation_Types (organisation_type VARCHAR, organisation_type_description VARCHAR); CREATE TABLE Grants (organisation_id VARCHAR); CREATE TABLE Organisations (organisation_id VARCHAR, organisation_type VARCHAR)", "question": "What is the total grant amount of the organisations described as research?" }
### QUESTION What is the team located at philips arena 18,227? ### CONTEXT CREATE TABLE table_11961582_6 (team VARCHAR, location_attendance VARCHAR) ### ANSWER SELECT team FROM table_11961582_6 WHERE location_attendance = "Philips Arena 18,227"
{ "answer": "SELECT team FROM table_11961582_6 WHERE location_attendance = \"Philips Arena 18,227\"", "context": "CREATE TABLE table_11961582_6 (team VARCHAR, location_attendance VARCHAR)", "question": "What is the team located at philips arena 18,227?" }
### QUESTION What is the lowest number of last cfs of the team with 2 cf appearances, 0 cup wins, and less than 0 cf wins? ### CONTEXT CREATE TABLE table_name_90 (last_cf INTEGER, cf_wins VARCHAR, cf_appearances VARCHAR, cup_wins VARCHAR) ### ANSWER SELECT MIN(last_cf) FROM table_name_90 WHERE cf_appearances = 2 AND cup_wins = 0 AND cf_wins < 0
{ "answer": "SELECT MIN(last_cf) FROM table_name_90 WHERE cf_appearances = 2 AND cup_wins = 0 AND cf_wins < 0", "context": "CREATE TABLE table_name_90 (last_cf INTEGER, cf_wins VARCHAR, cf_appearances VARCHAR, cup_wins VARCHAR)", "question": "What is the lowest number of last cfs of the team with 2 cf appearances, 0 cup wins, and less than 0 cf wins?" }
### QUESTION Which site has a Score of 0-1? ### CONTEXT CREATE TABLE table_name_98 (site VARCHAR, score VARCHAR) ### ANSWER SELECT site FROM table_name_98 WHERE score = "0-1"
{ "answer": "SELECT site FROM table_name_98 WHERE score = \"0-1\"", "context": "CREATE TABLE table_name_98 (site VARCHAR, score VARCHAR)", "question": "Which site has a Score of 0-1?" }
### QUESTION What is Date, when Venue is Melbourne Cricket Ground, and when Result is Eng By Inns&225 Runs? ### CONTEXT CREATE TABLE table_name_95 (date VARCHAR, venue VARCHAR, result VARCHAR) ### ANSWER SELECT date FROM table_name_95 WHERE venue = "melbourne cricket ground" AND result = "eng by inns&225 runs"
{ "answer": "SELECT date FROM table_name_95 WHERE venue = \"melbourne cricket ground\" AND result = \"eng by inns&225 runs\"", "context": "CREATE TABLE table_name_95 (date VARCHAR, venue VARCHAR, result VARCHAR)", "question": "What is Date, when Venue is Melbourne Cricket Ground, and when Result is Eng By Inns&225 Runs?" }
### QUESTION Which customer had at least 2 policies but did not file any claims? List the customer details and id. ### CONTEXT CREATE TABLE Customers (customer_details VARCHAR, customer_id VARCHAR, Customer_id VARCHAR); CREATE TABLE Customer_Policies (customer_id VARCHAR, policy_id VARCHAR); CREATE TABLE Claims (policy_id VARCHAR) ### ANSWER SELECT T1.customer_details, T1.customer_id FROM Customers AS T1 JOIN Customer_Policies AS T2 ON T1.Customer_id = T2.customer_id GROUP BY T1.customer_id HAVING COUNT(*) >= 2 EXCEPT SELECT T1.customer_details, T1.customer_id FROM Customers AS T1 JOIN Customer_Policies AS T2 ON T1.Customer_id = T2.customer_id JOIN Claims AS T3 ON T2.policy_id = T3.policy_id
{ "answer": "SELECT T1.customer_details, T1.customer_id FROM Customers AS T1 JOIN Customer_Policies AS T2 ON T1.Customer_id = T2.customer_id GROUP BY T1.customer_id HAVING COUNT(*) >= 2 EXCEPT SELECT T1.customer_details, T1.customer_id FROM Customers AS T1 JOIN Customer_Policies AS T2 ON T1.Customer_id = T2.customer_id JOIN Claims AS T3 ON T2.policy_id = T3.policy_id", "context": "CREATE TABLE Customers (customer_details VARCHAR, customer_id VARCHAR, Customer_id VARCHAR); CREATE TABLE Customer_Policies (customer_id VARCHAR, policy_id VARCHAR); CREATE TABLE Claims (policy_id VARCHAR)", "question": "Which customer had at least 2 policies but did not file any claims? List the customer details and id." }
### QUESTION What was the score when Nacional was the champion, River Plate was the runner-up, and the venue was Centenario? ### CONTEXT CREATE TABLE table_name_13 (score VARCHAR, runner_up VARCHAR, champion VARCHAR, venue VARCHAR) ### ANSWER SELECT score FROM table_name_13 WHERE champion = "nacional" AND venue = "centenario" AND runner_up = "river plate"
{ "answer": "SELECT score FROM table_name_13 WHERE champion = \"nacional\" AND venue = \"centenario\" AND runner_up = \"river plate\"", "context": "CREATE TABLE table_name_13 (score VARCHAR, runner_up VARCHAR, champion VARCHAR, venue VARCHAR)", "question": "What was the score when Nacional was the champion, River Plate was the runner-up, and the venue was Centenario?" }
### QUESTION Give me a list of descriptions of the problems that are reported by the staff whose first name is Christop. ### CONTEXT CREATE TABLE staff (staff_id VARCHAR, staff_first_name VARCHAR); CREATE TABLE problems (problem_description VARCHAR, reported_by_staff_id VARCHAR) ### ANSWER SELECT T1.problem_description FROM problems AS T1 JOIN staff AS T2 ON T1.reported_by_staff_id = T2.staff_id WHERE T2.staff_first_name = "Christop"
{ "answer": "SELECT T1.problem_description FROM problems AS T1 JOIN staff AS T2 ON T1.reported_by_staff_id = T2.staff_id WHERE T2.staff_first_name = \"Christop\"", "context": "CREATE TABLE staff (staff_id VARCHAR, staff_first_name VARCHAR); CREATE TABLE problems (problem_description VARCHAR, reported_by_staff_id VARCHAR)", "question": "Give me a list of descriptions of the problems that are reported by the staff whose first name is Christop." }
### QUESTION Which Game has an Opponent of detroit red wings, and a March smaller than 12? ### CONTEXT CREATE TABLE table_name_13 (game VARCHAR, opponent VARCHAR, march VARCHAR) ### ANSWER SELECT COUNT(game) FROM table_name_13 WHERE opponent = "detroit red wings" AND march < 12
{ "answer": "SELECT COUNT(game) FROM table_name_13 WHERE opponent = \"detroit red wings\" AND march < 12", "context": "CREATE TABLE table_name_13 (game VARCHAR, opponent VARCHAR, march VARCHAR)", "question": "Which Game has an Opponent of detroit red wings, and a March smaller than 12?" }
### QUESTION Which report has a Winning driver of peter collins, and a Circuit of syracuse? ### CONTEXT CREATE TABLE table_name_33 (report VARCHAR, winning_driver VARCHAR, circuit VARCHAR) ### ANSWER SELECT report FROM table_name_33 WHERE winning_driver = "peter collins" AND circuit = "syracuse"
{ "answer": "SELECT report FROM table_name_33 WHERE winning_driver = \"peter collins\" AND circuit = \"syracuse\"", "context": "CREATE TABLE table_name_33 (report VARCHAR, winning_driver VARCHAR, circuit VARCHAR)", "question": "Which report has a Winning driver of peter collins, and a Circuit of syracuse?" }
### QUESTION What is the number of Bronze medals of the Nation with 64 total and silver greater than 16? ### CONTEXT CREATE TABLE table_name_88 (bronze VARCHAR, total VARCHAR, silver VARCHAR) ### ANSWER SELECT COUNT(bronze) FROM table_name_88 WHERE total = 64 AND silver > 16
{ "answer": "SELECT COUNT(bronze) FROM table_name_88 WHERE total = 64 AND silver > 16", "context": "CREATE TABLE table_name_88 (bronze VARCHAR, total VARCHAR, silver VARCHAR)", "question": "What is the number of Bronze medals of the Nation with 64 total and silver greater than 16?" }
### QUESTION How many of the series # when the original airdate is september 25, 1967? ### CONTEXT CREATE TABLE table_21146729_6 (series__number VARCHAR, original_airdate VARCHAR) ### ANSWER SELECT COUNT(series__number) FROM table_21146729_6 WHERE original_airdate = "September 25, 1967"
{ "answer": "SELECT COUNT(series__number) FROM table_21146729_6 WHERE original_airdate = \"September 25, 1967\"", "context": "CREATE TABLE table_21146729_6 (series__number VARCHAR, original_airdate VARCHAR)", "question": "How many of the series # when the original airdate is september 25, 1967?" }
### QUESTION What is the last name of the musician that have produced the most number of songs? ### CONTEXT CREATE TABLE Songs (SongId VARCHAR); CREATE TABLE Band (lastname VARCHAR, id VARCHAR); CREATE TABLE Performance (bandmate VARCHAR, SongId VARCHAR) ### ANSWER SELECT T2.lastname FROM Performance AS T1 JOIN Band AS T2 ON T1.bandmate = T2.id JOIN Songs AS T3 ON T3.SongId = T1.SongId GROUP BY lastname ORDER BY COUNT(*) DESC LIMIT 1
{ "answer": "SELECT T2.lastname FROM Performance AS T1 JOIN Band AS T2 ON T1.bandmate = T2.id JOIN Songs AS T3 ON T3.SongId = T1.SongId GROUP BY lastname ORDER BY COUNT(*) DESC LIMIT 1", "context": "CREATE TABLE Songs (SongId VARCHAR); CREATE TABLE Band (lastname VARCHAR, id VARCHAR); CREATE TABLE Performance (bandmate VARCHAR, SongId VARCHAR)", "question": "What is the last name of the musician that have produced the most number of songs?" }
### QUESTION What is the loaction attendance that has a game greater than 35, with January 30 as the date? ### CONTEXT CREATE TABLE table_name_24 (location_attendance VARCHAR, game VARCHAR, date VARCHAR) ### ANSWER SELECT location_attendance FROM table_name_24 WHERE game > 35 AND date = "january 30"
{ "answer": "SELECT location_attendance FROM table_name_24 WHERE game > 35 AND date = \"january 30\"", "context": "CREATE TABLE table_name_24 (location_attendance VARCHAR, game VARCHAR, date VARCHAR)", "question": "What is the loaction attendance that has a game greater than 35, with January 30 as the date?" }
### QUESTION What is the Election date for Member william richmond category:articles with hcards? ### CONTEXT CREATE TABLE table_name_49 (election_date VARCHAR, member VARCHAR) ### ANSWER SELECT election_date FROM table_name_49 WHERE member = "william richmond category:articles with hcards"
{ "answer": "SELECT election_date FROM table_name_49 WHERE member = \"william richmond category:articles with hcards\"", "context": "CREATE TABLE table_name_49 (election_date VARCHAR, member VARCHAR)", "question": "What is the Election date for Member william richmond category:articles with hcards?" }
### QUESTION which Surface has Opponents in the final of mark edmondson sherwood stewart, and a Tournament of dallas , u.s.? ### CONTEXT CREATE TABLE table_name_74 (surface VARCHAR, opponents_in_the_final VARCHAR, tournament VARCHAR) ### ANSWER SELECT surface FROM table_name_74 WHERE opponents_in_the_final = "mark edmondson sherwood stewart" AND tournament = "dallas , u.s."
{ "answer": "SELECT surface FROM table_name_74 WHERE opponents_in_the_final = \"mark edmondson sherwood stewart\" AND tournament = \"dallas , u.s.\"", "context": "CREATE TABLE table_name_74 (surface VARCHAR, opponents_in_the_final VARCHAR, tournament VARCHAR)", "question": "which Surface has Opponents in the final of mark edmondson sherwood stewart, and a Tournament of dallas , u.s.?" }
### QUESTION What is the Name of the SS5 Stage? ### CONTEXT CREATE TABLE table_name_90 (name VARCHAR, stage VARCHAR) ### ANSWER SELECT name FROM table_name_90 WHERE stage = "ss5"
{ "answer": "SELECT name FROM table_name_90 WHERE stage = \"ss5\"", "context": "CREATE TABLE table_name_90 (name VARCHAR, stage VARCHAR)", "question": "What is the Name of the SS5 Stage?" }
### QUESTION Who is Eric McClure's and Tristar Motorsports' crew chief? ### CONTEXT CREATE TABLE table_name_36 (crew_chief VARCHAR, team VARCHAR, driver_s_ VARCHAR) ### ANSWER SELECT crew_chief FROM table_name_36 WHERE team = "tristar motorsports" AND driver_s_ = "eric mcclure"
{ "answer": "SELECT crew_chief FROM table_name_36 WHERE team = \"tristar motorsports\" AND driver_s_ = \"eric mcclure\"", "context": "CREATE TABLE table_name_36 (crew_chief VARCHAR, team VARCHAR, driver_s_ VARCHAR)", "question": "Who is Eric McClure's and Tristar Motorsports' crew chief?" }
### QUESTION What is the lowest number of draws of the NTFA Div 2 Lilydale? ### CONTEXT CREATE TABLE table_name_98 (draws INTEGER, ntfa_div_2 VARCHAR) ### ANSWER SELECT MIN(draws) FROM table_name_98 WHERE ntfa_div_2 = "lilydale"
{ "answer": "SELECT MIN(draws) FROM table_name_98 WHERE ntfa_div_2 = \"lilydale\"", "context": "CREATE TABLE table_name_98 (draws INTEGER, ntfa_div_2 VARCHAR)", "question": "What is the lowest number of draws of the NTFA Div 2 Lilydale?" }
### QUESTION Find the states of the colleges that have students in the tryout who played in striker position. ### CONTEXT CREATE TABLE tryout (cName VARCHAR, pPos VARCHAR); CREATE TABLE college (state VARCHAR, cName VARCHAR) ### ANSWER SELECT T1.state FROM college AS T1 JOIN tryout AS T2 ON T1.cName = T2.cName WHERE T2.pPos = 'striker'
{ "answer": "SELECT T1.state FROM college AS T1 JOIN tryout AS T2 ON T1.cName = T2.cName WHERE T2.pPos = 'striker'", "context": "CREATE TABLE tryout (cName VARCHAR, pPos VARCHAR); CREATE TABLE college (state VARCHAR, cName VARCHAR)", "question": "Find the states of the colleges that have students in the tryout who played in striker position." }
### QUESTION What's the Date for the Region of Europe and has the Catalog of 28765 22392 8? ### CONTEXT CREATE TABLE table_name_70 (date VARCHAR, region VARCHAR, catalog VARCHAR) ### ANSWER SELECT date FROM table_name_70 WHERE region = "europe" AND catalog = "28765 22392 8"
{ "answer": "SELECT date FROM table_name_70 WHERE region = \"europe\" AND catalog = \"28765 22392 8\"", "context": "CREATE TABLE table_name_70 (date VARCHAR, region VARCHAR, catalog VARCHAR)", "question": "What's the Date for the Region of Europe and has the Catalog of 28765 22392 8?" }
### QUESTION Show the names of members and the dates of performances they attended in descending order of attendance of the performances. ### CONTEXT CREATE TABLE performance (Date VARCHAR, Performance_ID VARCHAR, Attendance VARCHAR); CREATE TABLE member (Name VARCHAR, Member_ID VARCHAR); CREATE TABLE member_attendance (Member_ID VARCHAR, Performance_ID VARCHAR) ### ANSWER SELECT T2.Name, T3.Date FROM member_attendance AS T1 JOIN member AS T2 ON T1.Member_ID = T2.Member_ID JOIN performance AS T3 ON T1.Performance_ID = T3.Performance_ID ORDER BY T3.Attendance DESC
{ "answer": "SELECT T2.Name, T3.Date FROM member_attendance AS T1 JOIN member AS T2 ON T1.Member_ID = T2.Member_ID JOIN performance AS T3 ON T1.Performance_ID = T3.Performance_ID ORDER BY T3.Attendance DESC", "context": "CREATE TABLE performance (Date VARCHAR, Performance_ID VARCHAR, Attendance VARCHAR); CREATE TABLE member (Name VARCHAR, Member_ID VARCHAR); CREATE TABLE member_attendance (Member_ID VARCHAR, Performance_ID VARCHAR)", "question": "Show the names of members and the dates of performances they attended in descending order of attendance of the performances." }
### QUESTION Find the number of routes that have destination John F Kennedy International Airport. ### CONTEXT CREATE TABLE airports (apid VARCHAR, name VARCHAR); CREATE TABLE routes (dst_apid VARCHAR) ### ANSWER SELECT COUNT(*) FROM airports AS T1 JOIN routes AS T2 ON T1.apid = T2.dst_apid WHERE T1.name = 'John F Kennedy International Airport'
{ "answer": "SELECT COUNT(*) FROM airports AS T1 JOIN routes AS T2 ON T1.apid = T2.dst_apid WHERE T1.name = 'John F Kennedy International Airport'", "context": "CREATE TABLE airports (apid VARCHAR, name VARCHAR); CREATE TABLE routes (dst_apid VARCHAR)", "question": "Find the number of routes that have destination John F Kennedy International Airport." }
### QUESTION How many seasons have a sacks of 39? ### CONTEXT CREATE TABLE table_27487336_1 (season VARCHAR, sacks VARCHAR) ### ANSWER SELECT COUNT(season) FROM table_27487336_1 WHERE sacks = "39"
{ "answer": "SELECT COUNT(season) FROM table_27487336_1 WHERE sacks = \"39\"", "context": "CREATE TABLE table_27487336_1 (season VARCHAR, sacks VARCHAR)", "question": "How many seasons have a sacks of 39?" }
### QUESTION Who was the winner of binibining pilipinas-International wheh Gionna Cabrera won Miss Universe Philippines? ### CONTEXT CREATE TABLE table_1825751_4 (binibining_pilipinas_international VARCHAR, miss_universe_philippines VARCHAR) ### ANSWER SELECT binibining_pilipinas_international FROM table_1825751_4 WHERE miss_universe_philippines = "Gionna Cabrera"
{ "answer": "SELECT binibining_pilipinas_international FROM table_1825751_4 WHERE miss_universe_philippines = \"Gionna Cabrera\"", "context": "CREATE TABLE table_1825751_4 (binibining_pilipinas_international VARCHAR, miss_universe_philippines VARCHAR)", "question": "Who was the winner of binibining pilipinas-International wheh Gionna Cabrera won Miss Universe Philippines?" }
### QUESTION How many times is the shot volume (cm3) less than 172.76? ### CONTEXT CREATE TABLE table_name_37 (shot_diameter__cm_ VARCHAR, shot_volume__cm_3__ INTEGER) ### ANSWER SELECT COUNT(shot_diameter__cm_) FROM table_name_37 WHERE shot_volume__cm_3__ < 172.76
{ "answer": "SELECT COUNT(shot_diameter__cm_) FROM table_name_37 WHERE shot_volume__cm_3__ < 172.76", "context": "CREATE TABLE table_name_37 (shot_diameter__cm_ VARCHAR, shot_volume__cm_3__ INTEGER)", "question": "How many times is the shot volume (cm3) less than 172.76?" }
### QUESTION How many clubs does "Linda Smith" belong to? ### CONTEXT CREATE TABLE student (stuid VARCHAR, fname VARCHAR, lname VARCHAR); CREATE TABLE member_of_club (clubid VARCHAR, stuid VARCHAR); CREATE TABLE club (clubid VARCHAR) ### ANSWER SELECT COUNT(*) FROM club AS t1 JOIN member_of_club AS t2 ON t1.clubid = t2.clubid JOIN student AS t3 ON t2.stuid = t3.stuid WHERE t3.fname = "Linda" AND t3.lname = "Smith"
{ "answer": "SELECT COUNT(*) FROM club AS t1 JOIN member_of_club AS t2 ON t1.clubid = t2.clubid JOIN student AS t3 ON t2.stuid = t3.stuid WHERE t3.fname = \"Linda\" AND t3.lname = \"Smith\"", "context": "CREATE TABLE student (stuid VARCHAR, fname VARCHAR, lname VARCHAR); CREATE TABLE member_of_club (clubid VARCHAR, stuid VARCHAR); CREATE TABLE club (clubid VARCHAR)", "question": "How many clubs does \"Linda Smith\" belong to?" }
### QUESTION How many points are there for a Mclaren m23 chassis later than 1972? ### CONTEXT CREATE TABLE table_name_20 (points VARCHAR, year VARCHAR, chassis VARCHAR) ### ANSWER SELECT COUNT(points) FROM table_name_20 WHERE year > 1972 AND chassis = "mclaren m23"
{ "answer": "SELECT COUNT(points) FROM table_name_20 WHERE year > 1972 AND chassis = \"mclaren m23\"", "context": "CREATE TABLE table_name_20 (points VARCHAR, year VARCHAR, chassis VARCHAR)", "question": "How many points are there for a Mclaren m23 chassis later than 1972?" }
### QUESTION What is the average pick of player jim h. mitchell? ### CONTEXT CREATE TABLE table_name_3 (pick INTEGER, player VARCHAR) ### ANSWER SELECT AVG(pick) FROM table_name_3 WHERE player = "jim h. mitchell"
{ "answer": "SELECT AVG(pick) FROM table_name_3 WHERE player = \"jim h. mitchell\"", "context": "CREATE TABLE table_name_3 (pick INTEGER, player VARCHAR)", "question": "What is the average pick of player jim h. mitchell?" }
### QUESTION What competition was the World Championships before 2011? ### CONTEXT CREATE TABLE table_name_38 (event VARCHAR, competition VARCHAR, year VARCHAR) ### ANSWER SELECT event FROM table_name_38 WHERE competition = "world championships" AND year < 2011
{ "answer": "SELECT event FROM table_name_38 WHERE competition = \"world championships\" AND year < 2011", "context": "CREATE TABLE table_name_38 (event VARCHAR, competition VARCHAR, year VARCHAR)", "question": "What competition was the World Championships before 2011?" }
### QUESTION How many places featured the DXCL Callsign? ### CONTEXT CREATE TABLE table_12547903_3 (location VARCHAR, callsign VARCHAR) ### ANSWER SELECT COUNT(location) FROM table_12547903_3 WHERE callsign = "DXCL"
{ "answer": "SELECT COUNT(location) FROM table_12547903_3 WHERE callsign = \"DXCL\"", "context": "CREATE TABLE table_12547903_3 (location VARCHAR, callsign VARCHAR)", "question": "How many places featured the DXCL Callsign?" }
### QUESTION What is the month and year less than 5 German submarines were lost, less than 6893 were sunk by warship or raider, less than 133746 were sunk by aircraft, and more than 111263 were sunk by U-boat? ### CONTEXT CREATE TABLE table_name_24 (month VARCHAR, _year VARCHAR, sunk_by_u_boat VARCHAR, sunk_by_aircraft VARCHAR, german_submarines_lost VARCHAR, sunk_by_warship_or_raider VARCHAR) ### ANSWER SELECT month, _year FROM table_name_24 WHERE german_submarines_lost < 5 AND sunk_by_warship_or_raider < 6893 AND sunk_by_aircraft < 133746 AND sunk_by_u_boat > 111263
{ "answer": "SELECT month, _year FROM table_name_24 WHERE german_submarines_lost < 5 AND sunk_by_warship_or_raider < 6893 AND sunk_by_aircraft < 133746 AND sunk_by_u_boat > 111263", "context": "CREATE TABLE table_name_24 (month VARCHAR, _year VARCHAR, sunk_by_u_boat VARCHAR, sunk_by_aircraft VARCHAR, german_submarines_lost VARCHAR, sunk_by_warship_or_raider VARCHAR)", "question": "What is the month and year less than 5 German submarines were lost, less than 6893 were sunk by warship or raider, less than 133746 were sunk by aircraft, and more than 111263 were sunk by U-boat?" }
### QUESTION What is the average number of military deaths when there are fewer than 38 civilian deaths (including foreigners) and 33 military and/or civilian wounded? ### CONTEXT CREATE TABLE table_name_22 (military_deaths INTEGER, civilian_deaths__including_foreigners_ VARCHAR, military_and_or_civilian_wounded VARCHAR) ### ANSWER SELECT AVG(military_deaths) FROM table_name_22 WHERE civilian_deaths__including_foreigners_ < 38 AND military_and_or_civilian_wounded = "33"
{ "answer": "SELECT AVG(military_deaths) FROM table_name_22 WHERE civilian_deaths__including_foreigners_ < 38 AND military_and_or_civilian_wounded = \"33\"", "context": "CREATE TABLE table_name_22 (military_deaths INTEGER, civilian_deaths__including_foreigners_ VARCHAR, military_and_or_civilian_wounded VARCHAR)", "question": "What is the average number of military deaths when there are fewer than 38 civilian deaths (including foreigners) and 33 military and/or civilian wounded?" }
### QUESTION What digital reaction has hot 100 reaction of 2 (+1)? ### CONTEXT CREATE TABLE table_name_89 (hot_digital_songs_reaction VARCHAR, hot_100_reaction VARCHAR) ### ANSWER SELECT hot_digital_songs_reaction FROM table_name_89 WHERE hot_100_reaction = "2 (+1)"
{ "answer": "SELECT hot_digital_songs_reaction FROM table_name_89 WHERE hot_100_reaction = \"2 (+1)\"", "context": "CREATE TABLE table_name_89 (hot_digital_songs_reaction VARCHAR, hot_100_reaction VARCHAR)", "question": "What digital reaction has hot 100 reaction of 2 (+1)?" }
### QUESTION When playing on grass who was the opponents in a year greater than 1993, and playing with Jonas Björkman? ### CONTEXT CREATE TABLE table_name_10 (opponents VARCHAR, partner VARCHAR, surface VARCHAR, year VARCHAR) ### ANSWER SELECT opponents FROM table_name_10 WHERE surface = "grass" AND year > 1993 AND partner = "jonas björkman"
{ "answer": "SELECT opponents FROM table_name_10 WHERE surface = \"grass\" AND year > 1993 AND partner = \"jonas björkman\"", "context": "CREATE TABLE table_name_10 (opponents VARCHAR, partner VARCHAR, surface VARCHAR, year VARCHAR)", "question": "When playing on grass who was the opponents in a year greater than 1993, and playing with Jonas Björkman?" }
### QUESTION What is the sum of Avg/G for Dan Dierking when the Loss is 0 and the Gain is more than 34? ### CONTEXT CREATE TABLE table_name_95 (avg_g INTEGER, gain VARCHAR, loss VARCHAR, name VARCHAR) ### ANSWER SELECT SUM(avg_g) FROM table_name_95 WHERE loss = 0 AND name = "dan dierking" AND gain > 34
{ "answer": "SELECT SUM(avg_g) FROM table_name_95 WHERE loss = 0 AND name = \"dan dierking\" AND gain > 34", "context": "CREATE TABLE table_name_95 (avg_g INTEGER, gain VARCHAR, loss VARCHAR, name VARCHAR)", "question": "What is the sum of Avg/G for Dan Dierking when the Loss is 0 and the Gain is more than 34?" }
### QUESTION What is the least rank for athletes with a time of 6:36.65? ### CONTEXT CREATE TABLE table_name_80 (rank INTEGER, time VARCHAR) ### ANSWER SELECT MIN(rank) FROM table_name_80 WHERE time = "6:36.65"
{ "answer": "SELECT MIN(rank) FROM table_name_80 WHERE time = \"6:36.65\"", "context": "CREATE TABLE table_name_80 (rank INTEGER, time VARCHAR)", "question": "What is the least rank for athletes with a time of 6:36.65?" }
### QUESTION What was the result when they played at Michigan State? ### CONTEXT CREATE TABLE table_name_14 (result VARCHAR, opponent_number VARCHAR) ### ANSWER SELECT result FROM table_name_14 WHERE opponent_number = "at michigan state"
{ "answer": "SELECT result FROM table_name_14 WHERE opponent_number = \"at michigan state\"", "context": "CREATE TABLE table_name_14 (result VARCHAR, opponent_number VARCHAR)", "question": "What was the result when they played at Michigan State?" }
### QUESTION What is the whenbuilt of the Brighton built Blandford Forum with a withdrawn of september 1964? ### CONTEXT CREATE TABLE table_name_67 (whenbuilt VARCHAR, name VARCHAR, builder VARCHAR, withdrawn VARCHAR) ### ANSWER SELECT whenbuilt FROM table_name_67 WHERE builder = "brighton" AND withdrawn = "september 1964" AND name = "blandford forum"
{ "answer": "SELECT whenbuilt FROM table_name_67 WHERE builder = \"brighton\" AND withdrawn = \"september 1964\" AND name = \"blandford forum\"", "context": "CREATE TABLE table_name_67 (whenbuilt VARCHAR, name VARCHAR, builder VARCHAR, withdrawn VARCHAR)", "question": "What is the whenbuilt of the Brighton built Blandford Forum with a withdrawn of september 1964?" }
### QUESTION What is Outcome, when Opponent is Victoria Azarenka, and when Score is 6–2, 2–6, 7–5? ### CONTEXT CREATE TABLE table_name_63 (outcome VARCHAR, opponent VARCHAR, score VARCHAR) ### ANSWER SELECT outcome FROM table_name_63 WHERE opponent = "victoria azarenka" AND score = "6–2, 2–6, 7–5"
{ "answer": "SELECT outcome FROM table_name_63 WHERE opponent = \"victoria azarenka\" AND score = \"6–2, 2–6, 7–5\"", "context": "CREATE TABLE table_name_63 (outcome VARCHAR, opponent VARCHAR, score VARCHAR)", "question": "What is Outcome, when Opponent is Victoria Azarenka, and when Score is 6–2, 2–6, 7–5?" }
### QUESTION display the first and last name, department, city, and state province for each employee. ### CONTEXT CREATE TABLE departments (department_name VARCHAR, department_id VARCHAR, location_id VARCHAR); CREATE TABLE employees (first_name VARCHAR, last_name VARCHAR, department_id VARCHAR); CREATE TABLE locations (city VARCHAR, state_province VARCHAR, location_id VARCHAR) ### ANSWER SELECT T1.first_name, T1.last_name, T2.department_name, T3.city, T3.state_province FROM employees AS T1 JOIN departments AS T2 ON T1.department_id = T2.department_id JOIN locations AS T3 ON T2.location_id = T3.location_id
{ "answer": "SELECT T1.first_name, T1.last_name, T2.department_name, T3.city, T3.state_province FROM employees AS T1 JOIN departments AS T2 ON T1.department_id = T2.department_id JOIN locations AS T3 ON T2.location_id = T3.location_id", "context": "CREATE TABLE departments (department_name VARCHAR, department_id VARCHAR, location_id VARCHAR); CREATE TABLE employees (first_name VARCHAR, last_name VARCHAR, department_id VARCHAR); CREATE TABLE locations (city VARCHAR, state_province VARCHAR, location_id VARCHAR)", "question": "display the first and last name, department, city, and state province for each employee." }
### QUESTION How many people wrote episode 9 in the season that was directed by Ernest Dickerson? ### CONTEXT CREATE TABLE table_29219286_1 (written_by VARCHAR, directed_by VARCHAR, no_in_season VARCHAR) ### ANSWER SELECT COUNT(written_by) FROM table_29219286_1 WHERE directed_by = "Ernest Dickerson" AND no_in_season = 9
{ "answer": "SELECT COUNT(written_by) FROM table_29219286_1 WHERE directed_by = \"Ernest Dickerson\" AND no_in_season = 9", "context": "CREATE TABLE table_29219286_1 (written_by VARCHAR, directed_by VARCHAR, no_in_season VARCHAR)", "question": "How many people wrote episode 9 in the season that was directed by Ernest Dickerson?" }
### QUESTION What is the highest Pick that is wide receiver with overall of 29? ### CONTEXT CREATE TABLE table_name_60 (pick__number INTEGER, position VARCHAR, overall VARCHAR) ### ANSWER SELECT MAX(pick__number) FROM table_name_60 WHERE position = "wide receiver" AND overall = 29
{ "answer": "SELECT MAX(pick__number) FROM table_name_60 WHERE position = \"wide receiver\" AND overall = 29", "context": "CREATE TABLE table_name_60 (pick__number INTEGER, position VARCHAR, overall VARCHAR)", "question": "What is the highest Pick that is wide receiver with overall of 29?" }
### QUESTION Result of w 21–7 had what average week? ### CONTEXT CREATE TABLE table_name_96 (week INTEGER, result VARCHAR) ### ANSWER SELECT AVG(week) FROM table_name_96 WHERE result = "w 21–7"
{ "answer": "SELECT AVG(week) FROM table_name_96 WHERE result = \"w 21–7\"", "context": "CREATE TABLE table_name_96 (week INTEGER, result VARCHAR)", "question": "Result of w 21–7 had what average week?" }
### QUESTION What is the number of gold when the silver is 1, bronze is 1, and the nation is Austria? ### CONTEXT CREATE TABLE table_name_4 (gold VARCHAR, nation VARCHAR, silver VARCHAR, bronze VARCHAR) ### ANSWER SELECT COUNT(gold) FROM table_name_4 WHERE silver = 1 AND bronze = 1 AND nation = "austria"
{ "answer": "SELECT COUNT(gold) FROM table_name_4 WHERE silver = 1 AND bronze = 1 AND nation = \"austria\"", "context": "CREATE TABLE table_name_4 (gold VARCHAR, nation VARCHAR, silver VARCHAR, bronze VARCHAR)", "question": "What is the number of gold when the silver is 1, bronze is 1, and the nation is Austria?" }
### QUESTION how many managers left sunshine stars? ### CONTEXT CREATE TABLE table_28164986_4 (outgoing_manager VARCHAR, team VARCHAR) ### ANSWER SELECT COUNT(outgoing_manager) FROM table_28164986_4 WHERE team = "Sunshine Stars"
{ "answer": "SELECT COUNT(outgoing_manager) FROM table_28164986_4 WHERE team = \"Sunshine Stars\"", "context": "CREATE TABLE table_28164986_4 (outgoing_manager VARCHAR, team VARCHAR)", "question": "how many managers left sunshine stars?" }
### QUESTION What is the number of cities/municipalities having an urban settlement of Srbobran? ### CONTEXT CREATE TABLE table_2562572_2 (city___municipality VARCHAR, urban_settlement VARCHAR) ### ANSWER SELECT COUNT(city___municipality) FROM table_2562572_2 WHERE urban_settlement = "Srbobran"
{ "answer": "SELECT COUNT(city___municipality) FROM table_2562572_2 WHERE urban_settlement = \"Srbobran\"", "context": "CREATE TABLE table_2562572_2 (city___municipality VARCHAR, urban_settlement VARCHAR)", "question": "What is the number of cities/municipalities having an urban settlement of Srbobran?" }
### QUESTION Where was the place of birth for the delegate who took office after 1982, delegates a district smaller than 43 and belongs to a Health and Government operations committee? ### CONTEXT CREATE TABLE table_name_31 (place_of_birth VARCHAR, committee VARCHAR, took_office VARCHAR, district VARCHAR) ### ANSWER SELECT place_of_birth FROM table_name_31 WHERE took_office > 1982 AND district < 43 AND committee = "health and government operations"
{ "answer": "SELECT place_of_birth FROM table_name_31 WHERE took_office > 1982 AND district < 43 AND committee = \"health and government operations\"", "context": "CREATE TABLE table_name_31 (place_of_birth VARCHAR, committee VARCHAR, took_office VARCHAR, district VARCHAR)", "question": "Where was the place of birth for the delegate who took office after 1982, delegates a district smaller than 43 and belongs to a Health and Government operations committee?" }
### QUESTION Show the location name for document "Robin CV". ### CONTEXT CREATE TABLE Ref_locations (location_name VARCHAR, location_code VARCHAR); CREATE TABLE All_documents (document_id VARCHAR, document_name VARCHAR); CREATE TABLE Document_locations (document_id VARCHAR, location_code VARCHAR) ### ANSWER SELECT T3.location_name FROM All_documents AS T1 JOIN Document_locations AS T2 ON T1.document_id = T2.document_id JOIN Ref_locations AS T3 ON T2.location_code = T3.location_code WHERE T1.document_name = "Robin CV"
{ "answer": "SELECT T3.location_name FROM All_documents AS T1 JOIN Document_locations AS T2 ON T1.document_id = T2.document_id JOIN Ref_locations AS T3 ON T2.location_code = T3.location_code WHERE T1.document_name = \"Robin CV\"", "context": "CREATE TABLE Ref_locations (location_name VARCHAR, location_code VARCHAR); CREATE TABLE All_documents (document_id VARCHAR, document_name VARCHAR); CREATE TABLE Document_locations (document_id VARCHAR, location_code VARCHAR)", "question": "Show the location name for document \"Robin CV\"." }
### QUESTION How many seasons did Barking Birmingham & Solihull Stourbridge were relegated from league? ### CONTEXT CREATE TABLE table_23927423_4 (season VARCHAR, relegated_from_league VARCHAR) ### ANSWER SELECT COUNT(season) FROM table_23927423_4 WHERE relegated_from_league = "Barking Birmingham & Solihull Stourbridge"
{ "answer": "SELECT COUNT(season) FROM table_23927423_4 WHERE relegated_from_league = \"Barking Birmingham & Solihull Stourbridge\"", "context": "CREATE TABLE table_23927423_4 (season VARCHAR, relegated_from_league VARCHAR)", "question": "How many seasons did Barking Birmingham & Solihull Stourbridge were relegated from league?" }
### QUESTION Who wrote the episode for s02 e07? ### CONTEXT CREATE TABLE table_16384596_4 (written_by VARCHAR, broadcast_order VARCHAR) ### ANSWER SELECT written_by FROM table_16384596_4 WHERE broadcast_order = "S02 E07"
{ "answer": "SELECT written_by FROM table_16384596_4 WHERE broadcast_order = \"S02 E07\"", "context": "CREATE TABLE table_16384596_4 (written_by VARCHAR, broadcast_order VARCHAR)", "question": "Who wrote the episode for s02 e07?" }
### QUESTION For Raison Blue with a nicotine larger than 0.30000000000000004, what's the lowest quantity? ### CONTEXT CREATE TABLE table_name_60 (quantity INTEGER, name VARCHAR, nicotine VARCHAR) ### ANSWER SELECT MIN(quantity) FROM table_name_60 WHERE name = "raison blue" AND nicotine > 0.30000000000000004
{ "answer": "SELECT MIN(quantity) FROM table_name_60 WHERE name = \"raison blue\" AND nicotine > 0.30000000000000004", "context": "CREATE TABLE table_name_60 (quantity INTEGER, name VARCHAR, nicotine VARCHAR)", "question": "For Raison Blue with a nicotine larger than 0.30000000000000004, what's the lowest quantity?" }
### QUESTION Which Surface has an Outcome of runner-up, and a Score in the final of 4–6, 6–7, 6–2, 2–6? ### CONTEXT CREATE TABLE table_name_87 (surface VARCHAR, outcome VARCHAR, score_in_the_final VARCHAR) ### ANSWER SELECT surface FROM table_name_87 WHERE outcome = "runner-up" AND score_in_the_final = "4–6, 6–7, 6–2, 2–6"
{ "answer": "SELECT surface FROM table_name_87 WHERE outcome = \"runner-up\" AND score_in_the_final = \"4–6, 6–7, 6–2, 2–6\"", "context": "CREATE TABLE table_name_87 (surface VARCHAR, outcome VARCHAR, score_in_the_final VARCHAR)", "question": "Which Surface has an Outcome of runner-up, and a Score in the final of 4–6, 6–7, 6–2, 2–6?" }
### QUESTION what is the "normalized" transliteration for Roman i ### CONTEXT CREATE TABLE table_name_9 (roman_equivalent VARCHAR) ### ANSWER SELECT "normalised" AS _transliteration FROM table_name_9 WHERE roman_equivalent = "i"
{ "answer": "SELECT \"normalised\" AS _transliteration FROM table_name_9 WHERE roman_equivalent = \"i\"", "context": "CREATE TABLE table_name_9 (roman_equivalent VARCHAR)", "question": "what is the \"normalized\" transliteration for Roman i" }
### QUESTION What's the Denomination listed for the Date of Issue 12 April 2005? ### CONTEXT CREATE TABLE table_name_88 (denomination VARCHAR, date_of_issue VARCHAR) ### ANSWER SELECT denomination FROM table_name_88 WHERE date_of_issue = "12 april 2005"
{ "answer": "SELECT denomination FROM table_name_88 WHERE date_of_issue = \"12 april 2005\"", "context": "CREATE TABLE table_name_88 (denomination VARCHAR, date_of_issue VARCHAR)", "question": "What's the Denomination listed for the Date of Issue 12 April 2005?" }
### QUESTION How many games tied for the air force with over 57 years participating? ### CONTEXT CREATE TABLE table_name_69 (tied VARCHAR, mountain_west VARCHAR, years VARCHAR) ### ANSWER SELECT COUNT(tied) FROM table_name_69 WHERE mountain_west = "air force" AND years > 57
{ "answer": "SELECT COUNT(tied) FROM table_name_69 WHERE mountain_west = \"air force\" AND years > 57", "context": "CREATE TABLE table_name_69 (tied VARCHAR, mountain_west VARCHAR, years VARCHAR)", "question": "How many games tied for the air force with over 57 years participating?" }
### QUESTION What week was the game played at Robert f. Kennedy memorial stadium with more than 54,633 people in attendance? ### CONTEXT CREATE TABLE table_name_71 (week VARCHAR, game_site VARCHAR, attendance VARCHAR) ### ANSWER SELECT COUNT(week) FROM table_name_71 WHERE game_site = "robert f. kennedy memorial stadium" AND attendance > 54 OFFSET 633
{ "answer": "SELECT COUNT(week) FROM table_name_71 WHERE game_site = \"robert f. kennedy memorial stadium\" AND attendance > 54 OFFSET 633", "context": "CREATE TABLE table_name_71 (week VARCHAR, game_site VARCHAR, attendance VARCHAR)", "question": "What week was the game played at Robert f. Kennedy memorial stadium with more than 54,633 people in attendance?" }
### QUESTION What date did the Chicago Bears beat the Green bay Packers 31-20? ### CONTEXT CREATE TABLE table_name_32 (date VARCHAR, loser VARCHAR, location VARCHAR) ### ANSWER SELECT date FROM table_name_32 WHERE loser = "green bay packers" AND location = "green bay"
{ "answer": "SELECT date FROM table_name_32 WHERE loser = \"green bay packers\" AND location = \"green bay\"", "context": "CREATE TABLE table_name_32 (date VARCHAR, loser VARCHAR, location VARCHAR)", "question": "What date did the Chicago Bears beat the Green bay Packers 31-20?" }
### QUESTION Which Poll source has a Peg Luksik of 9%, and Dates administered of may 12, 2010? ### CONTEXT CREATE TABLE table_name_2 (poll_source VARCHAR, peg_luksik VARCHAR, dates_administered VARCHAR) ### ANSWER SELECT poll_source FROM table_name_2 WHERE peg_luksik = "9%" AND dates_administered = "may 12, 2010"
{ "answer": "SELECT poll_source FROM table_name_2 WHERE peg_luksik = \"9%\" AND dates_administered = \"may 12, 2010\"", "context": "CREATE TABLE table_name_2 (poll_source VARCHAR, peg_luksik VARCHAR, dates_administered VARCHAR)", "question": "Which Poll source has a Peg Luksik of 9%, and Dates administered of may 12, 2010?" }
### QUESTION Who drove the fastest lap at the Tenneco Automotive Grand Prix of Detroit? ### CONTEXT CREATE TABLE table_11056278_3 (fastest_lap VARCHAR, race_name VARCHAR) ### ANSWER SELECT fastest_lap FROM table_11056278_3 WHERE race_name = "Tenneco Automotive Grand Prix of Detroit"
{ "answer": "SELECT fastest_lap FROM table_11056278_3 WHERE race_name = \"Tenneco Automotive Grand Prix of Detroit\"", "context": "CREATE TABLE table_11056278_3 (fastest_lap VARCHAR, race_name VARCHAR)", "question": "Who drove the fastest lap at the Tenneco Automotive Grand Prix of Detroit?" }
### QUESTION What is Jillian Evans highest number of seats? ### CONTEXT CREATE TABLE table_name_45 (number_of_seats INTEGER, leader VARCHAR) ### ANSWER SELECT MAX(number_of_seats) FROM table_name_45 WHERE leader = "jillian evans"
{ "answer": "SELECT MAX(number_of_seats) FROM table_name_45 WHERE leader = \"jillian evans\"", "context": "CREATE TABLE table_name_45 (number_of_seats INTEGER, leader VARCHAR)", "question": "What is Jillian Evans highest number of seats?" }
### QUESTION Name how other lyers say enga ullale ### CONTEXT CREATE TABLE table_name_22 (how_other_iyers_say_it VARCHAR, how_ashtagrama_iyers_say_it VARCHAR) ### ANSWER SELECT how_other_iyers_say_it FROM table_name_22 WHERE how_ashtagrama_iyers_say_it = "enga ullale"
{ "answer": "SELECT how_other_iyers_say_it FROM table_name_22 WHERE how_ashtagrama_iyers_say_it = \"enga ullale\"", "context": "CREATE TABLE table_name_22 (how_other_iyers_say_it VARCHAR, how_ashtagrama_iyers_say_it VARCHAR)", "question": "Name how other lyers say enga ullale" }
### QUESTION In what year was the NFL team in chicago illinois established? ### CONTEXT CREATE TABLE table_name_96 (est VARCHAR, league VARCHAR, state_province VARCHAR, city VARCHAR) ### ANSWER SELECT est FROM table_name_96 WHERE state_province = "illinois" AND city = "chicago" AND league = "nfl"
{ "answer": "SELECT est FROM table_name_96 WHERE state_province = \"illinois\" AND city = \"chicago\" AND league = \"nfl\"", "context": "CREATE TABLE table_name_96 (est VARCHAR, league VARCHAR, state_province VARCHAR, city VARCHAR)", "question": "In what year was the NFL team in chicago illinois established?" }
### QUESTION What is the place of plyaer Tim Herron from the United States with a to par of +1? ### CONTEXT CREATE TABLE table_name_15 (place VARCHAR, player VARCHAR, country VARCHAR, to_par VARCHAR) ### ANSWER SELECT place FROM table_name_15 WHERE country = "united states" AND to_par = "+1" AND player = "tim herron"
{ "answer": "SELECT place FROM table_name_15 WHERE country = \"united states\" AND to_par = \"+1\" AND player = \"tim herron\"", "context": "CREATE TABLE table_name_15 (place VARCHAR, player VARCHAR, country VARCHAR, to_par VARCHAR)", "question": "What is the place of plyaer Tim Herron from the United States with a to par of +1?" }
### QUESTION What is the record of game 42, which had a clemmensen decision? ### CONTEXT CREATE TABLE table_name_76 (record VARCHAR, decision VARCHAR, game VARCHAR) ### ANSWER SELECT record FROM table_name_76 WHERE decision = "clemmensen" AND game = 42
{ "answer": "SELECT record FROM table_name_76 WHERE decision = \"clemmensen\" AND game = 42", "context": "CREATE TABLE table_name_76 (record VARCHAR, decision VARCHAR, game VARCHAR)", "question": "What is the record of game 42, which had a clemmensen decision?" }
### QUESTION When bbc two is the original channel what is the date of original removal? ### CONTEXT CREATE TABLE table_19114172_11 (date_s__of_original_removal VARCHAR, original_channel VARCHAR) ### ANSWER SELECT date_s__of_original_removal FROM table_19114172_11 WHERE original_channel = "BBC Two"
{ "answer": "SELECT date_s__of_original_removal FROM table_19114172_11 WHERE original_channel = \"BBC Two\"", "context": "CREATE TABLE table_19114172_11 (date_s__of_original_removal VARCHAR, original_channel VARCHAR)", "question": "When bbc two is the original channel what is the date of original removal?" }
### QUESTION What is the acronym used for Beirut Arab University? ### CONTEXT CREATE TABLE table_1160660_1 (acronym VARCHAR, university_name VARCHAR) ### ANSWER SELECT acronym FROM table_1160660_1 WHERE university_name = "Beirut Arab University"
{ "answer": "SELECT acronym FROM table_1160660_1 WHERE university_name = \"Beirut Arab University\"", "context": "CREATE TABLE table_1160660_1 (acronym VARCHAR, university_name VARCHAR)", "question": "What is the acronym used for Beirut Arab University?" }
### QUESTION In what year of school is the forward Iman McFarland? ### CONTEXT CREATE TABLE table_name_90 (year VARCHAR, position VARCHAR, name VARCHAR) ### ANSWER SELECT year FROM table_name_90 WHERE position = "forward" AND name = "iman mcfarland"
{ "answer": "SELECT year FROM table_name_90 WHERE position = \"forward\" AND name = \"iman mcfarland\"", "context": "CREATE TABLE table_name_90 (year VARCHAR, position VARCHAR, name VARCHAR)", "question": "In what year of school is the forward Iman McFarland?" }
### QUESTION Show all locations that have train stations with at least 15 platforms and train stations with more than 25 total passengers. ### CONTEXT CREATE TABLE station (LOCATION VARCHAR, number_of_platforms VARCHAR, total_passengers VARCHAR) ### ANSWER SELECT DISTINCT LOCATION FROM station WHERE number_of_platforms >= 15 AND total_passengers > 25
{ "answer": "SELECT DISTINCT LOCATION FROM station WHERE number_of_platforms >= 15 AND total_passengers > 25", "context": "CREATE TABLE station (LOCATION VARCHAR, number_of_platforms VARCHAR, total_passengers VARCHAR)", "question": "Show all locations that have train stations with at least 15 platforms and train stations with more than 25 total passengers." }
### QUESTION How many shows did team David consist of vernon kay and dara ó briain ### CONTEXT CREATE TABLE table_23575917_8 (episode VARCHAR, davids_team VARCHAR) ### ANSWER SELECT COUNT(episode) FROM table_23575917_8 WHERE davids_team = "Vernon Kay and Dara Ó Briain"
{ "answer": "SELECT COUNT(episode) FROM table_23575917_8 WHERE davids_team = \"Vernon Kay and Dara Ó Briain\"", "context": "CREATE TABLE table_23575917_8 (episode VARCHAR, davids_team VARCHAR)", "question": "How many shows did team David consist of vernon kay and dara ó briain" }
### QUESTION For armenia as opponent team and edition is 2009 europe/africa group iiib mention all the opponent ### CONTEXT CREATE TABLE table_27877656_7 (opponent VARCHAR, edition VARCHAR, opponent_team VARCHAR) ### ANSWER SELECT opponent FROM table_27877656_7 WHERE edition = "2009 Europe/Africa Group IIIB" AND opponent_team = "Armenia"
{ "answer": "SELECT opponent FROM table_27877656_7 WHERE edition = \"2009 Europe/Africa Group IIIB\" AND opponent_team = \"Armenia\"", "context": "CREATE TABLE table_27877656_7 (opponent VARCHAR, edition VARCHAR, opponent_team VARCHAR)", "question": "For armenia as opponent team and edition is 2009 europe/africa group iiib mention all the opponent" }
### QUESTION What shows for House 1950 when the Governors 1950 show governors 1995? ### CONTEXT CREATE TABLE table_name_39 (house_1950 VARCHAR, governors_1950 VARCHAR) ### ANSWER SELECT house_1950 FROM table_name_39 WHERE governors_1950 = "governors 1995"
{ "answer": "SELECT house_1950 FROM table_name_39 WHERE governors_1950 = \"governors 1995\"", "context": "CREATE TABLE table_name_39 (house_1950 VARCHAR, governors_1950 VARCHAR)", "question": "What shows for House 1950 when the Governors 1950 show governors 1995?" }
### QUESTION Show names of shops that have more than one kind of device in stock. ### CONTEXT CREATE TABLE shop (Shop_Name VARCHAR, Shop_ID VARCHAR); CREATE TABLE stock (Shop_ID VARCHAR) ### ANSWER SELECT T2.Shop_Name FROM stock AS T1 JOIN shop AS T2 ON T1.Shop_ID = T2.Shop_ID GROUP BY T1.Shop_ID HAVING COUNT(*) > 1
{ "answer": "SELECT T2.Shop_Name FROM stock AS T1 JOIN shop AS T2 ON T1.Shop_ID = T2.Shop_ID GROUP BY T1.Shop_ID HAVING COUNT(*) > 1", "context": "CREATE TABLE shop (Shop_Name VARCHAR, Shop_ID VARCHAR); CREATE TABLE stock (Shop_ID VARCHAR)", "question": "Show names of shops that have more than one kind of device in stock." }
### QUESTION What game did the Bruins have 56 points? ### CONTEXT CREATE TABLE table_20760407_1 (game INTEGER, bruins_points VARCHAR) ### ANSWER SELECT MAX(game) FROM table_20760407_1 WHERE bruins_points = 56
{ "answer": "SELECT MAX(game) FROM table_20760407_1 WHERE bruins_points = 56", "context": "CREATE TABLE table_20760407_1 (game INTEGER, bruins_points VARCHAR)", "question": "What game did the Bruins have 56 points?" }
### QUESTION What is the average number of gold medals won by Brazil for entries with more than 1 bronze medal but a total smaller than 4? ### CONTEXT CREATE TABLE table_name_19 (gold INTEGER, bronze VARCHAR, total VARCHAR, nation VARCHAR) ### ANSWER SELECT AVG(gold) FROM table_name_19 WHERE total < 4 AND nation = "brazil" AND bronze > 1
{ "answer": "SELECT AVG(gold) FROM table_name_19 WHERE total < 4 AND nation = \"brazil\" AND bronze > 1", "context": "CREATE TABLE table_name_19 (gold INTEGER, bronze VARCHAR, total VARCHAR, nation VARCHAR)", "question": "What is the average number of gold medals won by Brazil for entries with more than 1 bronze medal but a total smaller than 4?" }
### QUESTION Name the least pick number for steven turner ### CONTEXT CREATE TABLE table_25017530_5 (pick__number INTEGER, player VARCHAR) ### ANSWER SELECT MIN(pick__number) FROM table_25017530_5 WHERE player = "Steven Turner"
{ "answer": "SELECT MIN(pick__number) FROM table_25017530_5 WHERE player = \"Steven Turner\"", "context": "CREATE TABLE table_25017530_5 (pick__number INTEGER, player VARCHAR)", "question": "Name the least pick number for steven turner" }
### QUESTION Which date has a Week smaller than 14, and an Opponent of san francisco 49ers? ### CONTEXT CREATE TABLE table_name_92 (date VARCHAR, week VARCHAR, opponent VARCHAR) ### ANSWER SELECT date FROM table_name_92 WHERE week < 14 AND opponent = "san francisco 49ers"
{ "answer": "SELECT date FROM table_name_92 WHERE week < 14 AND opponent = \"san francisco 49ers\"", "context": "CREATE TABLE table_name_92 (date VARCHAR, week VARCHAR, opponent VARCHAR)", "question": "Which date has a Week smaller than 14, and an Opponent of san francisco 49ers?" }
### QUESTION Which Round has a Player of sammy okpro? ### CONTEXT CREATE TABLE table_name_32 (round INTEGER, player VARCHAR) ### ANSWER SELECT AVG(round) FROM table_name_32 WHERE player = "sammy okpro"
{ "answer": "SELECT AVG(round) FROM table_name_32 WHERE player = \"sammy okpro\"", "context": "CREATE TABLE table_name_32 (round INTEGER, player VARCHAR)", "question": "Which Round has a Player of sammy okpro?" }
### QUESTION What is the total of lane(s) for swimmers from Sweden with a 50m split of faster than 26.25? ### CONTEXT CREATE TABLE table_name_24 (lane INTEGER, nationality VARCHAR, split__50m_ VARCHAR) ### ANSWER SELECT SUM(lane) FROM table_name_24 WHERE nationality = "sweden" AND split__50m_ < 26.25
{ "answer": "SELECT SUM(lane) FROM table_name_24 WHERE nationality = \"sweden\" AND split__50m_ < 26.25", "context": "CREATE TABLE table_name_24 (lane INTEGER, nationality VARCHAR, split__50m_ VARCHAR)", "question": "What is the total of lane(s) for swimmers from Sweden with a 50m split of faster than 26.25?" }
### QUESTION What is the Founded year of the school located in Paul Smiths, New York? ### CONTEXT CREATE TABLE table_name_99 (founded VARCHAR, location VARCHAR) ### ANSWER SELECT founded FROM table_name_99 WHERE location = "paul smiths, new york"
{ "answer": "SELECT founded FROM table_name_99 WHERE location = \"paul smiths, new york\"", "context": "CREATE TABLE table_name_99 (founded VARCHAR, location VARCHAR)", "question": "What is the Founded year of the school located in Paul Smiths, New York?" }