text
stringlengths
146
1.06k
source
dict
### QUESTION Which nominee won the Drama Desk Award for outstanding choreography? ### CONTEXT CREATE TABLE table_name_81 (nominee VARCHAR, category VARCHAR, award VARCHAR, result VARCHAR) ### ANSWER SELECT nominee FROM table_name_81 WHERE award = "drama desk award" AND result = "won" AND category = "outstanding choreography"
{ "answer": "SELECT nominee FROM table_name_81 WHERE award = \"drama desk award\" AND result = \"won\" AND category = \"outstanding choreography\"", "context": "CREATE TABLE table_name_81 (nominee VARCHAR, category VARCHAR, award VARCHAR, result VARCHAR)", "question": "Which nominee won the Drama Desk Award for outstanding choreography?" }
### QUESTION I want the result for week larger than 10 for opponent of new england patriots ### CONTEXT CREATE TABLE table_name_90 (result VARCHAR, week VARCHAR, opponent VARCHAR) ### ANSWER SELECT result FROM table_name_90 WHERE week > 10 AND opponent = "new england patriots"
{ "answer": "SELECT result FROM table_name_90 WHERE week > 10 AND opponent = \"new england patriots\"", "context": "CREATE TABLE table_name_90 (result VARCHAR, week VARCHAR, opponent VARCHAR)", "question": "I want the result for week larger than 10 for opponent of new england patriots" }
### QUESTION What is the issue price (proof) where the issue price (bu) is 34.95? ### CONTEXT CREATE TABLE table_11916083_1 (issue_price__proof_ VARCHAR, issue_price__bu_ VARCHAR, _clarification_needed_ VARCHAR) ### ANSWER SELECT issue_price__proof_ FROM table_11916083_1 WHERE issue_price__bu_[_clarification_needed_] = "34.95"
{ "answer": "SELECT issue_price__proof_ FROM table_11916083_1 WHERE issue_price__bu_[_clarification_needed_] = \"34.95\"", "context": "CREATE TABLE table_11916083_1 (issue_price__proof_ VARCHAR, issue_price__bu_ VARCHAR, _clarification_needed_ VARCHAR)", "question": "What is the issue price (proof) where the issue price (bu) is 34.95?" }
### QUESTION What is the registration of the station with a retained type and a station number of c03? ### CONTEXT CREATE TABLE table_name_27 (registrations VARCHAR, type VARCHAR, station_number VARCHAR) ### ANSWER SELECT registrations FROM table_name_27 WHERE type = "retained" AND station_number = "c03"
{ "answer": "SELECT registrations FROM table_name_27 WHERE type = \"retained\" AND station_number = \"c03\"", "context": "CREATE TABLE table_name_27 (registrations VARCHAR, type VARCHAR, station_number VARCHAR)", "question": "What is the registration of the station with a retained type and a station number of c03?" }
### QUESTION What is the mintage (bu) with the artist Royal Canadian Mint Staff and has an issue price (proof) of $54.95? ### CONTEXT CREATE TABLE table_11916083_1 (mintage__bu_ VARCHAR, _clarification_needed_ VARCHAR, artist VARCHAR, issue_price__proof_ VARCHAR) ### ANSWER SELECT mintage__bu_[_clarification_needed_] FROM table_11916083_1 WHERE artist = "Royal Canadian Mint Staff" AND issue_price__proof_ = "$54.95"
{ "answer": "SELECT mintage__bu_[_clarification_needed_] FROM table_11916083_1 WHERE artist = \"Royal Canadian Mint Staff\" AND issue_price__proof_ = \"$54.95\"", "context": "CREATE TABLE table_11916083_1 (mintage__bu_ VARCHAR, _clarification_needed_ VARCHAR, artist VARCHAR, issue_price__proof_ VARCHAR)", "question": "What is the mintage (bu) with the artist Royal Canadian Mint Staff and has an issue price (proof) of $54.95?" }
### QUESTION What did the away team score at VFL Park? ### CONTEXT CREATE TABLE table_name_76 (away_team VARCHAR, venue VARCHAR) ### ANSWER SELECT away_team AS score FROM table_name_76 WHERE venue = "vfl park"
{ "answer": "SELECT away_team AS score FROM table_name_76 WHERE venue = \"vfl park\"", "context": "CREATE TABLE table_name_76 (away_team VARCHAR, venue VARCHAR)", "question": "What did the away team score at VFL Park?" }
### QUESTION What is the title of the episode with the original air date of february 6, 1997? ### CONTEXT CREATE TABLE table_11951237_3 (title VARCHAR, original_air_date VARCHAR) ### ANSWER SELECT title FROM table_11951237_3 WHERE original_air_date = "February 6, 1997"
{ "answer": "SELECT title FROM table_11951237_3 WHERE original_air_date = \"February 6, 1997\"", "context": "CREATE TABLE table_11951237_3 (title VARCHAR, original_air_date VARCHAR)", "question": "What is the title of the episode with the original air date of february 6, 1997?" }
### QUESTION what is the lifespan when the imperial height is 7ft 8 in and the nationality is fiji? ### CONTEXT CREATE TABLE table_name_56 (lifespan VARCHAR, imperial VARCHAR, nationality VARCHAR) ### ANSWER SELECT lifespan FROM table_name_56 WHERE imperial = "7ft 8 in" AND nationality = "fiji"
{ "answer": "SELECT lifespan FROM table_name_56 WHERE imperial = \"7ft 8 in\" AND nationality = \"fiji\"", "context": "CREATE TABLE table_name_56 (lifespan VARCHAR, imperial VARCHAR, nationality VARCHAR)", "question": "what is the lifespan when the imperial height is 7ft 8 in and the nationality is fiji?" }
### QUESTION What is the grid total that had a retired for engine, teo fabi driving, and under 39 laps? ### CONTEXT CREATE TABLE table_name_83 (grid INTEGER, laps VARCHAR, time_retired VARCHAR, driver VARCHAR) ### ANSWER SELECT SUM(grid) FROM table_name_83 WHERE time_retired = "engine" AND driver = "teo fabi" AND laps < 39
{ "answer": "SELECT SUM(grid) FROM table_name_83 WHERE time_retired = \"engine\" AND driver = \"teo fabi\" AND laps < 39", "context": "CREATE TABLE table_name_83 (grid INTEGER, laps VARCHAR, time_retired VARCHAR, driver VARCHAR)", "question": "What is the grid total that had a retired for engine, teo fabi driving, and under 39 laps?" }
### QUESTION What is the average grid for johnny dumfries with less than 8 laps? ### CONTEXT CREATE TABLE table_name_26 (grid INTEGER, driver VARCHAR, laps VARCHAR) ### ANSWER SELECT AVG(grid) FROM table_name_26 WHERE driver = "johnny dumfries" AND laps < 8
{ "answer": "SELECT AVG(grid) FROM table_name_26 WHERE driver = \"johnny dumfries\" AND laps < 8", "context": "CREATE TABLE table_name_26 (grid INTEGER, driver VARCHAR, laps VARCHAR)", "question": "What is the average grid for johnny dumfries with less than 8 laps?" }
### QUESTION How many 5K wins did Emily Chebet, who had more than 2 total, have? ### CONTEXT ### ANSWER SELECT COUNT(*) AS '5k wins' FROM table_name_80 WHERE runner = "emily chebet" AND total > 2
{ "answer": "SELECT COUNT(*) AS '5k wins' FROM table_name_80 WHERE runner = \"emily chebet\" AND total > 2", "context": "", "question": "How many 5K wins did Emily Chebet, who had more than 2 total, have?" }
### QUESTION What is the largest number of Peak lessons taught when the Evaluation average (Before April 2009) was 4.4? ### CONTEXT CREATE TABLE table_name_95 (peak_lessons_taught INTEGER, evaluation_average__before_april_2009_ VARCHAR) ### ANSWER SELECT MAX(peak_lessons_taught) FROM table_name_95 WHERE evaluation_average__before_april_2009_ = "4.4"
{ "answer": "SELECT MAX(peak_lessons_taught) FROM table_name_95 WHERE evaluation_average__before_april_2009_ = \"4.4\"", "context": "CREATE TABLE table_name_95 (peak_lessons_taught INTEGER, evaluation_average__before_april_2009_ VARCHAR)", "question": "What is the largest number of Peak lessons taught when the Evaluation average (Before April 2009) was 4.4?" }
### QUESTION What is the mean Evaluation number (before April 2009) when the Peak lessons taught was less than 80 and the negative percentage of evaluations was 0.8%? ### CONTEXT CREATE TABLE table_name_23 (evaluation_average__before_april_2009_ VARCHAR, peak_lessons_taught VARCHAR, _percentage_of_negative_evaluations VARCHAR) ### ANSWER SELECT evaluation_average__before_april_2009_ FROM table_name_23 WHERE peak_lessons_taught < 80 AND _percentage_of_negative_evaluations = "0.8%"
{ "answer": "SELECT evaluation_average__before_april_2009_ FROM table_name_23 WHERE peak_lessons_taught < 80 AND _percentage_of_negative_evaluations = \"0.8%\"", "context": "CREATE TABLE table_name_23 (evaluation_average__before_april_2009_ VARCHAR, peak_lessons_taught VARCHAR, _percentage_of_negative_evaluations VARCHAR)", "question": "What is the mean Evaluation number (before April 2009) when the Peak lessons taught was less than 80 and the negative percentage of evaluations was 0.8%?" }
### QUESTION What is the mean Evaluation number (Before April 2009) when the percentage of negative evaluations was 0.8% and the mean Evaluation number of April 2009 was 4.2? ### CONTEXT CREATE TABLE table_name_41 (evaluation_average__before_april_2009_ VARCHAR, _percentage_of_negative_evaluations VARCHAR, evaluation_average__from_april_2009_ VARCHAR) ### ANSWER SELECT evaluation_average__before_april_2009_ FROM table_name_41 WHERE _percentage_of_negative_evaluations = "0.8%" AND evaluation_average__from_april_2009_ = "4.2"
{ "answer": "SELECT evaluation_average__before_april_2009_ FROM table_name_41 WHERE _percentage_of_negative_evaluations = \"0.8%\" AND evaluation_average__from_april_2009_ = \"4.2\"", "context": "CREATE TABLE table_name_41 (evaluation_average__before_april_2009_ VARCHAR, _percentage_of_negative_evaluations VARCHAR, evaluation_average__from_april_2009_ VARCHAR)", "question": "What is the mean Evaluation number (Before April 2009) when the percentage of negative evaluations was 0.8% and the mean Evaluation number of April 2009 was 4.2?" }
### QUESTION What is San Antonio game number? ### CONTEXT CREATE TABLE table_11960610_10 (game INTEGER, team VARCHAR) ### ANSWER SELECT MAX(game) FROM table_11960610_10 WHERE team = "San Antonio"
{ "answer": "SELECT MAX(game) FROM table_11960610_10 WHERE team = \"San Antonio\"", "context": "CREATE TABLE table_11960610_10 (game INTEGER, team VARCHAR)", "question": "What is San Antonio game number?" }
### QUESTION When gordon (27) had high points, what was the number of high assists? ### CONTEXT CREATE TABLE table_11960610_10 (high_assists VARCHAR, high_points VARCHAR) ### ANSWER SELECT COUNT(high_assists) FROM table_11960610_10 WHERE high_points = "Gordon (27)"
{ "answer": "SELECT COUNT(high_assists) FROM table_11960610_10 WHERE high_points = \"Gordon (27)\"", "context": "CREATE TABLE table_11960610_10 (high_assists VARCHAR, high_points VARCHAR)", "question": "When gordon (27) had high points, what was the number of high assists?" }
### QUESTION Tell me the lowest date commissioned for iron rmsrhone and gross tonnage less than 2,738 ### CONTEXT CREATE TABLE table_name_69 (date_commissioned INTEGER, gross_tonnage VARCHAR, material VARCHAR, ship VARCHAR) ### ANSWER SELECT MIN(date_commissioned) FROM table_name_69 WHERE material = "iron" AND ship = "rmsrhone" AND gross_tonnage < 2 OFFSET 738
{ "answer": "SELECT MIN(date_commissioned) FROM table_name_69 WHERE material = \"iron\" AND ship = \"rmsrhone\" AND gross_tonnage < 2 OFFSET 738", "context": "CREATE TABLE table_name_69 (date_commissioned INTEGER, gross_tonnage VARCHAR, material VARCHAR, ship VARCHAR)", "question": "Tell me the lowest date commissioned for iron rmsrhone and gross tonnage less than 2,738" }
### QUESTION What Constructor has a +1.027 Time/Retired? ### CONTEXT CREATE TABLE table_name_21 (constructor VARCHAR, time_retired VARCHAR) ### ANSWER SELECT constructor FROM table_name_21 WHERE time_retired = "+1.027"
{ "answer": "SELECT constructor FROM table_name_21 WHERE time_retired = \"+1.027\"", "context": "CREATE TABLE table_name_21 (constructor VARCHAR, time_retired VARCHAR)", "question": "What Constructor has a +1.027 Time/Retired?" }
### QUESTION how many times was the high rebounds by Mcdyess (9) and the high assists was by Billups (10)? ### CONTEXT CREATE TABLE table_11960944_4 (high_points VARCHAR, high_rebounds VARCHAR, high_assists VARCHAR) ### ANSWER SELECT COUNT(high_points) FROM table_11960944_4 WHERE high_rebounds = "McDyess (9)" AND high_assists = "Billups (10)"
{ "answer": "SELECT COUNT(high_points) FROM table_11960944_4 WHERE high_rebounds = \"McDyess (9)\" AND high_assists = \"Billups (10)\"", "context": "CREATE TABLE table_11960944_4 (high_points VARCHAR, high_rebounds VARCHAR, high_assists VARCHAR)", "question": "how many times was the high rebounds by Mcdyess (9) and the high assists was by Billups (10)?" }
### QUESTION What Driver has a +1.027 Time/Retired? ### CONTEXT CREATE TABLE table_name_86 (driver VARCHAR, time_retired VARCHAR) ### ANSWER SELECT driver FROM table_name_86 WHERE time_retired = "+1.027"
{ "answer": "SELECT driver FROM table_name_86 WHERE time_retired = \"+1.027\"", "context": "CREATE TABLE table_name_86 (driver VARCHAR, time_retired VARCHAR)", "question": "What Driver has a +1.027 Time/Retired?" }
### QUESTION What competition was played at Shay Stadium? ### CONTEXT CREATE TABLE table_name_84 (competition VARCHAR, venue VARCHAR) ### ANSWER SELECT competition FROM table_name_84 WHERE venue = "shay stadium"
{ "answer": "SELECT competition FROM table_name_84 WHERE venue = \"shay stadium\"", "context": "CREATE TABLE table_name_84 (competition VARCHAR, venue VARCHAR)", "question": "What competition was played at Shay Stadium?" }
### QUESTION What was the total number of games where A. Johnson (6) gave the most high assists? ### CONTEXT CREATE TABLE table_11961582_4 (game VARCHAR, high_assists VARCHAR) ### ANSWER SELECT COUNT(game) FROM table_11961582_4 WHERE high_assists = "A. Johnson (6)"
{ "answer": "SELECT COUNT(game) FROM table_11961582_4 WHERE high_assists = \"A. Johnson (6)\"", "context": "CREATE TABLE table_11961582_4 (game VARCHAR, high_assists VARCHAR)", "question": "What was the total number of games where A. Johnson (6) gave the most high assists?" }
### QUESTION Who was the away team at Brunswick Street Oval? ### CONTEXT CREATE TABLE table_name_89 (away_team VARCHAR, venue VARCHAR) ### ANSWER SELECT away_team AS score FROM table_name_89 WHERE venue = "brunswick street oval"
{ "answer": "SELECT away_team AS score FROM table_name_89 WHERE venue = \"brunswick street oval\"", "context": "CREATE TABLE table_name_89 (away_team VARCHAR, venue VARCHAR)", "question": "Who was the away team at Brunswick Street Oval?" }
### QUESTION Tell me the lowest prom for class of hewitt and peak of cushat law and height more than 615 ### CONTEXT CREATE TABLE table_name_62 (prom__m_ INTEGER, height__m_ VARCHAR, class VARCHAR, peak VARCHAR) ### ANSWER SELECT MIN(prom__m_) FROM table_name_62 WHERE class = "hewitt" AND peak = "cushat law" AND height__m_ > 615
{ "answer": "SELECT MIN(prom__m_) FROM table_name_62 WHERE class = \"hewitt\" AND peak = \"cushat law\" AND height__m_ > 615", "context": "CREATE TABLE table_name_62 (prom__m_ INTEGER, height__m_ VARCHAR, class VARCHAR, peak VARCHAR)", "question": "Tell me the lowest prom for class of hewitt and peak of cushat law and height more than 615" }
### QUESTION Who was the leading scorer in Game #26? ### CONTEXT CREATE TABLE table_11964047_6 (leading_scorer VARCHAR, _number VARCHAR) ### ANSWER SELECT leading_scorer FROM table_11964047_6 WHERE _number = 26
{ "answer": "SELECT leading_scorer FROM table_11964047_6 WHERE _number = 26", "context": "CREATE TABLE table_11964047_6 (leading_scorer VARCHAR, _number VARCHAR)", "question": "Who was the leading scorer in Game #26?" }
### QUESTION What is the percentage democrats with democratic plurality of -3, and 2/5 democrat/republican? ### CONTEXT CREATE TABLE table_name_45 (percentage_democrats VARCHAR, democratic_seat_plurality VARCHAR, democratic__republican VARCHAR) ### ANSWER SELECT percentage_democrats FROM table_name_45 WHERE democratic_seat_plurality = "-3" AND democratic__republican = "2/5"
{ "answer": "SELECT percentage_democrats FROM table_name_45 WHERE democratic_seat_plurality = \"-3\" AND democratic__republican = \"2/5\"", "context": "CREATE TABLE table_name_45 (percentage_democrats VARCHAR, democratic_seat_plurality VARCHAR, democratic__republican VARCHAR)", "question": "What is the percentage democrats with democratic plurality of -3, and 2/5 democrat/republican?" }
### QUESTION How many times was the high assists earl watson (5) and the date of the game was december 2? ### CONTEXT CREATE TABLE table_11964154_7 (score VARCHAR, high_assists VARCHAR, date VARCHAR) ### ANSWER SELECT COUNT(score) FROM table_11964154_7 WHERE high_assists = "Earl Watson (5)" AND date = "December 2"
{ "answer": "SELECT COUNT(score) FROM table_11964154_7 WHERE high_assists = \"Earl Watson (5)\" AND date = \"December 2\"", "context": "CREATE TABLE table_11964154_7 (score VARCHAR, high_assists VARCHAR, date VARCHAR)", "question": "How many times was the high assists earl watson (5) and the date of the game was december 2?" }
### QUESTION what's the record where location attendance is keyarena 13,627 ### CONTEXT CREATE TABLE table_11964154_9 (record VARCHAR, location_attendance VARCHAR) ### ANSWER SELECT record FROM table_11964154_9 WHERE location_attendance = "KeyArena 13,627"
{ "answer": "SELECT record FROM table_11964154_9 WHERE location_attendance = \"KeyArena 13,627\"", "context": "CREATE TABLE table_11964154_9 (record VARCHAR, location_attendance VARCHAR)", "question": " what's the record where location attendance is keyarena 13,627" }
### 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 For averages of 1.58 and matches under 38, what is the average number of goals? ### CONTEXT CREATE TABLE table_name_79 (goals INTEGER, average VARCHAR, matches VARCHAR) ### ANSWER SELECT AVG(goals) FROM table_name_79 WHERE average = 1.58 AND matches < 38
{ "answer": "SELECT AVG(goals) FROM table_name_79 WHERE average = 1.58 AND matches < 38", "context": "CREATE TABLE table_name_79 (goals INTEGER, average VARCHAR, matches VARCHAR)", "question": "For averages of 1.58 and matches under 38, what is the average number of goals?" }
### QUESTION Name the high points for toyota center 18,269? ### CONTEXT CREATE TABLE table_11964263_13 (high_points VARCHAR, location_attendance VARCHAR) ### ANSWER SELECT high_points FROM table_11964263_13 WHERE location_attendance = "Toyota Center 18,269"
{ "answer": "SELECT high_points FROM table_11964263_13 WHERE location_attendance = \"Toyota Center 18,269\"", "context": "CREATE TABLE table_11964263_13 (high_points VARCHAR, location_attendance VARCHAR)", "question": "Name the high points for toyota center 18,269?" }
### QUESTION How many teams placed 4th in the regular season? ### CONTEXT CREATE TABLE table_12002388_1 (division VARCHAR, reg_season VARCHAR) ### ANSWER SELECT COUNT(division) FROM table_12002388_1 WHERE reg_season = "4th"
{ "answer": "SELECT COUNT(division) FROM table_12002388_1 WHERE reg_season = \"4th\"", "context": "CREATE TABLE table_12002388_1 (division VARCHAR, reg_season VARCHAR)", "question": "How many teams placed 4th in the regular season?" }
### QUESTION What was the playoff result for theteam in the apsl in 1992? ### CONTEXT CREATE TABLE table_12002388_1 (playoffs VARCHAR, league VARCHAR, year VARCHAR) ### ANSWER SELECT playoffs FROM table_12002388_1 WHERE league = "APSL" AND year = 1992
{ "answer": "SELECT playoffs FROM table_12002388_1 WHERE league = \"APSL\" AND year = 1992", "context": "CREATE TABLE table_12002388_1 (playoffs VARCHAR, league VARCHAR, year VARCHAR)", "question": "What was the playoff result for theteam in the apsl in 1992?" }
### QUESTION Which Competition has a Venue of Seoul, and Result of 4-1? ### CONTEXT CREATE TABLE table_name_36 (competition VARCHAR, venue VARCHAR, result VARCHAR) ### ANSWER SELECT competition FROM table_name_36 WHERE venue = "seoul" AND result = "4-1"
{ "answer": "SELECT competition FROM table_name_36 WHERE venue = \"seoul\" AND result = \"4-1\"", "context": "CREATE TABLE table_name_36 (competition VARCHAR, venue VARCHAR, result VARCHAR)", "question": "Which Competition has a Venue of Seoul, and Result of 4-1?" }
### QUESTION What is the laops of marcis auto racing? ### CONTEXT CREATE TABLE table_12001616_4 (laps VARCHAR, entrant VARCHAR) ### ANSWER SELECT laps FROM table_12001616_4 WHERE entrant = "Marcis Auto Racing"
{ "answer": "SELECT laps FROM table_12001616_4 WHERE entrant = \"Marcis Auto Racing\"", "context": "CREATE TABLE table_12001616_4 (laps VARCHAR, entrant VARCHAR)", "question": "What is the laops of marcis auto racing?" }
### QUESTION What's the Result for the Competition of 1994 FIFA World Cup Qualification, with the Date of May 15, 1993? ### CONTEXT CREATE TABLE table_name_14 (result VARCHAR, competition VARCHAR, date VARCHAR) ### ANSWER SELECT result FROM table_name_14 WHERE competition = "1994 fifa world cup qualification" AND date = "may 15, 1993"
{ "answer": "SELECT result FROM table_name_14 WHERE competition = \"1994 fifa world cup qualification\" AND date = \"may 15, 1993\"", "context": "CREATE TABLE table_name_14 (result VARCHAR, competition VARCHAR, date VARCHAR)", "question": "What's the Result for the Competition of 1994 FIFA World Cup Qualification, with the Date of May 15, 1993?" }
### QUESTION Who had the general classification when the trofeo fast team was Mapei-Bricobi, the points classification went to Mariano Piccoli and the mountains classification went to Marco Pantani in stage 22? ### CONTEXT CREATE TABLE table_name_12 (general_classification VARCHAR, stage VARCHAR, mountains_classification VARCHAR, trofeo_fast_team VARCHAR, points_classification VARCHAR) ### ANSWER SELECT general_classification FROM table_name_12 WHERE trofeo_fast_team = "mapei-bricobi" AND points_classification = "mariano piccoli" AND mountains_classification = "marco pantani" AND stage = "22"
{ "answer": "SELECT general_classification FROM table_name_12 WHERE trofeo_fast_team = \"mapei-bricobi\" AND points_classification = \"mariano piccoli\" AND mountains_classification = \"marco pantani\" AND stage = \"22\"", "context": "CREATE TABLE table_name_12 (general_classification VARCHAR, stage VARCHAR, mountains_classification VARCHAR, trofeo_fast_team VARCHAR, points_classification VARCHAR)", "question": "Who had the general classification when the trofeo fast team was Mapei-Bricobi, the points classification went to Mariano Piccoli and the mountains classification went to Marco Pantani in stage 22?" }
### QUESTION Which first election for the labor party is James Sharpe a part of? ### CONTEXT CREATE TABLE table_name_28 (first_elected VARCHAR, party VARCHAR, member VARCHAR) ### ANSWER SELECT first_elected FROM table_name_28 WHERE party = "labor" AND member = "james sharpe"
{ "answer": "SELECT first_elected FROM table_name_28 WHERE party = \"labor\" AND member = \"james sharpe\"", "context": "CREATE TABLE table_name_28 (first_elected VARCHAR, party VARCHAR, member VARCHAR)", "question": "Which first election for the labor party is James Sharpe a part of?" }
### QUESTION Who was the away team when Melbourne was the home team? ### CONTEXT CREATE TABLE table_name_35 (away_team VARCHAR, home_team VARCHAR) ### ANSWER SELECT away_team FROM table_name_35 WHERE home_team = "melbourne"
{ "answer": "SELECT away_team FROM table_name_35 WHERE home_team = \"melbourne\"", "context": "CREATE TABLE table_name_35 (away_team VARCHAR, home_team VARCHAR)", "question": "Who was the away team when Melbourne was the home team?" }
### QUESTION How many bronze medals for the nation with fewer than 3 gold, 1 silver and rank of 3? ### CONTEXT CREATE TABLE table_name_29 (bronze VARCHAR, rank VARCHAR, total VARCHAR, gold VARCHAR, silver VARCHAR) ### ANSWER SELECT COUNT(bronze) FROM table_name_29 WHERE gold < 3 AND silver = 1 AND total < 3 AND rank = 3
{ "answer": "SELECT COUNT(bronze) FROM table_name_29 WHERE gold < 3 AND silver = 1 AND total < 3 AND rank = 3", "context": "CREATE TABLE table_name_29 (bronze VARCHAR, rank VARCHAR, total VARCHAR, gold VARCHAR, silver VARCHAR)", "question": "How many bronze medals for the nation with fewer than 3 gold, 1 silver and rank of 3?" }
### QUESTION Who is the academic & University affairs when the Human resources & operations is N. Charles Hamilton? ### CONTEXT CREATE TABLE table_12113818_1 (academic_ VARCHAR, _university_affairs VARCHAR, human_resources_ VARCHAR, _operations VARCHAR) ### ANSWER SELECT academic_ & _university_affairs FROM table_12113818_1 WHERE human_resources_ & _operations = "N. Charles Hamilton"
{ "answer": "SELECT academic_ & _university_affairs FROM table_12113818_1 WHERE human_resources_ & _operations = \"N. Charles Hamilton\"", "context": "CREATE TABLE table_12113818_1 (academic_ VARCHAR, _university_affairs VARCHAR, human_resources_ VARCHAR, _operations VARCHAR)", "question": "Who is the academic & University affairs when the Human resources & operations is N. Charles Hamilton?" }
### QUESTION How many times does the rebuilt data contain cannot handle non-empty timestamp argument! 1929 and scrapped data contain cannot handle non-empty timestamp argument! 1954? ### CONTEXT CREATE TABLE table_12113888_1 (number VARCHAR, rebuilt VARCHAR, scrapped_sold VARCHAR) ### ANSWER SELECT COUNT(number) FROM table_12113888_1 WHERE rebuilt = "Cannot handle non-empty timestamp argument! 1929" AND scrapped_sold = "Cannot handle non-empty timestamp argument! 1954"
{ "answer": "SELECT COUNT(number) FROM table_12113888_1 WHERE rebuilt = \"Cannot handle non-empty timestamp argument! 1929\" AND scrapped_sold = \"Cannot handle non-empty timestamp argument! 1954\"", "context": "CREATE TABLE table_12113888_1 (number VARCHAR, rebuilt VARCHAR, scrapped_sold VARCHAR)", "question": "How many times does the rebuilt data contain cannot handle non-empty timestamp argument! 1929 and scrapped data contain cannot handle non-empty timestamp argument! 1954?" }
### QUESTION Name the average reported isn for july 2007 for kuwait release of no ### CONTEXT CREATE TABLE table_name_4 (reported_isn INTEGER, on_july_2007_press_release VARCHAR, citizenship VARCHAR) ### ANSWER SELECT AVG(reported_isn) FROM table_name_4 WHERE on_july_2007_press_release = "no" AND citizenship = "kuwait"
{ "answer": "SELECT AVG(reported_isn) FROM table_name_4 WHERE on_july_2007_press_release = \"no\" AND citizenship = \"kuwait\"", "context": "CREATE TABLE table_name_4 (reported_isn INTEGER, on_july_2007_press_release VARCHAR, citizenship VARCHAR)", "question": "Name the average reported isn for july 2007 for kuwait release of no" }
### QUESTION how many end of term with age at inauguration being 64-066 64years, 66days ### CONTEXT CREATE TABLE table_12134383_1 (end_of_term VARCHAR, age_at_inauguration VARCHAR) ### ANSWER SELECT COUNT(end_of_term) FROM table_12134383_1 WHERE age_at_inauguration = "64-066 64years, 66days"
{ "answer": "SELECT COUNT(end_of_term) FROM table_12134383_1 WHERE age_at_inauguration = \"64-066 64years, 66days\"", "context": "CREATE TABLE table_12134383_1 (end_of_term VARCHAR, age_at_inauguration VARCHAR)", "question": " how many end of term with age at inauguration being 64-066 64years, 66days" }
### QUESTION Tell me the driver for grid less than 19 and Laps more than 59 with time/retired of +0.294 ### CONTEXT CREATE TABLE table_name_41 (driver VARCHAR, time_retired VARCHAR, grid VARCHAR, laps VARCHAR) ### ANSWER SELECT driver FROM table_name_41 WHERE grid < 19 AND laps > 59 AND time_retired = "+0.294"
{ "answer": "SELECT driver FROM table_name_41 WHERE grid < 19 AND laps > 59 AND time_retired = \"+0.294\"", "context": "CREATE TABLE table_name_41 (driver VARCHAR, time_retired VARCHAR, grid VARCHAR, laps VARCHAR)", "question": "Tell me the driver for grid less than 19 and Laps more than 59 with time/retired of +0.294" }
### QUESTION where is team player mike mcniven played for? ### CONTEXT CREATE TABLE table_1213511_5 (college_junior_club_team VARCHAR, player VARCHAR) ### ANSWER SELECT college_junior_club_team FROM table_1213511_5 WHERE player = "Mike McNiven"
{ "answer": "SELECT college_junior_club_team FROM table_1213511_5 WHERE player = \"Mike McNiven\"", "context": "CREATE TABLE table_1213511_5 (college_junior_club_team VARCHAR, player VARCHAR)", "question": "where is team player mike mcniven played for?" }
### QUESTION How many teams did Bob Peppler play for? ### CONTEXT CREATE TABLE table_1213511_3 (nhl_team VARCHAR, player VARCHAR) ### ANSWER SELECT COUNT(nhl_team) FROM table_1213511_3 WHERE player = "Bob Peppler"
{ "answer": "SELECT COUNT(nhl_team) FROM table_1213511_3 WHERE player = \"Bob Peppler\"", "context": "CREATE TABLE table_1213511_3 (nhl_team VARCHAR, player VARCHAR)", "question": "How many teams did Bob Peppler play for?" }
### QUESTION What was the most recent year a height of 2770 m and a HC climb before 1992 was climbed? ### CONTEXT CREATE TABLE table_name_56 (most_recent VARCHAR, height__m_ VARCHAR, first_time_as_hc_climb VARCHAR) ### ANSWER SELECT COUNT(most_recent) FROM table_name_56 WHERE height__m_ = "2770" AND first_time_as_hc_climb < 1992
{ "answer": "SELECT COUNT(most_recent) FROM table_name_56 WHERE height__m_ = \"2770\" AND first_time_as_hc_climb < 1992", "context": "CREATE TABLE table_name_56 (most_recent VARCHAR, height__m_ VARCHAR, first_time_as_hc_climb VARCHAR)", "question": "What was the most recent year a height of 2770 m and a HC climb before 1992 was climbed?" }
### QUESTION When was the first HC climb before 2013 with more than 3 times visited, more than 4 HC climbs, and a height of 1669? ### CONTEXT CREATE TABLE table_name_23 (first_time_as_hc_climb VARCHAR, height__m_ VARCHAR, most_recent VARCHAR, no_of_times_visited VARCHAR, no_of_hc_climbs VARCHAR) ### ANSWER SELECT first_time_as_hc_climb FROM table_name_23 WHERE no_of_times_visited > 3 AND no_of_hc_climbs = 4 AND most_recent < 2013 AND height__m_ = "1669"
{ "answer": "SELECT first_time_as_hc_climb FROM table_name_23 WHERE no_of_times_visited > 3 AND no_of_hc_climbs = 4 AND most_recent < 2013 AND height__m_ = \"1669\"", "context": "CREATE TABLE table_name_23 (first_time_as_hc_climb VARCHAR, height__m_ VARCHAR, most_recent VARCHAR, no_of_times_visited VARCHAR, no_of_hc_climbs VARCHAR)", "question": "When was the first HC climb before 2013 with more than 3 times visited, more than 4 HC climbs, and a height of 1669?" }
### QUESTION Which college/junior/club teams nationality is canada and nhl team is minnesota north stars ### CONTEXT CREATE TABLE table_1213511_7 (college_junior_club_team VARCHAR, nationality VARCHAR, nhl_team VARCHAR) ### ANSWER SELECT college_junior_club_team FROM table_1213511_7 WHERE nationality = "Canada" AND nhl_team = "Minnesota North Stars"
{ "answer": "SELECT college_junior_club_team FROM table_1213511_7 WHERE nationality = \"Canada\" AND nhl_team = \"Minnesota North Stars\"", "context": "CREATE TABLE table_1213511_7 (college_junior_club_team VARCHAR, nationality VARCHAR, nhl_team VARCHAR)", "question": "Which college/junior/club teams nationality is canada and nhl team is minnesota north stars" }
### QUESTION How many picks had a Reg GP that was over 906, when the Pl GP was bigger than 99? ### CONTEXT CREATE TABLE table_name_30 (pick__number VARCHAR, reg_gp VARCHAR, pl_gp VARCHAR) ### ANSWER SELECT COUNT(pick__number) FROM table_name_30 WHERE reg_gp > 906 AND pl_gp > 99
{ "answer": "SELECT COUNT(pick__number) FROM table_name_30 WHERE reg_gp > 906 AND pl_gp > 99", "context": "CREATE TABLE table_name_30 (pick__number VARCHAR, reg_gp VARCHAR, pl_gp VARCHAR)", "question": "How many picks had a Reg GP that was over 906, when the Pl GP was bigger than 99?" }
### QUESTION What was the attendence of the game on 26 April 1948 and an away team of Hawthorn? ### CONTEXT CREATE TABLE table_name_12 (crowd VARCHAR, date VARCHAR, away_team VARCHAR) ### ANSWER SELECT crowd FROM table_name_12 WHERE date = "26 april 1948" AND away_team = "hawthorn"
{ "answer": "SELECT crowd FROM table_name_12 WHERE date = \"26 april 1948\" AND away_team = \"hawthorn\"", "context": "CREATE TABLE table_name_12 (crowd VARCHAR, date VARCHAR, away_team VARCHAR)", "question": "What was the attendence of the game on 26 April 1948 and an away team of Hawthorn?" }
### QUESTION What was the constructor when Jack Brabham was the driver at the Monaco Grand Prix? ### CONTEXT CREATE TABLE table_name_46 (constructor VARCHAR, winning_driver VARCHAR, race VARCHAR) ### ANSWER SELECT constructor FROM table_name_46 WHERE winning_driver = "jack brabham" AND race = "monaco grand prix"
{ "answer": "SELECT constructor FROM table_name_46 WHERE winning_driver = \"jack brabham\" AND race = \"monaco grand prix\"", "context": "CREATE TABLE table_name_46 (constructor VARCHAR, winning_driver VARCHAR, race VARCHAR)", "question": "What was the constructor when Jack Brabham was the driver at the Monaco Grand Prix?" }
### QUESTION What date was Joakim Bonnier in the pole position? ### CONTEXT CREATE TABLE table_name_21 (date VARCHAR, pole_position VARCHAR) ### ANSWER SELECT date FROM table_name_21 WHERE pole_position = "joakim bonnier"
{ "answer": "SELECT date FROM table_name_21 WHERE pole_position = \"joakim bonnier\"", "context": "CREATE TABLE table_name_21 (date VARCHAR, pole_position VARCHAR)", "question": "What date was Joakim Bonnier in the pole position?" }
### QUESTION What position does Syracuse's player have? ### CONTEXT CREATE TABLE table_12165999_1 (position VARCHAR, college VARCHAR) ### ANSWER SELECT position FROM table_12165999_1 WHERE college = "Syracuse"
{ "answer": "SELECT position FROM table_12165999_1 WHERE college = \"Syracuse\"", "context": "CREATE TABLE table_12165999_1 (position VARCHAR, college VARCHAR)", "question": "What position does Syracuse's player have?" }
### QUESTION Which Nominee has a Category of outstanding musical? ### CONTEXT CREATE TABLE table_name_88 (nominee VARCHAR, category VARCHAR) ### ANSWER SELECT nominee FROM table_name_88 WHERE category = "outstanding musical"
{ "answer": "SELECT nominee FROM table_name_88 WHERE category = \"outstanding musical\"", "context": "CREATE TABLE table_name_88 (nominee VARCHAR, category VARCHAR)", "question": "Which Nominee has a Category of outstanding musical?" }
### QUESTION Who is themens doubles when the mens singles is flemming delfs? ### CONTEXT CREATE TABLE table_12171145_1 (mens_doubles VARCHAR, mens_singles VARCHAR) ### ANSWER SELECT mens_doubles FROM table_12171145_1 WHERE mens_singles = "Flemming Delfs"
{ "answer": "SELECT mens_doubles FROM table_12171145_1 WHERE mens_singles = \"Flemming Delfs\"", "context": "CREATE TABLE table_12171145_1 (mens_doubles VARCHAR, mens_singles VARCHAR)", "question": "Who is themens doubles when the mens singles is flemming delfs?" }
### QUESTION what was the engine when ken downing drove an entrant from connaught engineering? ### CONTEXT CREATE TABLE table_name_37 (engine VARCHAR, driver VARCHAR, entrant VARCHAR) ### ANSWER SELECT engine FROM table_name_37 WHERE driver = "ken downing" AND entrant = "connaught engineering"
{ "answer": "SELECT engine FROM table_name_37 WHERE driver = \"ken downing\" AND entrant = \"connaught engineering\"", "context": "CREATE TABLE table_name_37 (engine VARCHAR, driver VARCHAR, entrant VARCHAR)", "question": "what was the engine when ken downing drove an entrant from connaught engineering?" }
### QUESTION How many trains call at Castor, Overton, Peterborough East and are operated by LNWR? ### CONTEXT CREATE TABLE table_12221135_3 (arrival VARCHAR, operator VARCHAR, calling_at VARCHAR) ### ANSWER SELECT COUNT(arrival) FROM table_12221135_3 WHERE operator = "LNWR" AND calling_at = "Castor, Overton, Peterborough East"
{ "answer": "SELECT COUNT(arrival) FROM table_12221135_3 WHERE operator = \"LNWR\" AND calling_at = \"Castor, Overton, Peterborough East\"", "context": "CREATE TABLE table_12221135_3 (arrival VARCHAR, operator VARCHAR, calling_at VARCHAR)", "question": "How many trains call at Castor, Overton, Peterborough East and are operated by LNWR?" }
### QUESTION Name the lelast decile for roll of 428 ### CONTEXT CREATE TABLE table_name_63 (decile INTEGER, roll VARCHAR) ### ANSWER SELECT MIN(decile) FROM table_name_63 WHERE roll = 428
{ "answer": "SELECT MIN(decile) FROM table_name_63 WHERE roll = 428", "context": "CREATE TABLE table_name_63 (decile INTEGER, roll VARCHAR)", "question": "Name the lelast decile for roll of 428" }
### QUESTION What are the the University of Richmond's school colors? ### CONTEXT CREATE TABLE table_1221089_1 (colors VARCHAR, institution VARCHAR) ### ANSWER SELECT colors FROM table_1221089_1 WHERE institution = "University of Richmond"
{ "answer": "SELECT colors FROM table_1221089_1 WHERE institution = \"University of Richmond\"", "context": "CREATE TABLE table_1221089_1 (colors VARCHAR, institution VARCHAR)", "question": "What are the the University of Richmond's school colors?" }
### QUESTION What's the highest year than hawthorn won with a season result of preliminary finalist and a crowd smaller than 27,407? ### CONTEXT CREATE TABLE table_name_18 (year INTEGER, crowd VARCHAR, winners VARCHAR, season_result VARCHAR) ### ANSWER SELECT MAX(year) FROM table_name_18 WHERE winners = "hawthorn" AND season_result = "preliminary finalist" AND crowd < 27 OFFSET 407
{ "answer": "SELECT MAX(year) FROM table_name_18 WHERE winners = \"hawthorn\" AND season_result = \"preliminary finalist\" AND crowd < 27 OFFSET 407", "context": "CREATE TABLE table_name_18 (year INTEGER, crowd VARCHAR, winners VARCHAR, season_result VARCHAR)", "question": "What's the highest year than hawthorn won with a season result of preliminary finalist and a crowd smaller than 27,407?" }
### QUESTION What's the name of the central bank in the country where Colombian Peso (cop) is the local currency? ### CONTEXT CREATE TABLE table_1222653_10 (central_bank VARCHAR, currency VARCHAR) ### ANSWER SELECT central_bank FROM table_1222653_10 WHERE currency = "Colombian peso (COP)"
{ "answer": "SELECT central_bank FROM table_1222653_10 WHERE currency = \"Colombian peso (COP)\"", "context": "CREATE TABLE table_1222653_10 (central_bank VARCHAR, currency VARCHAR)", "question": "What's the name of the central bank in the country where Colombian Peso (cop) is the local currency?" }
### QUESTION Tell me the sum of number of jamaicans given british citizenship for 2004 and registration of a minor child more than 640 ### CONTEXT CREATE TABLE table_name_44 (numer_of_jamaicans_granted_british_citizenship INTEGER, year VARCHAR, registration_of_a_minor_child VARCHAR) ### ANSWER SELECT SUM(numer_of_jamaicans_granted_british_citizenship) FROM table_name_44 WHERE year = 2004 AND registration_of_a_minor_child > 640
{ "answer": "SELECT SUM(numer_of_jamaicans_granted_british_citizenship) FROM table_name_44 WHERE year = 2004 AND registration_of_a_minor_child > 640", "context": "CREATE TABLE table_name_44 (numer_of_jamaicans_granted_british_citizenship INTEGER, year VARCHAR, registration_of_a_minor_child VARCHAR)", "question": "Tell me the sum of number of jamaicans given british citizenship for 2004 and registration of a minor child more than 640" }
### QUESTION Which title has a Black Ice for a guest performer and a length of 5:49? ### CONTEXT CREATE TABLE table_name_50 (title VARCHAR, guest_performer VARCHAR, time VARCHAR) ### ANSWER SELECT title FROM table_name_50 WHERE guest_performer = "black ice" AND time = "5:49"
{ "answer": "SELECT title FROM table_name_50 WHERE guest_performer = \"black ice\" AND time = \"5:49\"", "context": "CREATE TABLE table_name_50 (title VARCHAR, guest_performer VARCHAR, time VARCHAR)", "question": "Which title has a Black Ice for a guest performer and a length of 5:49?" }
### QUESTION How many women doubles teams competed in the same year as when Jamie van Hooijdonk competed in men singles? ### CONTEXT CREATE TABLE table_12232843_1 (womens_doubles VARCHAR, mens_singles VARCHAR) ### ANSWER SELECT COUNT(womens_doubles) FROM table_12232843_1 WHERE mens_singles = "Jamie van Hooijdonk"
{ "answer": "SELECT COUNT(womens_doubles) FROM table_12232843_1 WHERE mens_singles = \"Jamie van Hooijdonk\"", "context": "CREATE TABLE table_12232843_1 (womens_doubles VARCHAR, mens_singles VARCHAR)", "question": "How many women doubles teams competed in the same year as when Jamie van Hooijdonk competed in men singles?" }
### QUESTION What was the home team's score of the game where South Melbourne is the away team? ### CONTEXT CREATE TABLE table_name_77 (home_team VARCHAR, away_team VARCHAR) ### ANSWER SELECT home_team AS score FROM table_name_77 WHERE away_team = "south melbourne"
{ "answer": "SELECT home_team AS score FROM table_name_77 WHERE away_team = \"south melbourne\"", "context": "CREATE TABLE table_name_77 (home_team VARCHAR, away_team VARCHAR)", "question": "What was the home team's score of the game where South Melbourne is the away team?" }
### QUESTION Which venue hosted the 2004 AFC Asian Cup qualification on November 18, 2003? ### CONTEXT CREATE TABLE table_name_11 (venue VARCHAR, competition VARCHAR, date VARCHAR) ### ANSWER SELECT venue FROM table_name_11 WHERE competition = "2004 afc asian cup qualification" AND date = "november 18, 2003"
{ "answer": "SELECT venue FROM table_name_11 WHERE competition = \"2004 afc asian cup qualification\" AND date = \"november 18, 2003\"", "context": "CREATE TABLE table_name_11 (venue VARCHAR, competition VARCHAR, date VARCHAR)", "question": "Which venue hosted the 2004 AFC Asian Cup qualification on November 18, 2003?" }
### QUESTION On what date did a friendly competition, hosted in Dubai, result in a draw? ### CONTEXT CREATE TABLE table_name_79 (date VARCHAR, venue VARCHAR, result VARCHAR, competition VARCHAR) ### ANSWER SELECT date FROM table_name_79 WHERE result = "draw" AND competition = "friendly" AND venue = "dubai"
{ "answer": "SELECT date FROM table_name_79 WHERE result = \"draw\" AND competition = \"friendly\" AND venue = \"dubai\"", "context": "CREATE TABLE table_name_79 (date VARCHAR, venue VARCHAR, result VARCHAR, competition VARCHAR)", "question": "On what date did a friendly competition, hosted in Dubai, result in a draw?" }
### QUESTION What's the leader team in the Trofeo Fast Team in stage 20? ### CONTEXT CREATE TABLE table_12261714_2 (trofeo_fast_team VARCHAR, stage VARCHAR) ### ANSWER SELECT trofeo_fast_team FROM table_12261714_2 WHERE stage = "20"
{ "answer": "SELECT trofeo_fast_team FROM table_12261714_2 WHERE stage = \"20\"", "context": "CREATE TABLE table_12261714_2 (trofeo_fast_team VARCHAR, stage VARCHAR)", "question": "What's the leader team in the Trofeo Fast Team in stage 20?" }
### QUESTION Who's the winner in stage 1a, where the leader in the young rider classification is Francesco Casagrande? ### CONTEXT CREATE TABLE table_12261714_2 (winner VARCHAR, young_rider_classification VARCHAR, stage VARCHAR) ### ANSWER SELECT winner FROM table_12261714_2 WHERE young_rider_classification = "Francesco Casagrande" AND stage = "1a"
{ "answer": "SELECT winner FROM table_12261714_2 WHERE young_rider_classification = \"Francesco Casagrande\" AND stage = \"1a\"", "context": "CREATE TABLE table_12261714_2 (winner VARCHAR, young_rider_classification VARCHAR, stage VARCHAR)", "question": "Who's the winner in stage 1a, where the leader in the young rider classification is Francesco Casagrande?" }
### QUESTION Name the general classification of stage 15 ### CONTEXT CREATE TABLE table_12261806_2 (general_classification VARCHAR, stage VARCHAR) ### ANSWER SELECT COUNT(general_classification) FROM table_12261806_2 WHERE stage = "15"
{ "answer": "SELECT COUNT(general_classification) FROM table_12261806_2 WHERE stage = \"15\"", "context": "CREATE TABLE table_12261806_2 (general_classification VARCHAR, stage VARCHAR)", "question": "Name the general classification of stage 15" }
### QUESTION What was the highest lap for Luigi Piotti with more than 13 grid and a time/retired engine? ### CONTEXT CREATE TABLE table_name_19 (laps INTEGER, driver VARCHAR, grid VARCHAR, time_retired VARCHAR) ### ANSWER SELECT MAX(laps) FROM table_name_19 WHERE grid > 13 AND time_retired = "engine" AND driver = "luigi piotti"
{ "answer": "SELECT MAX(laps) FROM table_name_19 WHERE grid > 13 AND time_retired = \"engine\" AND driver = \"luigi piotti\"", "context": "CREATE TABLE table_name_19 (laps INTEGER, driver VARCHAR, grid VARCHAR, time_retired VARCHAR)", "question": "What was the highest lap for Luigi Piotti with more than 13 grid and a time/retired engine?" }
### QUESTION How many times was the GFR 2006 equal to 53.2? ### CONTEXT CREATE TABLE table_12251936_1 (whites_as__percentage_of_pop VARCHAR, gfr_2006 VARCHAR) ### ANSWER SELECT COUNT(whites_as__percentage_of_pop) FROM table_12251936_1 WHERE gfr_2006 = "53.2"
{ "answer": "SELECT COUNT(whites_as__percentage_of_pop) FROM table_12251936_1 WHERE gfr_2006 = \"53.2\"", "context": "CREATE TABLE table_12251936_1 (whites_as__percentage_of_pop VARCHAR, gfr_2006 VARCHAR)", "question": "How many times was the GFR 2006 equal to 53.2?" }
### QUESTION How many mens doubles took place in 1970/1971? ### CONTEXT CREATE TABLE table_12266757_1 (mens_doubles VARCHAR, season VARCHAR) ### ANSWER SELECT COUNT(mens_doubles) FROM table_12266757_1 WHERE season = "1970/1971"
{ "answer": "SELECT COUNT(mens_doubles) FROM table_12266757_1 WHERE season = \"1970/1971\"", "context": "CREATE TABLE table_12266757_1 (mens_doubles VARCHAR, season VARCHAR)", "question": "How many mens doubles took place in 1970/1971?" }
### QUESTION Who was the womens singles winnerwhen the mens doubles were stefan karlsson claes nordin , bk aura gbk? ### CONTEXT CREATE TABLE table_12266757_1 (womens_singles VARCHAR, mens_doubles VARCHAR) ### ANSWER SELECT womens_singles FROM table_12266757_1 WHERE mens_doubles = "Stefan Karlsson Claes Nordin , BK Aura GBK"
{ "answer": "SELECT womens_singles FROM table_12266757_1 WHERE mens_doubles = \"Stefan Karlsson Claes Nordin , BK Aura GBK\"", "context": "CREATE TABLE table_12266757_1 (womens_singles VARCHAR, mens_doubles VARCHAR)", "question": "Who was the womens singles winnerwhen the mens doubles were stefan karlsson claes nordin , bk aura gbk?" }
### QUESTION How many wins were there in the 2000 season in the central division with less than 81 losses? ### CONTEXT CREATE TABLE table_name_85 (wins INTEGER, losses VARCHAR, division VARCHAR, reds_season VARCHAR) ### ANSWER SELECT AVG(wins) FROM table_name_85 WHERE division = "central" AND reds_season < 2000 AND losses < 81
{ "answer": "SELECT AVG(wins) FROM table_name_85 WHERE division = \"central\" AND reds_season < 2000 AND losses < 81", "context": "CREATE TABLE table_name_85 (wins INTEGER, losses VARCHAR, division VARCHAR, reds_season VARCHAR)", "question": "How many wins were there in the 2000 season in the central division with less than 81 losses?" }
### QUESTION What was the lowest percentages of wins in 1989 with a GB [c] of 17? ### CONTEXT CREATE TABLE table_name_59 (win_percentage INTEGER, reds_season VARCHAR, gb_ VARCHAR, c_ VARCHAR) ### ANSWER SELECT MIN(win_percentage) FROM table_name_59 WHERE gb_[c_] = "17" AND reds_season = 1989
{ "answer": "SELECT MIN(win_percentage) FROM table_name_59 WHERE gb_[c_] = \"17\" AND reds_season = 1989", "context": "CREATE TABLE table_name_59 (win_percentage INTEGER, reds_season VARCHAR, gb_ VARCHAR, c_ VARCHAR)", "question": "What was the lowest percentages of wins in 1989 with a GB [c] of 17?" }
### QUESTION what's the denomination with year being 2008 and reverse being football ### CONTEXT CREATE TABLE table_12284476_8 (denomination VARCHAR, year VARCHAR, reverse VARCHAR) ### ANSWER SELECT denomination FROM table_12284476_8 WHERE year = 2008 AND reverse = "Football"
{ "answer": "SELECT denomination FROM table_12284476_8 WHERE year = 2008 AND reverse = \"Football\"", "context": "CREATE TABLE table_12284476_8 (denomination VARCHAR, year VARCHAR, reverse VARCHAR)", "question": "what's the denomination with year being 2008 and reverse being football" }
### QUESTION What is the average gold medals Uzbekistan, which has less than 24 total medals, has? ### CONTEXT CREATE TABLE table_name_65 (gold INTEGER, nation VARCHAR, total VARCHAR) ### ANSWER SELECT AVG(gold) FROM table_name_65 WHERE nation = "uzbekistan" AND total < 24
{ "answer": "SELECT AVG(gold) FROM table_name_65 WHERE nation = \"uzbekistan\" AND total < 24", "context": "CREATE TABLE table_name_65 (gold INTEGER, nation VARCHAR, total VARCHAR)", "question": "What is the average gold medals Uzbekistan, which has less than 24 total medals, has?" }
### QUESTION What was the grid placement for the Maserati that completed 14 laps? ### CONTEXT CREATE TABLE table_name_40 (grid VARCHAR, constructor VARCHAR, laps VARCHAR) ### ANSWER SELECT grid FROM table_name_40 WHERE constructor = "maserati" AND laps = 14
{ "answer": "SELECT grid FROM table_name_40 WHERE constructor = \"maserati\" AND laps = 14", "context": "CREATE TABLE table_name_40 (grid VARCHAR, constructor VARCHAR, laps VARCHAR)", "question": "What was the grid placement for the Maserati that completed 14 laps?" }
### QUESTION What is the athlete from Edwardsville? ### CONTEXT CREATE TABLE table_1231316_7 (athlete VARCHAR, location VARCHAR) ### ANSWER SELECT athlete FROM table_1231316_7 WHERE location = "Edwardsville"
{ "answer": "SELECT athlete FROM table_1231316_7 WHERE location = \"Edwardsville\"", "context": "CREATE TABLE table_1231316_7 (athlete VARCHAR, location VARCHAR)", "question": "What is the athlete from Edwardsville?" }
### QUESTION What's the original air date of the episode with a broadcast order s04 e01? ### CONTEXT CREATE TABLE table_1231892_4 (us_air_date VARCHAR, broadcast_order VARCHAR) ### ANSWER SELECT us_air_date FROM table_1231892_4 WHERE broadcast_order = "S04 E01"
{ "answer": "SELECT us_air_date FROM table_1231892_4 WHERE broadcast_order = \"S04 E01\"", "context": "CREATE TABLE table_1231892_4 (us_air_date VARCHAR, broadcast_order VARCHAR)", "question": "What's the original air date of the episode with a broadcast order s04 e01?" }
### 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 Who was the Constructor at the Argentine Grand Prix? ### CONTEXT CREATE TABLE table_name_21 (constructor VARCHAR, race VARCHAR) ### ANSWER SELECT constructor FROM table_name_21 WHERE race = "argentine grand prix"
{ "answer": "SELECT constructor FROM table_name_21 WHERE race = \"argentine grand prix\"", "context": "CREATE TABLE table_name_21 (constructor VARCHAR, race VARCHAR)", "question": "Who was the Constructor at the Argentine Grand Prix?" }
### QUESTION What was the Attendance when the Home team was Montreal, on the Date of March 24? ### CONTEXT CREATE TABLE table_name_59 (attendance INTEGER, home VARCHAR, date VARCHAR) ### ANSWER SELECT SUM(attendance) FROM table_name_59 WHERE home = "montreal" AND date = "march 24"
{ "answer": "SELECT SUM(attendance) FROM table_name_59 WHERE home = \"montreal\" AND date = \"march 24\"", "context": "CREATE TABLE table_name_59 (attendance INTEGER, home VARCHAR, date VARCHAR)", "question": "What was the Attendance when the Home team was Montreal, on the Date of March 24?" }
### QUESTION Is the biggest win recorded as home or away? ### CONTEXT CREATE TABLE table_1233808_2 (home_or_away VARCHAR, record VARCHAR) ### ANSWER SELECT home_or_away FROM table_1233808_2 WHERE record = "Biggest win"
{ "answer": "SELECT home_or_away FROM table_1233808_2 WHERE record = \"Biggest win\"", "context": "CREATE TABLE table_1233808_2 (home_or_away VARCHAR, record VARCHAR)", "question": "Is the biggest win recorded as home or away?" }
### QUESTION Tell me the previous rank for italy with points more than 100 ### CONTEXT CREATE TABLE table_name_92 (Previous VARCHAR, nationality VARCHAR, points VARCHAR) ### ANSWER SELECT Previous AS rank FROM table_name_92 WHERE nationality = "italy" AND points > 100
{ "answer": "SELECT Previous AS rank FROM table_name_92 WHERE nationality = \"italy\" AND points > 100", "context": "CREATE TABLE table_name_92 (Previous VARCHAR, nationality VARCHAR, points VARCHAR)", "question": "Tell me the previous rank for italy with points more than 100" }
### QUESTION What is the coverage of relay 5kw of dyfj-tv? ### CONTEXT CREATE TABLE table_12379297_1 (coverage__transmitter_site_ VARCHAR, callsign VARCHAR, station_type VARCHAR, power__kw_ VARCHAR) ### ANSWER SELECT coverage__transmitter_site_ FROM table_12379297_1 WHERE station_type = "Relay" AND power__kw_ = "5kW" AND callsign = "DYFJ-TV"
{ "answer": "SELECT coverage__transmitter_site_ FROM table_12379297_1 WHERE station_type = \"Relay\" AND power__kw_ = \"5kW\" AND callsign = \"DYFJ-TV\"", "context": "CREATE TABLE table_12379297_1 (coverage__transmitter_site_ VARCHAR, callsign VARCHAR, station_type VARCHAR, power__kw_ VARCHAR)", "question": "What is the coverage of relay 5kw of dyfj-tv?" }
### QUESTION What is the ch# of dwlj-tv? ### CONTEXT CREATE TABLE table_12379297_1 (ch__number VARCHAR, callsign VARCHAR) ### ANSWER SELECT ch__number FROM table_12379297_1 WHERE callsign = "DWLJ-TV"
{ "answer": "SELECT ch__number FROM table_12379297_1 WHERE callsign = \"DWLJ-TV\"", "context": "CREATE TABLE table_12379297_1 (ch__number VARCHAR, callsign VARCHAR)", "question": "What is the ch# of dwlj-tv?" }
### QUESTION Who's the player with 2:05.63 (1296 pts) swimming score? ### CONTEXT CREATE TABLE table_12407546_1 (athlete__noc_ VARCHAR, swimming VARCHAR) ### ANSWER SELECT athlete__noc_ FROM table_12407546_1 WHERE swimming = "2:05.63 (1296 pts)"
{ "answer": "SELECT athlete__noc_ FROM table_12407546_1 WHERE swimming = \"2:05.63 (1296 pts)\"", "context": "CREATE TABLE table_12407546_1 (athlete__noc_ VARCHAR, swimming VARCHAR)", "question": "Who's the player with 2:05.63 (1296 pts) swimming score?" }
### QUESTION List the hebrew word for the strongs words compounded of 'adown [# 113] & yahu ### CONTEXT CREATE TABLE table_1242447_2 (hebrew_word VARCHAR, strongs_words_compounded VARCHAR) ### ANSWER SELECT hebrew_word FROM table_1242447_2 WHERE strongs_words_compounded = "'adown [# 113] & Yahu"
{ "answer": "SELECT hebrew_word FROM table_1242447_2 WHERE strongs_words_compounded = \"'adown [# 113] & Yahu\"", "context": "CREATE TABLE table_1242447_2 (hebrew_word VARCHAR, strongs_words_compounded VARCHAR)", "question": "List the hebrew word for the strongs words compounded of 'adown [# 113] & yahu" }
### QUESTION What seasons does Nick lucas appear? ### CONTEXT CREATE TABLE table_12441518_1 (main_cast_seasons VARCHAR, character VARCHAR) ### ANSWER SELECT main_cast_seasons FROM table_12441518_1 WHERE character = "Nick Lucas"
{ "answer": "SELECT main_cast_seasons FROM table_12441518_1 WHERE character = \"Nick Lucas\"", "context": "CREATE TABLE table_12441518_1 (main_cast_seasons VARCHAR, character VARCHAR)", "question": "What seasons does Nick lucas appear?" }
### QUESTION Name the D 49 √ for when D 46 √ of i 1 @ ### CONTEXT CREATE TABLE table_name_24 (d_49_√ VARCHAR, d_46_√ VARCHAR) ### ANSWER SELECT d_49_√ FROM table_name_24 WHERE d_46_√ = "i 1 @"
{ "answer": "SELECT d_49_√ FROM table_name_24 WHERE d_46_√ = \"i 1 @\"", "context": "CREATE TABLE table_name_24 (d_49_√ VARCHAR, d_46_√ VARCHAR)", "question": "Name the D 49 √ for when D 46 √ of i 1 @" }
### QUESTION What was the total prize money where John Tabatabai was the runner-up? ### CONTEXT CREATE TABLE table_12454156_1 (prize_money VARCHAR, runner_up VARCHAR) ### ANSWER SELECT prize_money FROM table_12454156_1 WHERE runner_up = "John Tabatabai"
{ "answer": "SELECT prize_money FROM table_12454156_1 WHERE runner_up = \"John Tabatabai\"", "context": "CREATE TABLE table_12454156_1 (prize_money VARCHAR, runner_up VARCHAR)", "question": "What was the total prize money where John Tabatabai was the runner-up?" }
### QUESTION Name the circuit for darracq and name of cuban race ### CONTEXT CREATE TABLE table_name_63 (circuit VARCHAR, winning_constructor VARCHAR, name VARCHAR) ### ANSWER SELECT circuit FROM table_name_63 WHERE winning_constructor = "darracq" AND name = "cuban race"
{ "answer": "SELECT circuit FROM table_name_63 WHERE winning_constructor = \"darracq\" AND name = \"cuban race\"", "context": "CREATE TABLE table_name_63 (circuit VARCHAR, winning_constructor VARCHAR, name VARCHAR)", "question": "Name the circuit for darracq and name of cuban race" }
### QUESTION On December 4, Tampa Bay has a record of 12-13-2. ### CONTEXT CREATE TABLE table_name_42 (record VARCHAR, home VARCHAR, date VARCHAR) ### ANSWER SELECT record FROM table_name_42 WHERE home = "tampa bay" AND date = "december 4"
{ "answer": "SELECT record FROM table_name_42 WHERE home = \"tampa bay\" AND date = \"december 4\"", "context": "CREATE TABLE table_name_42 (record VARCHAR, home VARCHAR, date VARCHAR)", "question": "On December 4, Tampa Bay has a record of 12-13-2." }
### QUESTION What are the remarks for the entry ranked greater than 2 with a skyteam (2012) alliance? ### CONTEXT CREATE TABLE table_name_23 (remarks VARCHAR, rank VARCHAR, alliance VARCHAR) ### ANSWER SELECT remarks FROM table_name_23 WHERE rank > 2 AND alliance = "skyteam (2012)"
{ "answer": "SELECT remarks FROM table_name_23 WHERE rank > 2 AND alliance = \"skyteam (2012)\"", "context": "CREATE TABLE table_name_23 (remarks VARCHAR, rank VARCHAR, alliance VARCHAR)", "question": "What are the remarks for the entry ranked greater than 2 with a skyteam (2012) alliance?" }
### QUESTION What is the August 15, 2012 population when the population density of 2012 is 307? ### CONTEXT CREATE TABLE table_12496904_1 (_2012 VARCHAR, population_august_15 INTEGER, population_density_2012__km_2__ VARCHAR) ### ANSWER SELECT MAX(population_august_15), _2012 FROM table_12496904_1 WHERE population_density_2012__km_2__ = 307
{ "answer": "SELECT MAX(population_august_15), _2012 FROM table_12496904_1 WHERE population_density_2012__km_2__ = 307", "context": "CREATE TABLE table_12496904_1 (_2012 VARCHAR, population_august_15 INTEGER, population_density_2012__km_2__ VARCHAR)", "question": "What is the August 15, 2012 population when the population density of 2012 is 307?" }
### QUESTION When Fabrizio Baldassari is the runner-up what is the total prize money? ### CONTEXT CREATE TABLE table_12454156_1 (prize_money VARCHAR, runner_up VARCHAR) ### ANSWER SELECT prize_money FROM table_12454156_1 WHERE runner_up = "Fabrizio Baldassari"
{ "answer": "SELECT prize_money FROM table_12454156_1 WHERE runner_up = \"Fabrizio Baldassari\"", "context": "CREATE TABLE table_12454156_1 (prize_money VARCHAR, runner_up VARCHAR)", "question": "When Fabrizio Baldassari is the runner-up what is the total prize money?" }