text
stringlengths
146
1.06k
source
dict
### QUESTION what is the highest platform number when the frequency (per hour) is 4, the operator is london overground and the destination is west croydon? ### CONTEXT CREATE TABLE table_name_32 (platform INTEGER, destination VARCHAR, frequency__per_hour_ VARCHAR, operator VARCHAR) ### ANSWER SELECT MAX(platform) FROM table_name_32 WHERE frequency__per_hour_ = 4 AND operator = "london overground" AND destination = "west croydon"
{ "answer": "SELECT MAX(platform) FROM table_name_32 WHERE frequency__per_hour_ = 4 AND operator = \"london overground\" AND destination = \"west croydon\"", "context": "CREATE TABLE table_name_32 (platform INTEGER, destination VARCHAR, frequency__per_hour_ VARCHAR, operator VARCHAR)", "question": "what is the highest platform number when the frequency (per hour) is 4, the operator is london overground and the destination is west croydon?" }
### QUESTION What is the result of the game at Bishop Kearney Field on August 2? ### CONTEXT CREATE TABLE table_name_24 (result VARCHAR, field VARCHAR, date VARCHAR) ### ANSWER SELECT result FROM table_name_24 WHERE field = "bishop kearney field" AND date = "august 2"
{ "answer": "SELECT result FROM table_name_24 WHERE field = \"bishop kearney field\" AND date = \"august 2\"", "context": "CREATE TABLE table_name_24 (result VARCHAR, field VARCHAR, date VARCHAR)", "question": "What is the result of the game at Bishop Kearney Field on August 2?" }
### QUESTION What is the administrative panel average when the cultural and educational panel is greater than 1 and the industrial and commercial panel less than 4? ### CONTEXT CREATE TABLE table_name_77 (administrative_panel INTEGER, cultural_and_educational_panel VARCHAR, industrial_and_commercial_panel VARCHAR) ### ANSWER SELECT AVG(administrative_panel) FROM table_name_77 WHERE cultural_and_educational_panel > 1 AND industrial_and_commercial_panel < 4
{ "answer": "SELECT AVG(administrative_panel) FROM table_name_77 WHERE cultural_and_educational_panel > 1 AND industrial_and_commercial_panel < 4", "context": "CREATE TABLE table_name_77 (administrative_panel INTEGER, cultural_and_educational_panel VARCHAR, industrial_and_commercial_panel VARCHAR)", "question": "What is the administrative panel average when the cultural and educational panel is greater than 1 and the industrial and commercial panel less than 4?" }
### QUESTION What is the value of the size (steps) that has just ratio 10:9 and a size (cents) more than 160 ### CONTEXT CREATE TABLE table_name_26 (size__steps_ VARCHAR, just_ratio VARCHAR, size__cents_ VARCHAR) ### ANSWER SELECT COUNT(size__steps_) FROM table_name_26 WHERE just_ratio = "10:9" AND size__cents_ > 160
{ "answer": "SELECT COUNT(size__steps_) FROM table_name_26 WHERE just_ratio = \"10:9\" AND size__cents_ > 160", "context": "CREATE TABLE table_name_26 (size__steps_ VARCHAR, just_ratio VARCHAR, size__cents_ VARCHAR)", "question": "What is the value of the size (steps) that has just ratio 10:9 and a size (cents) more than 160" }
### QUESTION What is Date (Opening), when Opening Film is "Another Myanmar, Mae Sot"? ### CONTEXT CREATE TABLE table_name_47 (date__opening_ VARCHAR, opening_film VARCHAR) ### ANSWER SELECT date__opening_ FROM table_name_47 WHERE opening_film = "another myanmar, mae sot"
{ "answer": "SELECT date__opening_ FROM table_name_47 WHERE opening_film = \"another myanmar, mae sot\"", "context": "CREATE TABLE table_name_47 (date__opening_ VARCHAR, opening_film VARCHAR)", "question": "What is Date (Opening), when Opening Film is \"Another Myanmar, Mae Sot\"?" }
### QUESTION What is the Frequency at the Market/Rank of Burlington - Plattsburgh , Vermont - New York /143? ### CONTEXT CREATE TABLE table_10333757_1 (frequency VARCHAR, market_rank VARCHAR) ### ANSWER SELECT COUNT(frequency) FROM table_10333757_1 WHERE market_rank = "Burlington - Plattsburgh , Vermont - New York /143"
{ "answer": "SELECT COUNT(frequency) FROM table_10333757_1 WHERE market_rank = \"Burlington - Plattsburgh , Vermont - New York /143\"", "context": "CREATE TABLE table_10333757_1 (frequency VARCHAR, market_rank VARCHAR)", "question": "What is the Frequency at the Market/Rank of Burlington - Plattsburgh , Vermont - New York /143?" }
### QUESTION Which School has an Enrollment larger than 264, and a County of 46 la porte? ### CONTEXT CREATE TABLE table_name_52 (school VARCHAR, enrollment VARCHAR, county VARCHAR) ### ANSWER SELECT school FROM table_name_52 WHERE enrollment > 264 AND county = "46 la porte"
{ "answer": "SELECT school FROM table_name_52 WHERE enrollment > 264 AND county = \"46 la porte\"", "context": "CREATE TABLE table_name_52 (school VARCHAR, enrollment VARCHAR, county VARCHAR)", "question": "Which School has an Enrollment larger than 264, and a County of 46 la porte?" }
### QUESTION Who was Silva's Partner in the match with a Score of 6–3, 7–6 (7–3)? ### CONTEXT CREATE TABLE table_name_64 (partner VARCHAR, score VARCHAR) ### ANSWER SELECT partner FROM table_name_64 WHERE score = "6–3, 7–6 (7–3)"
{ "answer": "SELECT partner FROM table_name_64 WHERE score = \"6–3, 7–6 (7–3)\"", "context": "CREATE TABLE table_name_64 (partner VARCHAR, score VARCHAR)", "question": "Who was Silva's Partner in the match with a Score of 6–3, 7–6 (7–3)?" }
### QUESTION How many weeks was K.Maro at #1? ### CONTEXT CREATE TABLE table_27441210_12 (weeks_at__number1 INTEGER, artist VARCHAR) ### ANSWER SELECT MAX(weeks_at__number1) FROM table_27441210_12 WHERE artist = "K.Maro"
{ "answer": "SELECT MAX(weeks_at__number1) FROM table_27441210_12 WHERE artist = \"K.Maro\"", "context": "CREATE TABLE table_27441210_12 (weeks_at__number1 INTEGER, artist VARCHAR)", "question": "How many weeks was K.Maro at #1?" }
### QUESTION How many faculty members have 20 years of experience? ### CONTEXT CREATE TABLE table_17384764_1 (designation VARCHAR, experience VARCHAR) ### ANSWER SELECT COUNT(designation) FROM table_17384764_1 WHERE experience = "20 years"
{ "answer": "SELECT COUNT(designation) FROM table_17384764_1 WHERE experience = \"20 years\"", "context": "CREATE TABLE table_17384764_1 (designation VARCHAR, experience VARCHAR)", "question": "How many faculty members have 20 years of experience? " }
### QUESTION List the document type code for the document with the id 2. ### CONTEXT CREATE TABLE Documents (document_type_code VARCHAR, document_id VARCHAR) ### ANSWER SELECT document_type_code FROM Documents WHERE document_id = 2
{ "answer": "SELECT document_type_code FROM Documents WHERE document_id = 2", "context": "CREATE TABLE Documents (document_type_code VARCHAR, document_id VARCHAR)", "question": "List the document type code for the document with the id 2." }
### QUESTION What are the children per donor in the country where the allowed recipients are married or in cohabitation? ### CONTEXT CREATE TABLE table_16175217_1 (children_per_donor VARCHAR, allowed_recipients VARCHAR) ### ANSWER SELECT children_per_donor FROM table_16175217_1 WHERE allowed_recipients = "Married or in cohabitation"
{ "answer": "SELECT children_per_donor FROM table_16175217_1 WHERE allowed_recipients = \"Married or in cohabitation\"", "context": "CREATE TABLE table_16175217_1 (children_per_donor VARCHAR, allowed_recipients VARCHAR)", "question": "What are the children per donor in the country where the allowed recipients are married or in cohabitation?" }
### QUESTION Who is the player who went to Stanford? ### CONTEXT CREATE TABLE table_name_8 (player VARCHAR, school_club_team VARCHAR) ### ANSWER SELECT player FROM table_name_8 WHERE school_club_team = "stanford"
{ "answer": "SELECT player FROM table_name_8 WHERE school_club_team = \"stanford\"", "context": "CREATE TABLE table_name_8 (player VARCHAR, school_club_team VARCHAR)", "question": "Who is the player who went to Stanford?" }
### QUESTION Which Driver has a Grid smaller than 17, and Points larger than 0, and a Lapse of 87, and a Time/Retired of 1:48:11.023? ### CONTEXT CREATE TABLE table_name_72 (driver VARCHAR, time_retired VARCHAR, laps VARCHAR, grid VARCHAR, points VARCHAR) ### ANSWER SELECT driver FROM table_name_72 WHERE grid < 17 AND points > 0 AND laps = 87 AND time_retired = "1:48:11.023"
{ "answer": "SELECT driver FROM table_name_72 WHERE grid < 17 AND points > 0 AND laps = 87 AND time_retired = \"1:48:11.023\"", "context": "CREATE TABLE table_name_72 (driver VARCHAR, time_retired VARCHAR, laps VARCHAR, grid VARCHAR, points VARCHAR)", "question": "Which Driver has a Grid smaller than 17, and Points larger than 0, and a Lapse of 87, and a Time/Retired of 1:48:11.023?" }
### QUESTION What is the smallest rank for an industry of banking, a company of bank of america, and profits (billion $) larger than 16.47? ### CONTEXT CREATE TABLE table_name_36 (rank INTEGER, profits__billion_$_ VARCHAR, industry VARCHAR, company VARCHAR) ### ANSWER SELECT MIN(rank) FROM table_name_36 WHERE industry = "banking" AND company = "bank of america" AND profits__billion_$_ > 16.47
{ "answer": "SELECT MIN(rank) FROM table_name_36 WHERE industry = \"banking\" AND company = \"bank of america\" AND profits__billion_$_ > 16.47", "context": "CREATE TABLE table_name_36 (rank INTEGER, profits__billion_$_ VARCHAR, industry VARCHAR, company VARCHAR)", "question": "What is the smallest rank for an industry of banking, a company of bank of america, and profits (billion $) larger than 16.47?" }
### QUESTION Whose attendance was the highest when the team played Arsenal? ### CONTEXT CREATE TABLE table_name_95 (attendance INTEGER, opponent VARCHAR) ### ANSWER SELECT MAX(attendance) FROM table_name_95 WHERE opponent = "arsenal"
{ "answer": "SELECT MAX(attendance) FROM table_name_95 WHERE opponent = \"arsenal\"", "context": "CREATE TABLE table_name_95 (attendance INTEGER, opponent VARCHAR)", "question": "Whose attendance was the highest when the team played Arsenal?" }
### QUESTION What is the lowest # in Atlanta, GA with the Georgia Bulldogs as an opponent? ### CONTEXT CREATE TABLE table_15647838_3 (_number INTEGER, location VARCHAR, opponent VARCHAR) ### ANSWER SELECT MIN(_number) FROM table_15647838_3 WHERE location = "Atlanta, GA" AND opponent = "Georgia Bulldogs"
{ "answer": "SELECT MIN(_number) FROM table_15647838_3 WHERE location = \"Atlanta, GA\" AND opponent = \"Georgia Bulldogs\"", "context": "CREATE TABLE table_15647838_3 (_number INTEGER, location VARCHAR, opponent VARCHAR)", "question": "What is the lowest # in Atlanta, GA with the Georgia Bulldogs as an opponent?" }
### QUESTION Find the cell mobile number of the candidates whose assessment code is "Fail"? ### CONTEXT CREATE TABLE candidates (candidate_id VARCHAR); CREATE TABLE people (cell_mobile_number VARCHAR, person_id VARCHAR); CREATE TABLE candidate_assessments (candidate_id VARCHAR, asessment_outcome_code VARCHAR) ### ANSWER SELECT T3.cell_mobile_number FROM candidates AS T1 JOIN candidate_assessments AS T2 ON T1.candidate_id = T2.candidate_id JOIN people AS T3 ON T1.candidate_id = T3.person_id WHERE T2.asessment_outcome_code = "Fail"
{ "answer": "SELECT T3.cell_mobile_number FROM candidates AS T1 JOIN candidate_assessments AS T2 ON T1.candidate_id = T2.candidate_id JOIN people AS T3 ON T1.candidate_id = T3.person_id WHERE T2.asessment_outcome_code = \"Fail\"", "context": "CREATE TABLE candidates (candidate_id VARCHAR); CREATE TABLE people (cell_mobile_number VARCHAR, person_id VARCHAR); CREATE TABLE candidate_assessments (candidate_id VARCHAR, asessment_outcome_code VARCHAR)", "question": "Find the cell mobile number of the candidates whose assessment code is \"Fail\"?" }
### QUESTION What are the names of movies that get 3 star and 4 star? ### CONTEXT CREATE TABLE Rating (mID VARCHAR, stars VARCHAR); CREATE TABLE Movie (title VARCHAR, mID VARCHAR) ### ANSWER SELECT T2.title FROM Rating AS T1 JOIN Movie AS T2 ON T1.mID = T2.mID WHERE T1.stars = 3 INTERSECT SELECT T2.title FROM Rating AS T1 JOIN Movie AS T2 ON T1.mID = T2.mID WHERE T1.stars = 4
{ "answer": "SELECT T2.title FROM Rating AS T1 JOIN Movie AS T2 ON T1.mID = T2.mID WHERE T1.stars = 3 INTERSECT SELECT T2.title FROM Rating AS T1 JOIN Movie AS T2 ON T1.mID = T2.mID WHERE T1.stars = 4", "context": "CREATE TABLE Rating (mID VARCHAR, stars VARCHAR); CREATE TABLE Movie (title VARCHAR, mID VARCHAR)", "question": "What are the names of movies that get 3 star and 4 star?" }
### QUESTION Who were the home team during the game that aired on Fox after 2007 on October 23? ### CONTEXT CREATE TABLE table_name_53 (designated_home VARCHAR, date VARCHAR, television VARCHAR, year VARCHAR) ### ANSWER SELECT designated_home FROM table_name_53 WHERE television = "fox" AND year > 2007 AND date = "october 23"
{ "answer": "SELECT designated_home FROM table_name_53 WHERE television = \"fox\" AND year > 2007 AND date = \"october 23\"", "context": "CREATE TABLE table_name_53 (designated_home VARCHAR, date VARCHAR, television VARCHAR, year VARCHAR)", "question": "Who were the home team during the game that aired on Fox after 2007 on October 23?" }
### QUESTION How many places associated with latitude 48.247662? ### CONTEXT CREATE TABLE table_18600760_13 (ansi_code VARCHAR, latitude VARCHAR) ### ANSWER SELECT COUNT(ansi_code) FROM table_18600760_13 WHERE latitude = "48.247662"
{ "answer": "SELECT COUNT(ansi_code) FROM table_18600760_13 WHERE latitude = \"48.247662\"", "context": "CREATE TABLE table_18600760_13 (ansi_code VARCHAR, latitude VARCHAR)", "question": "How many places associated with latitude 48.247662?" }
### QUESTION What country has a Youth (15-24) Literacy Rate Total of 99%, and a Youth Men of 98%? ### CONTEXT CREATE TABLE table_name_50 (country VARCHAR, youth__15_24__literacy_rate_total VARCHAR, youth_men VARCHAR) ### ANSWER SELECT country FROM table_name_50 WHERE youth__15_24__literacy_rate_total = "99%" AND youth_men = "98%"
{ "answer": "SELECT country FROM table_name_50 WHERE youth__15_24__literacy_rate_total = \"99%\" AND youth_men = \"98%\"", "context": "CREATE TABLE table_name_50 (country VARCHAR, youth__15_24__literacy_rate_total VARCHAR, youth_men VARCHAR)", "question": "What country has a Youth (15-24) Literacy Rate Total of 99%, and a Youth Men of 98%?" }
### QUESTION What team does Reed Sorenson drive for? ### CONTEXT CREATE TABLE table_name_22 (team VARCHAR, driver_s_ VARCHAR) ### ANSWER SELECT team FROM table_name_22 WHERE driver_s_ = "reed sorenson"
{ "answer": "SELECT team FROM table_name_22 WHERE driver_s_ = \"reed sorenson\"", "context": "CREATE TABLE table_name_22 (team VARCHAR, driver_s_ VARCHAR)", "question": "What team does Reed Sorenson drive for?" }
### QUESTION Which representative has a Termination of MIssion date Mar 25, 1976? ### CONTEXT CREATE TABLE table_name_59 (representative VARCHAR, termination_of_mission VARCHAR) ### ANSWER SELECT representative FROM table_name_59 WHERE termination_of_mission = "mar 25, 1976"
{ "answer": "SELECT representative FROM table_name_59 WHERE termination_of_mission = \"mar 25, 1976\"", "context": "CREATE TABLE table_name_59 (representative VARCHAR, termination_of_mission VARCHAR)", "question": "Which representative has a Termination of MIssion date Mar 25, 1976?" }
### QUESTION Name the total number of fin pos for 12 points of accident ### CONTEXT CREATE TABLE table_17304308_1 (fin_pos VARCHAR, points VARCHAR, time_retired VARCHAR) ### ANSWER SELECT COUNT(fin_pos) FROM table_17304308_1 WHERE points = "12" AND time_retired = "Accident"
{ "answer": "SELECT COUNT(fin_pos) FROM table_17304308_1 WHERE points = \"12\" AND time_retired = \"Accident\"", "context": "CREATE TABLE table_17304308_1 (fin_pos VARCHAR, points VARCHAR, time_retired VARCHAR)", "question": "Name the total number of fin pos for 12 points of accident" }
### QUESTION What was the overall record in the season where average attendance was 16720? ### CONTEXT CREATE TABLE table_2771237_1 (overall_record VARCHAR, average_attendance VARCHAR) ### ANSWER SELECT overall_record FROM table_2771237_1 WHERE average_attendance = 16720
{ "answer": "SELECT overall_record FROM table_2771237_1 WHERE average_attendance = 16720", "context": "CREATE TABLE table_2771237_1 (overall_record VARCHAR, average_attendance VARCHAR)", "question": "What was the overall record in the season where average attendance was 16720?" }
### QUESTION In which special stage named Tempo 2 was Sébastien Loeb the leader? ### CONTEXT CREATE TABLE table_21326205_2 (stage VARCHAR, rally_leader VARCHAR, name VARCHAR) ### ANSWER SELECT stage FROM table_21326205_2 WHERE rally_leader = "Sébastien Loeb" AND name = "Tempo 2"
{ "answer": "SELECT stage FROM table_21326205_2 WHERE rally_leader = \"Sébastien Loeb\" AND name = \"Tempo 2\"", "context": "CREATE TABLE table_21326205_2 (stage VARCHAR, rally_leader VARCHAR, name VARCHAR)", "question": "In which special stage named Tempo 2 was Sébastien Loeb the leader?" }
### QUESTION How many allsvenskan titles did club aik have after its introduction after 2000, with stars symbolizing the number of swedish championship titles ? ### CONTEXT CREATE TABLE table_name_78 (allsvenskan_titles INTEGER, introduced VARCHAR, stars_symbolizes VARCHAR, club VARCHAR) ### ANSWER SELECT SUM(allsvenskan_titles) FROM table_name_78 WHERE stars_symbolizes = "number of swedish championship titles" AND club = "aik" AND introduced > 2000
{ "answer": "SELECT SUM(allsvenskan_titles) FROM table_name_78 WHERE stars_symbolizes = \"number of swedish championship titles\" AND club = \"aik\" AND introduced > 2000", "context": "CREATE TABLE table_name_78 (allsvenskan_titles INTEGER, introduced VARCHAR, stars_symbolizes VARCHAR, club VARCHAR)", "question": "How many allsvenskan titles did club aik have after its introduction after 2000, with stars symbolizing the number of swedish championship titles ?" }
### QUESTION Show the facility codes of apartments with more than 4 bedrooms. ### CONTEXT CREATE TABLE Apartment_Facilities (facility_code VARCHAR, apt_id VARCHAR); CREATE TABLE Apartments (apt_id VARCHAR, bedroom_count INTEGER) ### ANSWER SELECT T1.facility_code FROM Apartment_Facilities AS T1 JOIN Apartments AS T2 ON T1.apt_id = T2.apt_id WHERE T2.bedroom_count > 4
{ "answer": "SELECT T1.facility_code FROM Apartment_Facilities AS T1 JOIN Apartments AS T2 ON T1.apt_id = T2.apt_id WHERE T2.bedroom_count > 4", "context": "CREATE TABLE Apartment_Facilities (facility_code VARCHAR, apt_id VARCHAR); CREATE TABLE Apartments (apt_id VARCHAR, bedroom_count INTEGER)", "question": "Show the facility codes of apartments with more than 4 bedrooms." }
### QUESTION What are the records of games where high rebounds is amar'e stoudemire (11) ### CONTEXT CREATE TABLE table_17340355_6 (record VARCHAR, high_rebounds VARCHAR) ### ANSWER SELECT COUNT(record) FROM table_17340355_6 WHERE high_rebounds = "Amar'e Stoudemire (11)"
{ "answer": "SELECT COUNT(record) FROM table_17340355_6 WHERE high_rebounds = \"Amar'e Stoudemire (11)\"", "context": "CREATE TABLE table_17340355_6 (record VARCHAR, high_rebounds VARCHAR)", "question": "What are the records of games where high rebounds is amar'e stoudemire (11)" }
### QUESTION What is the number of points for east germany, and a Places of 88? ### CONTEXT CREATE TABLE table_name_84 (points INTEGER, nation VARCHAR, places VARCHAR) ### ANSWER SELECT SUM(points) FROM table_name_84 WHERE nation = "east germany" AND places = "88"
{ "answer": "SELECT SUM(points) FROM table_name_84 WHERE nation = \"east germany\" AND places = \"88\"", "context": "CREATE TABLE table_name_84 (points INTEGER, nation VARCHAR, places VARCHAR)", "question": "What is the number of points for east germany, and a Places of 88?" }
### QUESTION What is the last episode in the season that had 3.91 million viewers in the US? ### CONTEXT CREATE TABLE table_29154676_1 (season_no INTEGER, us_viewers__millions_ VARCHAR) ### ANSWER SELECT MIN(season_no) FROM table_29154676_1 WHERE us_viewers__millions_ = "3.91"
{ "answer": "SELECT MIN(season_no) FROM table_29154676_1 WHERE us_viewers__millions_ = \"3.91\"", "context": "CREATE TABLE table_29154676_1 (season_no INTEGER, us_viewers__millions_ VARCHAR)", "question": "What is the last episode in the season that had 3.91 million viewers in the US?" }
### QUESTION What player was place of t1 in To Par and had a score of 70-73-69=212? ### CONTEXT CREATE TABLE table_name_81 (to_par VARCHAR, place VARCHAR, score VARCHAR) ### ANSWER SELECT to_par FROM table_name_81 WHERE place = "t1" AND score = 70 - 73 - 69 = 212
{ "answer": "SELECT to_par FROM table_name_81 WHERE place = \"t1\" AND score = 70 - 73 - 69 = 212", "context": "CREATE TABLE table_name_81 (to_par VARCHAR, place VARCHAR, score VARCHAR)", "question": "What player was place of t1 in To Par and had a score of 70-73-69=212?" }
### QUESTION Who is the representative with a presentation of credentials date on February 23, 1854? ### CONTEXT CREATE TABLE table_name_32 (representative VARCHAR, presentation_of_credentials VARCHAR) ### ANSWER SELECT representative FROM table_name_32 WHERE presentation_of_credentials = "february 23, 1854"
{ "answer": "SELECT representative FROM table_name_32 WHERE presentation_of_credentials = \"february 23, 1854\"", "context": "CREATE TABLE table_name_32 (representative VARCHAR, presentation_of_credentials VARCHAR)", "question": "Who is the representative with a presentation of credentials date on February 23, 1854?" }
### QUESTION Find the average age of students who live in the city with code "NYC" and have secretary votes in the spring election cycle. ### CONTEXT CREATE TABLE STUDENT (Age INTEGER, StuID VARCHAR, city_code VARCHAR); CREATE TABLE VOTING_RECORD (Election_Cycle VARCHAR) ### ANSWER SELECT AVG(T1.Age) FROM STUDENT AS T1 JOIN VOTING_RECORD AS T2 ON T1.StuID = SECRETARY_Vote WHERE T1.city_code = "NYC" AND T2.Election_Cycle = "Spring"
{ "answer": "SELECT AVG(T1.Age) FROM STUDENT AS T1 JOIN VOTING_RECORD AS T2 ON T1.StuID = SECRETARY_Vote WHERE T1.city_code = \"NYC\" AND T2.Election_Cycle = \"Spring\"", "context": "CREATE TABLE STUDENT (Age INTEGER, StuID VARCHAR, city_code VARCHAR); CREATE TABLE VOTING_RECORD (Election_Cycle VARCHAR)", "question": "Find the average age of students who live in the city with code \"NYC\" and have secretary votes in the spring election cycle." }
### QUESTION When frederick remann (r) is the vacator what is the reason for vacancy? ### CONTEXT CREATE TABLE table_2417445_4 (reason_for_vacancy VARCHAR, vacator VARCHAR) ### ANSWER SELECT reason_for_vacancy FROM table_2417445_4 WHERE vacator = "Frederick Remann (R)"
{ "answer": "SELECT reason_for_vacancy FROM table_2417445_4 WHERE vacator = \"Frederick Remann (R)\"", "context": "CREATE TABLE table_2417445_4 (reason_for_vacancy VARCHAR, vacator VARCHAR)", "question": "When frederick remann (r) is the vacator what is the reason for vacancy?" }
### QUESTION Who is the driver of the Chevrolet engine that is sponsored by godaddy.com? ### CONTEXT CREATE TABLE table_2503102_1 (driver_s_ VARCHAR, engine VARCHAR, car_sponsor_s_ VARCHAR) ### ANSWER SELECT driver_s_ FROM table_2503102_1 WHERE engine = "Chevrolet" AND car_sponsor_s_ = "GoDaddy.com"
{ "answer": "SELECT driver_s_ FROM table_2503102_1 WHERE engine = \"Chevrolet\" AND car_sponsor_s_ = \"GoDaddy.com\"", "context": "CREATE TABLE table_2503102_1 (driver_s_ VARCHAR, engine VARCHAR, car_sponsor_s_ VARCHAR)", "question": "Who is the driver of the Chevrolet engine that is sponsored by godaddy.com?" }
### QUESTION Which Total population (2005 estimate) has a Province of west kalimantan (kalimantan barat), and an Area (km 2) smaller than 147,307.00? ### CONTEXT CREATE TABLE table_name_78 (total_population__2005_estimate_ INTEGER, province VARCHAR, area__km_2__ VARCHAR) ### ANSWER SELECT AVG(total_population__2005_estimate_) FROM table_name_78 WHERE province = "west kalimantan (kalimantan barat)" AND area__km_2__ < 147 OFFSET 307.00
{ "answer": "SELECT AVG(total_population__2005_estimate_) FROM table_name_78 WHERE province = \"west kalimantan (kalimantan barat)\" AND area__km_2__ < 147 OFFSET 307.00", "context": "CREATE TABLE table_name_78 (total_population__2005_estimate_ INTEGER, province VARCHAR, area__km_2__ VARCHAR)", "question": "Which Total population (2005 estimate) has a Province of west kalimantan (kalimantan barat), and an Area (km 2) smaller than 147,307.00?" }
### QUESTION What To par has a Place of t10, and a Score of 67-73=140? ### CONTEXT CREATE TABLE table_name_74 (to_par VARCHAR, place VARCHAR, score VARCHAR) ### ANSWER SELECT to_par FROM table_name_74 WHERE place = "t10" AND score = 67 - 73 = 140
{ "answer": "SELECT to_par FROM table_name_74 WHERE place = \"t10\" AND score = 67 - 73 = 140", "context": "CREATE TABLE table_name_74 (to_par VARCHAR, place VARCHAR, score VARCHAR)", "question": "What To par has a Place of t10, and a Score of 67-73=140?" }
### QUESTION What was the recorded result under presidential majority 2000/2004 when the presiditial majority in 2012 was non-voting? ### CONTEXT CREATE TABLE table_14700336_1 (presidential_majority_2000_2004 VARCHAR, presidential_majority_2012 VARCHAR) ### ANSWER SELECT presidential_majority_2000_2004 FROM table_14700336_1 WHERE presidential_majority_2012 = "Non-voting"
{ "answer": "SELECT presidential_majority_2000_2004 FROM table_14700336_1 WHERE presidential_majority_2012 = \"Non-voting\"", "context": "CREATE TABLE table_14700336_1 (presidential_majority_2000_2004 VARCHAR, presidential_majority_2012 VARCHAR)", "question": "What was the recorded result under presidential majority 2000/2004 when the presiditial majority in 2012 was non-voting?" }
### QUESTION What is the occupation of the candidate that has a riding of labrador? ### CONTEXT CREATE TABLE table_name_11 (occupation VARCHAR, riding VARCHAR) ### ANSWER SELECT occupation FROM table_name_11 WHERE riding = "labrador"
{ "answer": "SELECT occupation FROM table_name_11 WHERE riding = \"labrador\"", "context": "CREATE TABLE table_name_11 (occupation VARCHAR, riding VARCHAR)", "question": "What is the occupation of the candidate that has a riding of labrador?" }
### QUESTION During the Tournament of 1st Division El Salvador, what was the Finish for the Team of Platense Municipal Zacatecoluca? ### CONTEXT CREATE TABLE table_name_25 (finish VARCHAR, team VARCHAR, tournament VARCHAR) ### ANSWER SELECT finish FROM table_name_25 WHERE team = "platense municipal zacatecoluca" AND tournament = "1st division el salvador"
{ "answer": "SELECT finish FROM table_name_25 WHERE team = \"platense municipal zacatecoluca\" AND tournament = \"1st division el salvador\"", "context": "CREATE TABLE table_name_25 (finish VARCHAR, team VARCHAR, tournament VARCHAR)", "question": "During the Tournament of 1st Division El Salvador, what was the Finish for the Team of Platense Municipal Zacatecoluca?" }
### QUESTION At what venue did Alex Mettam/Mark Williams be named Man of the Match? ### CONTEXT CREATE TABLE table_17120964_6 (venue VARCHAR, man_of_the_match VARCHAR) ### ANSWER SELECT venue FROM table_17120964_6 WHERE man_of_the_match = "Alex Mettam/Mark Williams"
{ "answer": "SELECT venue FROM table_17120964_6 WHERE man_of_the_match = \"Alex Mettam/Mark Williams\"", "context": "CREATE TABLE table_17120964_6 (venue VARCHAR, man_of_the_match VARCHAR)", "question": "At what venue did Alex Mettam/Mark Williams be named Man of the Match?" }
### QUESTION What are the id and name of the museum visited most times? ### CONTEXT CREATE TABLE museum (name VARCHAR, Museum_ID VARCHAR); CREATE TABLE visit (Museum_ID VARCHAR) ### ANSWER SELECT t2.Museum_ID, t1.name FROM museum AS t1 JOIN visit AS t2 ON t1.Museum_ID = t2.Museum_ID GROUP BY t2.Museum_ID ORDER BY COUNT(*) DESC LIMIT 1
{ "answer": "SELECT t2.Museum_ID, t1.name FROM museum AS t1 JOIN visit AS t2 ON t1.Museum_ID = t2.Museum_ID GROUP BY t2.Museum_ID ORDER BY COUNT(*) DESC LIMIT 1", "context": "CREATE TABLE museum (name VARCHAR, Museum_ID VARCHAR); CREATE TABLE visit (Museum_ID VARCHAR)", "question": "What are the id and name of the museum visited most times?" }
### QUESTION Which date had a year under 1988, loser of Philadelphia Eagles, location of Giants Stadium, and a result of 21-0? ### CONTEXT CREATE TABLE table_name_68 (date VARCHAR, result VARCHAR, location VARCHAR, year VARCHAR, loser VARCHAR) ### ANSWER SELECT date FROM table_name_68 WHERE year < 1988 AND loser = "philadelphia eagles" AND location = "giants stadium" AND result = "21-0"
{ "answer": "SELECT date FROM table_name_68 WHERE year < 1988 AND loser = \"philadelphia eagles\" AND location = \"giants stadium\" AND result = \"21-0\"", "context": "CREATE TABLE table_name_68 (date VARCHAR, result VARCHAR, location VARCHAR, year VARCHAR, loser VARCHAR)", "question": "Which date had a year under 1988, loser of Philadelphia Eagles, location of Giants Stadium, and a result of 21-0?" }
### QUESTION What is the lowest gold when there are 0 bronze and the total is less than 2, and silver is less than 0? ### CONTEXT CREATE TABLE table_name_24 (gold INTEGER, silver VARCHAR, bronze VARCHAR, total VARCHAR) ### ANSWER SELECT MIN(gold) FROM table_name_24 WHERE bronze = 0 AND total < 2 AND silver < 0
{ "answer": "SELECT MIN(gold) FROM table_name_24 WHERE bronze = 0 AND total < 2 AND silver < 0", "context": "CREATE TABLE table_name_24 (gold INTEGER, silver VARCHAR, bronze VARCHAR, total VARCHAR)", "question": "What is the lowest gold when there are 0 bronze and the total is less than 2, and silver is less than 0?" }
### QUESTION What is the least score for interview with a preliminaries score less than 9.4, evening gown score less than 9.55, and swimsuit score more than 9.18 in New York? ### CONTEXT CREATE TABLE table_name_79 (interview INTEGER, swimsuit VARCHAR, country VARCHAR, preliminaries VARCHAR, evening_gown VARCHAR) ### ANSWER SELECT MIN(interview) FROM table_name_79 WHERE preliminaries < 9.4 AND evening_gown < 9.55 AND country = "new york" AND swimsuit > 9.18
{ "answer": "SELECT MIN(interview) FROM table_name_79 WHERE preliminaries < 9.4 AND evening_gown < 9.55 AND country = \"new york\" AND swimsuit > 9.18", "context": "CREATE TABLE table_name_79 (interview INTEGER, swimsuit VARCHAR, country VARCHAR, preliminaries VARCHAR, evening_gown VARCHAR)", "question": "What is the least score for interview with a preliminaries score less than 9.4, evening gown score less than 9.55, and swimsuit score more than 9.18 in New York?" }
### QUESTION What is the total latitude of the greenland township with more than 34.846 sqmi of land, a geo id less than 3805529660, and an ANSI code greater than 1036405? ### CONTEXT CREATE TABLE table_name_45 (latitude VARCHAR, ansi_code VARCHAR, township VARCHAR, land___sqmi__ VARCHAR, geo_id VARCHAR) ### ANSWER SELECT COUNT(latitude) FROM table_name_45 WHERE land___sqmi__ > 34.846 AND geo_id < 3805529660 AND township = "greenland" AND ansi_code > 1036405
{ "answer": "SELECT COUNT(latitude) FROM table_name_45 WHERE land___sqmi__ > 34.846 AND geo_id < 3805529660 AND township = \"greenland\" AND ansi_code > 1036405", "context": "CREATE TABLE table_name_45 (latitude VARCHAR, ansi_code VARCHAR, township VARCHAR, land___sqmi__ VARCHAR, geo_id VARCHAR)", "question": "What is the total latitude of the greenland township with more than 34.846 sqmi of land, a geo id less than 3805529660, and an ANSI code greater than 1036405?" }
### QUESTION Which Android has anOther Unix of unknown? ### CONTEXT CREATE TABLE table_name_42 (android VARCHAR, other_unix VARCHAR) ### ANSWER SELECT android FROM table_name_42 WHERE other_unix = "unknown"
{ "answer": "SELECT android FROM table_name_42 WHERE other_unix = \"unknown\"", "context": "CREATE TABLE table_name_42 (android VARCHAR, other_unix VARCHAR)", "question": "Which Android has anOther Unix of unknown?" }
### QUESTION Which competition occurred after 1980 with a score of 0:5 in Jerusalem? ### CONTEXT CREATE TABLE table_name_51 (competition VARCHAR, location VARCHAR, year VARCHAR, score VARCHAR) ### ANSWER SELECT competition FROM table_name_51 WHERE year > 1980 AND score = "0:5" AND location = "jerusalem"
{ "answer": "SELECT competition FROM table_name_51 WHERE year > 1980 AND score = \"0:5\" AND location = \"jerusalem\"", "context": "CREATE TABLE table_name_51 (competition VARCHAR, location VARCHAR, year VARCHAR, score VARCHAR)", "question": "Which competition occurred after 1980 with a score of 0:5 in Jerusalem?" }
### QUESTION How many orders does Lucas Mancini has? ### CONTEXT CREATE TABLE invoices (customer_id VARCHAR); CREATE TABLE customers (id VARCHAR, first_name VARCHAR, last_name VARCHAR) ### ANSWER SELECT COUNT(*) FROM customers AS T1 JOIN invoices AS T2 ON T1.id = T2.customer_id WHERE T1.first_name = "Lucas" AND T1.last_name = "Mancini"
{ "answer": "SELECT COUNT(*) FROM customers AS T1 JOIN invoices AS T2 ON T1.id = T2.customer_id WHERE T1.first_name = \"Lucas\" AND T1.last_name = \"Mancini\"", "context": "CREATE TABLE invoices (customer_id VARCHAR); CREATE TABLE customers (id VARCHAR, first_name VARCHAR, last_name VARCHAR)", "question": "How many orders does Lucas Mancini has?" }
### QUESTION Who directed the film that Avie Luthra received an award for? ### CONTEXT CREATE TABLE table_name_63 (director_s_ VARCHAR, recipient VARCHAR) ### ANSWER SELECT director_s_ FROM table_name_63 WHERE recipient = "avie luthra"
{ "answer": "SELECT director_s_ FROM table_name_63 WHERE recipient = \"avie luthra\"", "context": "CREATE TABLE table_name_63 (director_s_ VARCHAR, recipient VARCHAR)", "question": "Who directed the film that Avie Luthra received an award for?" }
### QUESTION On what year did Newcombe first face Clark Graebner in a final match? ### CONTEXT CREATE TABLE table_23259077_1 (year INTEGER, opponent_in_the_final VARCHAR) ### ANSWER SELECT MIN(year) FROM table_23259077_1 WHERE opponent_in_the_final = "Clark Graebner"
{ "answer": "SELECT MIN(year) FROM table_23259077_1 WHERE opponent_in_the_final = \"Clark Graebner\"", "context": "CREATE TABLE table_23259077_1 (year INTEGER, opponent_in_the_final VARCHAR)", "question": "On what year did Newcombe first face Clark Graebner in a final match?" }
### QUESTION What is the sum of Overall, when Pick is greater than 5, when Round is less than 11, and when Name is "Tom Barrington"? ### CONTEXT CREATE TABLE table_name_69 (overall INTEGER, name VARCHAR, pick VARCHAR, round VARCHAR) ### ANSWER SELECT SUM(overall) FROM table_name_69 WHERE pick > 5 AND round < 11 AND name = "tom barrington"
{ "answer": "SELECT SUM(overall) FROM table_name_69 WHERE pick > 5 AND round < 11 AND name = \"tom barrington\"", "context": "CREATE TABLE table_name_69 (overall INTEGER, name VARCHAR, pick VARCHAR, round VARCHAR)", "question": "What is the sum of Overall, when Pick is greater than 5, when Round is less than 11, and when Name is \"Tom Barrington\"?" }
### QUESTION What is the platform for the game of the third-person shooter genre? ### CONTEXT CREATE TABLE table_name_65 (platform_s_ VARCHAR, genre VARCHAR) ### ANSWER SELECT platform_s_ FROM table_name_65 WHERE genre = "third-person shooter"
{ "answer": "SELECT platform_s_ FROM table_name_65 WHERE genre = \"third-person shooter\"", "context": "CREATE TABLE table_name_65 (platform_s_ VARCHAR, genre VARCHAR)", "question": "What is the platform for the game of the third-person shooter genre?" }
### QUESTION Show the document name and the document date for all documents on project with details 'Graph Database project'. ### CONTEXT CREATE TABLE Documents (project_id VARCHAR); CREATE TABLE projects (project_id VARCHAR, project_details VARCHAR) ### ANSWER SELECT document_name, document_date FROM Documents AS T1 JOIN projects AS T2 ON T1.project_id = T2.project_id WHERE T2.project_details = 'Graph Database project'
{ "answer": "SELECT document_name, document_date FROM Documents AS T1 JOIN projects AS T2 ON T1.project_id = T2.project_id WHERE T2.project_details = 'Graph Database project'", "context": "CREATE TABLE Documents (project_id VARCHAR); CREATE TABLE projects (project_id VARCHAR, project_details VARCHAR)", "question": "Show the document name and the document date for all documents on project with details 'Graph Database project'." }
### QUESTION How many Picks have a Position of defensive end, and an Overall smaller than 33? ### CONTEXT CREATE TABLE table_name_22 (pick__number VARCHAR, position VARCHAR, overall VARCHAR) ### ANSWER SELECT COUNT(pick__number) FROM table_name_22 WHERE position = "defensive end" AND overall < 33
{ "answer": "SELECT COUNT(pick__number) FROM table_name_22 WHERE position = \"defensive end\" AND overall < 33", "context": "CREATE TABLE table_name_22 (pick__number VARCHAR, position VARCHAR, overall VARCHAR)", "question": "How many Picks have a Position of defensive end, and an Overall smaller than 33?" }
### QUESTION where the land is 35.990 what is the number of the geo id ### CONTEXT CREATE TABLE table_18600760_19 (geo_id VARCHAR, land___sqmi__ VARCHAR) ### ANSWER SELECT geo_id FROM table_18600760_19 WHERE land___sqmi__ = "35.990"
{ "answer": "SELECT geo_id FROM table_18600760_19 WHERE land___sqmi__ = \"35.990\"", "context": "CREATE TABLE table_18600760_19 (geo_id VARCHAR, land___sqmi__ VARCHAR)", "question": "where the land is 35.990 what is the number of the geo id" }
### QUESTION What is the sum of value for average finish with poles less than 0? ### CONTEXT CREATE TABLE table_name_80 (avg_finish INTEGER, poles INTEGER) ### ANSWER SELECT SUM(avg_finish) FROM table_name_80 WHERE poles < 0
{ "answer": "SELECT SUM(avg_finish) FROM table_name_80 WHERE poles < 0", "context": "CREATE TABLE table_name_80 (avg_finish INTEGER, poles INTEGER)", "question": "What is the sum of value for average finish with poles less than 0?" }
### QUESTION When the winners votes were 50.54% who were the members of parliment? ### CONTEXT CREATE TABLE table_18106841_1 (members_of_parliament VARCHAR, winners__percentage_votes VARCHAR) ### ANSWER SELECT members_of_parliament FROM table_18106841_1 WHERE winners__percentage_votes = "50.54%"
{ "answer": "SELECT members_of_parliament FROM table_18106841_1 WHERE winners__percentage_votes = \"50.54%\"", "context": "CREATE TABLE table_18106841_1 (members_of_parliament VARCHAR, winners__percentage_votes VARCHAR)", "question": "When the winners votes were 50.54% who were the members of parliment?" }
### QUESTION What are the distinct template type descriptions for the templates ever used by any document? ### CONTEXT CREATE TABLE Templates (template_type_code VARCHAR, Template_ID VARCHAR); CREATE TABLE Documents (template_ID VARCHAR); CREATE TABLE Ref_template_types (template_type_description VARCHAR, template_type_code VARCHAR) ### ANSWER SELECT DISTINCT T1.template_type_description FROM Ref_template_types AS T1 JOIN Templates AS T2 ON T1.template_type_code = T2.template_type_code JOIN Documents AS T3 ON T2.Template_ID = T3.template_ID
{ "answer": "SELECT DISTINCT T1.template_type_description FROM Ref_template_types AS T1 JOIN Templates AS T2 ON T1.template_type_code = T2.template_type_code JOIN Documents AS T3 ON T2.Template_ID = T3.template_ID", "context": "CREATE TABLE Templates (template_type_code VARCHAR, Template_ID VARCHAR); CREATE TABLE Documents (template_ID VARCHAR); CREATE TABLE Ref_template_types (template_type_description VARCHAR, template_type_code VARCHAR)", "question": "What are the distinct template type descriptions for the templates ever used by any document?" }
### QUESTION Which format had a United States region and a date of August 11, 2009? ### CONTEXT CREATE TABLE table_name_92 (format VARCHAR, region VARCHAR, date VARCHAR) ### ANSWER SELECT format FROM table_name_92 WHERE region = "united states" AND date = "august 11, 2009"
{ "answer": "SELECT format FROM table_name_92 WHERE region = \"united states\" AND date = \"august 11, 2009\"", "context": "CREATE TABLE table_name_92 (format VARCHAR, region VARCHAR, date VARCHAR)", "question": "Which format had a United States region and a date of August 11, 2009?" }
### QUESTION Which time has a Rank larger than 3, and a Name of andrey kapralov? ### CONTEXT CREATE TABLE table_name_31 (time VARCHAR, rank VARCHAR, name VARCHAR) ### ANSWER SELECT time FROM table_name_31 WHERE rank > 3 AND name = "andrey kapralov"
{ "answer": "SELECT time FROM table_name_31 WHERE rank > 3 AND name = \"andrey kapralov\"", "context": "CREATE TABLE table_name_31 (time VARCHAR, rank VARCHAR, name VARCHAR)", "question": "Which time has a Rank larger than 3, and a Name of andrey kapralov?" }
### QUESTION When did slađana pejić, who was evicted on day 29, enter the house? ### CONTEXT CREATE TABLE table_name_82 (entered_the_house VARCHAR, evicted VARCHAR, name VARCHAR) ### ANSWER SELECT entered_the_house FROM table_name_82 WHERE evicted = "day 29" AND name = "slađana pejić"
{ "answer": "SELECT entered_the_house FROM table_name_82 WHERE evicted = \"day 29\" AND name = \"slađana pejić\"", "context": "CREATE TABLE table_name_82 (entered_the_house VARCHAR, evicted VARCHAR, name VARCHAR)", "question": "When did slađana pejić, who was evicted on day 29, enter the house?" }
### QUESTION Which events id does not have any participant with detail 'Kenyatta Kuhn'? ### CONTEXT CREATE TABLE Participants (Participant_ID VARCHAR); CREATE TABLE EVENTS (event_id VARCHAR, Participant_Details VARCHAR); CREATE TABLE Participants_in_Events (event_id VARCHAR, Participant_ID VARCHAR) ### ANSWER SELECT event_id FROM EVENTS EXCEPT SELECT T1.event_id FROM Participants_in_Events AS T1 JOIN Participants AS T2 ON T1.Participant_ID = T2.Participant_ID WHERE Participant_Details = 'Kenyatta Kuhn'
{ "answer": "SELECT event_id FROM EVENTS EXCEPT SELECT T1.event_id FROM Participants_in_Events AS T1 JOIN Participants AS T2 ON T1.Participant_ID = T2.Participant_ID WHERE Participant_Details = 'Kenyatta Kuhn'", "context": "CREATE TABLE Participants (Participant_ID VARCHAR); CREATE TABLE EVENTS (event_id VARCHAR, Participant_Details VARCHAR); CREATE TABLE Participants_in_Events (event_id VARCHAR, Participant_ID VARCHAR)", "question": "Which events id does not have any participant with detail 'Kenyatta Kuhn'?" }
### QUESTION what is the sum of tonnage when the type of ship is twin screw ro-ro motorship and the date entered service is 11 february 1983? ### CONTEXT CREATE TABLE table_name_73 (tonnage INTEGER, type_of_ship VARCHAR, date_entered_service VARCHAR) ### ANSWER SELECT SUM(tonnage) FROM table_name_73 WHERE type_of_ship = "twin screw ro-ro motorship" AND date_entered_service = "11 february 1983"
{ "answer": "SELECT SUM(tonnage) FROM table_name_73 WHERE type_of_ship = \"twin screw ro-ro motorship\" AND date_entered_service = \"11 february 1983\"", "context": "CREATE TABLE table_name_73 (tonnage INTEGER, type_of_ship VARCHAR, date_entered_service VARCHAR)", "question": "what is the sum of tonnage when the type of ship is twin screw ro-ro motorship and the date entered service is 11 february 1983?" }
### QUESTION What is the total enrollment for an affiliation of public, and was founded before 1866? ### CONTEXT CREATE TABLE table_name_43 (enrollment VARCHAR, affiliation VARCHAR, founded VARCHAR) ### ANSWER SELECT COUNT(enrollment) FROM table_name_43 WHERE affiliation = "public" AND founded < 1866
{ "answer": "SELECT COUNT(enrollment) FROM table_name_43 WHERE affiliation = \"public\" AND founded < 1866", "context": "CREATE TABLE table_name_43 (enrollment VARCHAR, affiliation VARCHAR, founded VARCHAR)", "question": "What is the total enrollment for an affiliation of public, and was founded before 1866?" }
### QUESTION How many tickets were sold/available when the gross revenue (2011) was $5,948,390? ### CONTEXT CREATE TABLE table_name_4 (tickets_sold___available VARCHAR, gross_revenue__2011_ VARCHAR) ### ANSWER SELECT tickets_sold___available FROM table_name_4 WHERE gross_revenue__2011_ = "$5,948,390"
{ "answer": "SELECT tickets_sold___available FROM table_name_4 WHERE gross_revenue__2011_ = \"$5,948,390\"", "context": "CREATE TABLE table_name_4 (tickets_sold___available VARCHAR, gross_revenue__2011_ VARCHAR)", "question": "How many tickets were sold/available when the gross revenue (2011) was $5,948,390?" }
### QUESTION What is the Borough for the Seward listing on 1977-11-23? ### CONTEXT CREATE TABLE table_name_54 (borough VARCHAR, location VARCHAR, listed VARCHAR) ### ANSWER SELECT borough FROM table_name_54 WHERE location = "seward" AND listed = "1977-11-23"
{ "answer": "SELECT borough FROM table_name_54 WHERE location = \"seward\" AND listed = \"1977-11-23\"", "context": "CREATE TABLE table_name_54 (borough VARCHAR, location VARCHAR, listed VARCHAR)", "question": "What is the Borough for the Seward listing on 1977-11-23?" }
### QUESTION Which record has 5:00 as the time, jess liaudin as the opponent for the location of england? ### CONTEXT CREATE TABLE table_name_49 (record VARCHAR, location VARCHAR, time VARCHAR, opponent VARCHAR) ### ANSWER SELECT record FROM table_name_49 WHERE time = "5:00" AND opponent = "jess liaudin" AND location = "england"
{ "answer": "SELECT record FROM table_name_49 WHERE time = \"5:00\" AND opponent = \"jess liaudin\" AND location = \"england\"", "context": "CREATE TABLE table_name_49 (record VARCHAR, location VARCHAR, time VARCHAR, opponent VARCHAR)", "question": "Which record has 5:00 as the time, jess liaudin as the opponent for the location of england?" }
### QUESTION If winner is alejandro Valverde and the points Classification is by Erik Zabel, who is the mountain classification? ### CONTEXT CREATE TABLE table_15059783_1 (mountains_classification VARCHAR, winner VARCHAR, points_classification VARCHAR) ### ANSWER SELECT mountains_classification FROM table_15059783_1 WHERE winner = "Alejandro Valverde" AND points_classification = "Erik Zabel"
{ "answer": "SELECT mountains_classification FROM table_15059783_1 WHERE winner = \"Alejandro Valverde\" AND points_classification = \"Erik Zabel\"", "context": "CREATE TABLE table_15059783_1 (mountains_classification VARCHAR, winner VARCHAR, points_classification VARCHAR)", "question": "If winner is alejandro Valverde and the points Classification is by Erik Zabel, who is the mountain classification?" }
### QUESTION What is the total number of Pick, when Position is OT, when Overall is greater than 91, when Round is greater than 21, and when College is Mississippi? ### CONTEXT CREATE TABLE table_name_98 (pick VARCHAR, college VARCHAR, round VARCHAR, position VARCHAR, overall VARCHAR) ### ANSWER SELECT COUNT(pick) FROM table_name_98 WHERE position = "ot" AND overall > 91 AND round > 21 AND college = "mississippi"
{ "answer": "SELECT COUNT(pick) FROM table_name_98 WHERE position = \"ot\" AND overall > 91 AND round > 21 AND college = \"mississippi\"", "context": "CREATE TABLE table_name_98 (pick VARCHAR, college VARCHAR, round VARCHAR, position VARCHAR, overall VARCHAR)", "question": "What is the total number of Pick, when Position is OT, when Overall is greater than 91, when Round is greater than 21, and when College is Mississippi?" }
### QUESTION Which Track number has a Album title of 文武双全升级版, and a Title of 老爸你别装酷? ### CONTEXT CREATE TABLE table_name_44 (track_number VARCHAR, album_title VARCHAR, title VARCHAR) ### ANSWER SELECT track_number FROM table_name_44 WHERE album_title = "文武双全升级版" AND title = "老爸你别装酷"
{ "answer": "SELECT track_number FROM table_name_44 WHERE album_title = \"文武双全升级版\" AND title = \"老爸你别装酷\"", "context": "CREATE TABLE table_name_44 (track_number VARCHAR, album_title VARCHAR, title VARCHAR)", "question": "Which Track number has a Album title of 文武双全升级版, and a Title of 老爸你别装酷?" }
### QUESTION what is the soap opera when the duration is 18 years and the character is miley byrne? ### CONTEXT CREATE TABLE table_name_4 (soap_opera VARCHAR, duration VARCHAR, character VARCHAR) ### ANSWER SELECT soap_opera FROM table_name_4 WHERE duration = "18 years" AND character = "miley byrne"
{ "answer": "SELECT soap_opera FROM table_name_4 WHERE duration = \"18 years\" AND character = \"miley byrne\"", "context": "CREATE TABLE table_name_4 (soap_opera VARCHAR, duration VARCHAR, character VARCHAR)", "question": "what is the soap opera when the duration is 18 years and the character is miley byrne?" }
### QUESTION What are the first and last names of the instructors who teach the top 3 number of courses? ### CONTEXT CREATE TABLE COURSE (Instructor VARCHAR); CREATE TABLE FACULTY (Fname VARCHAR, Lname VARCHAR, FacID VARCHAR) ### ANSWER SELECT T2.Fname, T2.Lname FROM COURSE AS T1 JOIN FACULTY AS T2 ON T1.Instructor = T2.FacID GROUP BY T1.Instructor ORDER BY COUNT(*) DESC LIMIT 3
{ "answer": "SELECT T2.Fname, T2.Lname FROM COURSE AS T1 JOIN FACULTY AS T2 ON T1.Instructor = T2.FacID GROUP BY T1.Instructor ORDER BY COUNT(*) DESC LIMIT 3", "context": "CREATE TABLE COURSE (Instructor VARCHAR); CREATE TABLE FACULTY (Fname VARCHAR, Lname VARCHAR, FacID VARCHAR)", "question": "What are the first and last names of the instructors who teach the top 3 number of courses?" }
### QUESTION When hittite old kingdom , minoan eruption is the ubaid period in mesopotamia what is the copper age? ### CONTEXT CREATE TABLE table_23537091_1 (copper_age VARCHAR, ubaid_period_in_mesopotamia VARCHAR) ### ANSWER SELECT copper_age FROM table_23537091_1 WHERE ubaid_period_in_mesopotamia = "Hittite Old Kingdom , Minoan eruption"
{ "answer": "SELECT copper_age FROM table_23537091_1 WHERE ubaid_period_in_mesopotamia = \"Hittite Old Kingdom , Minoan eruption\"", "context": "CREATE TABLE table_23537091_1 (copper_age VARCHAR, ubaid_period_in_mesopotamia VARCHAR)", "question": "When hittite old kingdom , minoan eruption is the ubaid period in mesopotamia what is the copper age?" }
### QUESTION In womens doubles and mens singles, what years did Arvind Bhat or Valiyaveetil Diju Jwala Gutta win? ### CONTEXT CREATE TABLE table_12194021_1 (womens_doubles VARCHAR, mens_singles VARCHAR, mixed_doubles VARCHAR) ### ANSWER SELECT womens_doubles FROM table_12194021_1 WHERE mens_singles = "Arvind Bhat" AND mixed_doubles = "Valiyaveetil Diju Jwala Gutta"
{ "answer": "SELECT womens_doubles FROM table_12194021_1 WHERE mens_singles = \"Arvind Bhat\" AND mixed_doubles = \"Valiyaveetil Diju Jwala Gutta\"", "context": "CREATE TABLE table_12194021_1 (womens_doubles VARCHAR, mens_singles VARCHAR, mixed_doubles VARCHAR)", "question": "In womens doubles and mens singles, what years did Arvind Bhat or Valiyaveetil Diju Jwala Gutta win?" }
### QUESTION What is the highest crowd number of the game where the away team was south melbourne? ### CONTEXT CREATE TABLE table_name_71 (crowd INTEGER, away_team VARCHAR) ### ANSWER SELECT MAX(crowd) FROM table_name_71 WHERE away_team = "south melbourne"
{ "answer": "SELECT MAX(crowd) FROM table_name_71 WHERE away_team = \"south melbourne\"", "context": "CREATE TABLE table_name_71 (crowd INTEGER, away_team VARCHAR)", "question": "What is the highest crowd number of the game where the away team was south melbourne?" }
### QUESTION What is the smallest rate of burglary when forcible rape is 39.1 and motor vehicle theft is less than 568.8? ### CONTEXT CREATE TABLE table_name_90 (burglary INTEGER, forcible_rape VARCHAR, motor_vehicle_theft VARCHAR) ### ANSWER SELECT MIN(burglary) FROM table_name_90 WHERE forcible_rape = "39.1" AND motor_vehicle_theft < 568.8
{ "answer": "SELECT MIN(burglary) FROM table_name_90 WHERE forcible_rape = \"39.1\" AND motor_vehicle_theft < 568.8", "context": "CREATE TABLE table_name_90 (burglary INTEGER, forcible_rape VARCHAR, motor_vehicle_theft VARCHAR)", "question": "What is the smallest rate of burglary when forcible rape is 39.1 and motor vehicle theft is less than 568.8?" }
### QUESTION What is the sum of Year opened when the span feet is more than 1247, and the spam metres is 384? ### CONTEXT CREATE TABLE table_name_13 (year_opened INTEGER, span_feet VARCHAR, span_metres VARCHAR) ### ANSWER SELECT SUM(year_opened) FROM table_name_13 WHERE span_feet > 1247 AND span_metres = 384
{ "answer": "SELECT SUM(year_opened) FROM table_name_13 WHERE span_feet > 1247 AND span_metres = 384", "context": "CREATE TABLE table_name_13 (year_opened INTEGER, span_feet VARCHAR, span_metres VARCHAR)", "question": "What is the sum of Year opened when the span feet is more than 1247, and the spam metres is 384?" }
### QUESTION What is the average area for code 98030 with population over 312? ### CONTEXT CREATE TABLE table_name_80 (area__km_2__ INTEGER, code VARCHAR, population VARCHAR) ### ANSWER SELECT AVG(area__km_2__) FROM table_name_80 WHERE code = 98030 AND population > 312
{ "answer": "SELECT AVG(area__km_2__) FROM table_name_80 WHERE code = 98030 AND population > 312", "context": "CREATE TABLE table_name_80 (area__km_2__ INTEGER, code VARCHAR, population VARCHAR)", "question": "What is the average area for code 98030 with population over 312?" }
### QUESTION Who was the opponent when they played at Delta Center with a record of 27-13? ### CONTEXT CREATE TABLE table_name_7 (opponent VARCHAR, location_attendance VARCHAR, record VARCHAR) ### ANSWER SELECT opponent FROM table_name_7 WHERE location_attendance = "delta center" AND record = "27-13"
{ "answer": "SELECT opponent FROM table_name_7 WHERE location_attendance = \"delta center\" AND record = \"27-13\"", "context": "CREATE TABLE table_name_7 (opponent VARCHAR, location_attendance VARCHAR, record VARCHAR)", "question": "Who was the opponent when they played at Delta Center with a record of 27-13?" }
### QUESTION Which Density (2005) has an Area (km²) of 340086.7, and a Population (2005) smaller than 5926300? ### CONTEXT CREATE TABLE table_name_25 (density__2005_ INTEGER, area__km²_ VARCHAR, population__2005_ VARCHAR) ### ANSWER SELECT SUM(density__2005_) FROM table_name_25 WHERE area__km²_ = 340086.7 AND population__2005_ < 5926300
{ "answer": "SELECT SUM(density__2005_) FROM table_name_25 WHERE area__km²_ = 340086.7 AND population__2005_ < 5926300", "context": "CREATE TABLE table_name_25 (density__2005_ INTEGER, area__km²_ VARCHAR, population__2005_ VARCHAR)", "question": "Which Density (2005) has an Area (km²) of 340086.7, and a Population (2005) smaller than 5926300?" }
### QUESTION What is the smallest amount of water having landmass over 34.864 sqmi, in Pierce township, with a GEO ID over 3800362460? ### CONTEXT CREATE TABLE table_name_2 (water__sqmi_ INTEGER, geo_id VARCHAR, land___sqmi__ VARCHAR, township VARCHAR) ### ANSWER SELECT MIN(water__sqmi_) FROM table_name_2 WHERE land___sqmi__ > 34.864 AND township = "pierce" AND geo_id > 3800362460
{ "answer": "SELECT MIN(water__sqmi_) FROM table_name_2 WHERE land___sqmi__ > 34.864 AND township = \"pierce\" AND geo_id > 3800362460", "context": "CREATE TABLE table_name_2 (water__sqmi_ INTEGER, geo_id VARCHAR, land___sqmi__ VARCHAR, township VARCHAR)", "question": "What is the smallest amount of water having landmass over 34.864 sqmi, in Pierce township, with a GEO ID over 3800362460?" }
### QUESTION Which driver has a G tyre, rounds of 2-12 and a M7A chassis? ### CONTEXT CREATE TABLE table_name_18 (driver VARCHAR, chassis VARCHAR, tyre VARCHAR, rounds VARCHAR) ### ANSWER SELECT driver FROM table_name_18 WHERE tyre = "g" AND rounds = "2-12" AND chassis = "m7a"
{ "answer": "SELECT driver FROM table_name_18 WHERE tyre = \"g\" AND rounds = \"2-12\" AND chassis = \"m7a\"", "context": "CREATE TABLE table_name_18 (driver VARCHAR, chassis VARCHAR, tyre VARCHAR, rounds VARCHAR)", "question": "Which driver has a G tyre, rounds of 2-12 and a M7A chassis?" }
### QUESTION What is the lowest pick number for Arturo McDowell, who plays the OF position for the San Francisco Giants? ### CONTEXT CREATE TABLE table_name_13 (pick INTEGER, player VARCHAR, position VARCHAR, team VARCHAR) ### ANSWER SELECT MIN(pick) FROM table_name_13 WHERE position = "of" AND team = "san francisco giants" AND player = "arturo mcdowell"
{ "answer": "SELECT MIN(pick) FROM table_name_13 WHERE position = \"of\" AND team = \"san francisco giants\" AND player = \"arturo mcdowell\"", "context": "CREATE TABLE table_name_13 (pick INTEGER, player VARCHAR, position VARCHAR, team VARCHAR)", "question": "What is the lowest pick number for Arturo McDowell, who plays the OF position for the San Francisco Giants?" }
### QUESTION Which Opponent has a Type of tko, and a Round of 2 (6) on 2006-09-20? ### CONTEXT CREATE TABLE table_name_67 (opponent VARCHAR, date VARCHAR, type VARCHAR, round VARCHAR) ### ANSWER SELECT opponent FROM table_name_67 WHERE type = "tko" AND round = "2 (6)" AND date = "2006-09-20"
{ "answer": "SELECT opponent FROM table_name_67 WHERE type = \"tko\" AND round = \"2 (6)\" AND date = \"2006-09-20\"", "context": "CREATE TABLE table_name_67 (opponent VARCHAR, date VARCHAR, type VARCHAR, round VARCHAR)", "question": "Which Opponent has a Type of tko, and a Round of 2 (6) on 2006-09-20?" }
### QUESTION For players with fewer than 41 goals for CA Osasuna and averages under 1.06, what is the average number of matches? ### CONTEXT CREATE TABLE table_name_5 (matches INTEGER, average VARCHAR, goals VARCHAR, team VARCHAR) ### ANSWER SELECT AVG(matches) FROM table_name_5 WHERE goals < 41 AND team = "ca osasuna" AND average < 1.06
{ "answer": "SELECT AVG(matches) FROM table_name_5 WHERE goals < 41 AND team = \"ca osasuna\" AND average < 1.06", "context": "CREATE TABLE table_name_5 (matches INTEGER, average VARCHAR, goals VARCHAR, team VARCHAR)", "question": "For players with fewer than 41 goals for CA Osasuna and averages under 1.06, what is the average number of matches?" }
### QUESTION What is the position of the pittsburgh steelers? ### CONTEXT CREATE TABLE table_name_29 (position VARCHAR, nfl_club VARCHAR) ### ANSWER SELECT position FROM table_name_29 WHERE nfl_club = "pittsburgh steelers"
{ "answer": "SELECT position FROM table_name_29 WHERE nfl_club = \"pittsburgh steelers\"", "context": "CREATE TABLE table_name_29 (position VARCHAR, nfl_club VARCHAR)", "question": "What is the position of the pittsburgh steelers?" }
### QUESTION What is Type, when Number of Bearers 2008 is greater than 12.376, when Rank is greater than 3, and when Etymology is Son of Jens? ### CONTEXT CREATE TABLE table_name_68 (type VARCHAR, etymology VARCHAR, number_of_bearers_2008 VARCHAR, rank VARCHAR) ### ANSWER SELECT type FROM table_name_68 WHERE number_of_bearers_2008 > 12.376 AND rank > 3 AND etymology = "son of jens"
{ "answer": "SELECT type FROM table_name_68 WHERE number_of_bearers_2008 > 12.376 AND rank > 3 AND etymology = \"son of jens\"", "context": "CREATE TABLE table_name_68 (type VARCHAR, etymology VARCHAR, number_of_bearers_2008 VARCHAR, rank VARCHAR)", "question": "What is Type, when Number of Bearers 2008 is greater than 12.376, when Rank is greater than 3, and when Etymology is Son of Jens?" }
### QUESTION How many official languages does Afghanistan have? ### CONTEXT CREATE TABLE country (Code VARCHAR, Name VARCHAR); CREATE TABLE countrylanguage (CountryCode VARCHAR) ### ANSWER SELECT COUNT(*) FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE T1.Name = "Afghanistan" AND IsOfficial = "T"
{ "answer": "SELECT COUNT(*) FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE T1.Name = \"Afghanistan\" AND IsOfficial = \"T\"", "context": "CREATE TABLE country (Code VARCHAR, Name VARCHAR); CREATE TABLE countrylanguage (CountryCode VARCHAR)", "question": "How many official languages does Afghanistan have?" }
### QUESTION Which average Played has a Drawn smaller than 1, and Points larger than 4? ### CONTEXT CREATE TABLE table_name_83 (played INTEGER, drawn VARCHAR, points VARCHAR) ### ANSWER SELECT AVG(played) FROM table_name_83 WHERE drawn < 1 AND points > 4
{ "answer": "SELECT AVG(played) FROM table_name_83 WHERE drawn < 1 AND points > 4", "context": "CREATE TABLE table_name_83 (played INTEGER, drawn VARCHAR, points VARCHAR)", "question": "Which average Played has a Drawn smaller than 1, and Points larger than 4?" }
### QUESTION How many products have the characteristic named "hot"? ### CONTEXT CREATE TABLE products (product_id VARCHAR); CREATE TABLE CHARACTERISTICS (characteristic_id VARCHAR, characteristic_name VARCHAR); CREATE TABLE product_characteristics (product_id VARCHAR, characteristic_id VARCHAR) ### ANSWER SELECT COUNT(*) FROM products AS t1 JOIN product_characteristics AS t2 ON t1.product_id = t2.product_id JOIN CHARACTERISTICS AS t3 ON t2.characteristic_id = t3.characteristic_id WHERE t3.characteristic_name = "hot"
{ "answer": "SELECT COUNT(*) FROM products AS t1 JOIN product_characteristics AS t2 ON t1.product_id = t2.product_id JOIN CHARACTERISTICS AS t3 ON t2.characteristic_id = t3.characteristic_id WHERE t3.characteristic_name = \"hot\"", "context": "CREATE TABLE products (product_id VARCHAR); CREATE TABLE CHARACTERISTICS (characteristic_id VARCHAR, characteristic_name VARCHAR); CREATE TABLE product_characteristics (product_id VARCHAR, characteristic_id VARCHAR)", "question": "How many products have the characteristic named \"hot\"?" }
### QUESTION When was the appointment date for VFL Wolfsburg? ### CONTEXT CREATE TABLE table_name_72 (date_of_appointment VARCHAR, team VARCHAR) ### ANSWER SELECT date_of_appointment FROM table_name_72 WHERE team = "vfl wolfsburg"
{ "answer": "SELECT date_of_appointment FROM table_name_72 WHERE team = \"vfl wolfsburg\"", "context": "CREATE TABLE table_name_72 (date_of_appointment VARCHAR, team VARCHAR)", "question": "When was the appointment date for VFL Wolfsburg?" }
### QUESTION Which gold Coast has a Melbourne of yes, a Perth of yes, an Auckland of no, and a Sydney of no? ### CONTEXT CREATE TABLE table_name_36 (gold_coast VARCHAR, sydney VARCHAR, auckland VARCHAR, melbourne VARCHAR, perth VARCHAR) ### ANSWER SELECT gold_coast FROM table_name_36 WHERE melbourne = "yes" AND perth = "yes" AND auckland = "no" AND sydney = "no"
{ "answer": "SELECT gold_coast FROM table_name_36 WHERE melbourne = \"yes\" AND perth = \"yes\" AND auckland = \"no\" AND sydney = \"no\"", "context": "CREATE TABLE table_name_36 (gold_coast VARCHAR, sydney VARCHAR, auckland VARCHAR, melbourne VARCHAR, perth VARCHAR)", "question": "Which gold Coast has a Melbourne of yes, a Perth of yes, an Auckland of no, and a Sydney of no?" }
### QUESTION Which Score has a Visitor of montreal canadiens, and Points of 5? ### CONTEXT CREATE TABLE table_name_93 (score VARCHAR, visitor VARCHAR, points VARCHAR) ### ANSWER SELECT score FROM table_name_93 WHERE visitor = "montreal canadiens" AND points = 5
{ "answer": "SELECT score FROM table_name_93 WHERE visitor = \"montreal canadiens\" AND points = 5", "context": "CREATE TABLE table_name_93 (score VARCHAR, visitor VARCHAR, points VARCHAR)", "question": "Which Score has a Visitor of montreal canadiens, and Points of 5?" }
### QUESTION Find the title of course whose prerequisite is course Differential Geometry. ### CONTEXT CREATE TABLE prereq (course_id VARCHAR, prereq_id VARCHAR); CREATE TABLE course (title VARCHAR, course_id VARCHAR); CREATE TABLE course (course_id VARCHAR, title VARCHAR) ### ANSWER SELECT title FROM course WHERE course_id IN (SELECT T1.course_id FROM prereq AS T1 JOIN course AS T2 ON T1.prereq_id = T2.course_id WHERE T2.title = 'Differential Geometry')
{ "answer": "SELECT title FROM course WHERE course_id IN (SELECT T1.course_id FROM prereq AS T1 JOIN course AS T2 ON T1.prereq_id = T2.course_id WHERE T2.title = 'Differential Geometry')", "context": "CREATE TABLE prereq (course_id VARCHAR, prereq_id VARCHAR); CREATE TABLE course (title VARCHAR, course_id VARCHAR); CREATE TABLE course (course_id VARCHAR, title VARCHAR)", "question": "Find the title of course whose prerequisite is course Differential Geometry." }
### QUESTION What is the highest col in m of the puncak jaya (carstensz pyramid) peak, which is ranked lower than 7 and has a prominence less than 4,884 m? ### CONTEXT CREATE TABLE table_name_91 (col__m_ INTEGER, prominence__m_ VARCHAR, rank VARCHAR, peak VARCHAR) ### ANSWER SELECT MAX(col__m_) FROM table_name_91 WHERE rank < 7 AND peak = "puncak jaya (carstensz pyramid)" AND prominence__m_ < 4 OFFSET 884
{ "answer": "SELECT MAX(col__m_) FROM table_name_91 WHERE rank < 7 AND peak = \"puncak jaya (carstensz pyramid)\" AND prominence__m_ < 4 OFFSET 884", "context": "CREATE TABLE table_name_91 (col__m_ INTEGER, prominence__m_ VARCHAR, rank VARCHAR, peak VARCHAR)", "question": "What is the highest col in m of the puncak jaya (carstensz pyramid) peak, which is ranked lower than 7 and has a prominence less than 4,884 m?" }
### QUESTION Which Extra points 1 point has a Total Points smaller than 30, and Touchdowns (5 points) of 5? ### CONTEXT CREATE TABLE table_name_22 (extra_points_1_point INTEGER, total_points VARCHAR, touchdowns__5_points_ VARCHAR) ### ANSWER SELECT AVG(extra_points_1_point) FROM table_name_22 WHERE total_points < 30 AND touchdowns__5_points_ = 5
{ "answer": "SELECT AVG(extra_points_1_point) FROM table_name_22 WHERE total_points < 30 AND touchdowns__5_points_ = 5", "context": "CREATE TABLE table_name_22 (extra_points_1_point INTEGER, total_points VARCHAR, touchdowns__5_points_ VARCHAR)", "question": "Which Extra points 1 point has a Total Points smaller than 30, and Touchdowns (5 points) of 5?" }
### QUESTION Who was the runner-up in the RR Donnelley LPGA Founders Cup? ### CONTEXT CREATE TABLE table_name_52 (runner_s__up VARCHAR, tournament VARCHAR) ### ANSWER SELECT runner_s__up FROM table_name_52 WHERE tournament = "rr donnelley lpga founders cup"
{ "answer": "SELECT runner_s__up FROM table_name_52 WHERE tournament = \"rr donnelley lpga founders cup\"", "context": "CREATE TABLE table_name_52 (runner_s__up VARCHAR, tournament VARCHAR)", "question": "Who was the runner-up in the RR Donnelley LPGA Founders Cup?" }