text
stringlengths
146
1.06k
source
dict
### QUESTION Who is the highest ranked player that has earnings below 395,386? ### CONTEXT CREATE TABLE table_name_70 (rank INTEGER, earnings__$__ INTEGER) ### ANSWER SELECT MAX(rank) FROM table_name_70 WHERE earnings__$__ < 395 OFFSET 386
{ "answer": "SELECT MAX(rank) FROM table_name_70 WHERE earnings__$__ < 395 OFFSET 386", "context": "CREATE TABLE table_name_70 (rank INTEGER, earnings__$__ INTEGER)", "question": "Who is the highest ranked player that has earnings below 395,386?" }
### QUESTION Name the least clock rate mhz when designation is rimm 4200 ### CONTEXT CREATE TABLE table_142573_1 (clock_rate__mhz_ INTEGER, designation VARCHAR) ### ANSWER SELECT MIN(clock_rate__mhz_) FROM table_142573_1 WHERE designation = "RIMM 4200"
{ "answer": "SELECT MIN(clock_rate__mhz_) FROM table_142573_1 WHERE designation = \"RIMM 4200\"", "context": "CREATE TABLE table_142573_1 (clock_rate__mhz_ INTEGER, designation VARCHAR)", "question": "Name the least clock rate mhz when designation is rimm 4200" }
### QUESTION What is the grid number for troy corser with under 22 laps? ### CONTEXT CREATE TABLE table_name_48 (grid INTEGER, rider VARCHAR, laps VARCHAR) ### ANSWER SELECT SUM(grid) FROM table_name_48 WHERE rider = "troy corser" AND laps < 22
{ "answer": "SELECT SUM(grid) FROM table_name_48 WHERE rider = \"troy corser\" AND laps < 22", "context": "CREATE TABLE table_name_48 (grid INTEGER, rider VARCHAR, laps VARCHAR)", "question": "What is the grid number for troy corser with under 22 laps?" }
### QUESTION Which elementary schools list Cort Monroe as the principal from 2013 to 2014? ### CONTEXT CREATE TABLE table_14254419_3 (elementary_schools VARCHAR, principal__2013_2014_ VARCHAR) ### ANSWER SELECT elementary_schools FROM table_14254419_3 WHERE principal__2013_2014_ = "Cort Monroe"
{ "answer": "SELECT elementary_schools FROM table_14254419_3 WHERE principal__2013_2014_ = \"Cort Monroe\"", "context": "CREATE TABLE table_14254419_3 (elementary_schools VARCHAR, principal__2013_2014_ VARCHAR)", "question": "Which elementary schools list Cort Monroe as the principal from 2013 to 2014?" }
### QUESTION How many laps for robin montgomerie-charrington, and a Grid smaller than 15? ### CONTEXT CREATE TABLE table_name_18 (laps VARCHAR, driver VARCHAR, grid VARCHAR) ### ANSWER SELECT COUNT(laps) FROM table_name_18 WHERE driver = "robin montgomerie-charrington" AND grid < 15
{ "answer": "SELECT COUNT(laps) FROM table_name_18 WHERE driver = \"robin montgomerie-charrington\" AND grid < 15", "context": "CREATE TABLE table_name_18 (laps VARCHAR, driver VARCHAR, grid VARCHAR)", "question": "How many laps for robin montgomerie-charrington, and a Grid smaller than 15?" }
### QUESTION For teams that played 5 games, what was the smallest number of wins? ### CONTEXT CREATE TABLE table_14288212_1 (win INTEGER, played VARCHAR) ### ANSWER SELECT MIN(win) FROM table_14288212_1 WHERE played = 5
{ "answer": "SELECT MIN(win) FROM table_14288212_1 WHERE played = 5", "context": "CREATE TABLE table_14288212_1 (win INTEGER, played VARCHAR)", "question": "For teams that played 5 games, what was the smallest number of wins?" }
### QUESTION How many members gained university status in 1900? ### CONTEXT CREATE TABLE table_142950_1 (research_funding__ VARCHAR, gained_university_status VARCHAR) ### ANSWER SELECT COUNT(research_funding__) AS £, 000 AS _ FROM table_142950_1 WHERE gained_university_status = 1900
{ "answer": "SELECT COUNT(research_funding__) AS £, 000 AS _ FROM table_142950_1 WHERE gained_university_status = 1900", "context": "CREATE TABLE table_142950_1 (research_funding__ VARCHAR, gained_university_status VARCHAR)", "question": "How many members gained university status in 1900?" }
### QUESTION Name the nomination in 2011 that won ### CONTEXT CREATE TABLE table_name_59 (nomination VARCHAR, year VARCHAR, result VARCHAR) ### ANSWER SELECT nomination FROM table_name_59 WHERE year = 2011 AND result = "won"
{ "answer": "SELECT nomination FROM table_name_59 WHERE year = 2011 AND result = \"won\"", "context": "CREATE TABLE table_name_59 (nomination VARCHAR, year VARCHAR, result VARCHAR)", "question": "Name the nomination in 2011 that won" }
### QUESTION How many members have professor edward acton as vice-chancellor? ### CONTEXT CREATE TABLE table_142950_1 (total_number_of_students VARCHAR, vice_chancellor VARCHAR) ### ANSWER SELECT COUNT(total_number_of_students) FROM table_142950_1 WHERE vice_chancellor = "Professor Edward Acton"
{ "answer": "SELECT COUNT(total_number_of_students) FROM table_142950_1 WHERE vice_chancellor = \"Professor Edward Acton\"", "context": "CREATE TABLE table_142950_1 (total_number_of_students VARCHAR, vice_chancellor VARCHAR)", "question": "How many members have professor edward acton as vice-chancellor?" }
### QUESTION What is the year leicester was established? ### CONTEXT CREATE TABLE table_142950_1 (established INTEGER, location VARCHAR) ### ANSWER SELECT MAX(established) FROM table_142950_1 WHERE location = "Leicester"
{ "answer": "SELECT MAX(established) FROM table_142950_1 WHERE location = \"Leicester\"", "context": "CREATE TABLE table_142950_1 (established INTEGER, location VARCHAR)", "question": "What is the year leicester was established?" }
### QUESTION What is the english title of the film before 1999 with a role of kim da-rim? ### CONTEXT CREATE TABLE table_name_80 (english_title VARCHAR, year VARCHAR, role VARCHAR) ### ANSWER SELECT english_title FROM table_name_80 WHERE year < 1999 AND role = "kim da-rim"
{ "answer": "SELECT english_title FROM table_name_80 WHERE year < 1999 AND role = \"kim da-rim\"", "context": "CREATE TABLE table_name_80 (english_title VARCHAR, year VARCHAR, role VARCHAR)", "question": "What is the english title of the film before 1999 with a role of kim da-rim?" }
### QUESTION what is the number of teams where conmebol 1996 did not qualify? ### CONTEXT CREATE TABLE table_14310205_1 (team VARCHAR, conmebol_1996 VARCHAR) ### ANSWER SELECT COUNT(team) FROM table_14310205_1 WHERE conmebol_1996 = "did not qualify"
{ "answer": "SELECT COUNT(team) FROM table_14310205_1 WHERE conmebol_1996 = \"did not qualify\"", "context": "CREATE TABLE table_14310205_1 (team VARCHAR, conmebol_1996 VARCHAR)", "question": "what is the number of teams where conmebol 1996 did not qualify?" }
### QUESTION Who has the home ground Aami stadium? ### CONTEXT CREATE TABLE table_14312471_7 (home_team VARCHAR, ground VARCHAR) ### ANSWER SELECT home_team FROM table_14312471_7 WHERE ground = "AAMI Stadium"
{ "answer": "SELECT home_team FROM table_14312471_7 WHERE ground = \"AAMI Stadium\"", "context": "CREATE TABLE table_14312471_7 (home_team VARCHAR, ground VARCHAR)", "question": "Who has the home ground Aami stadium?" }
### QUESTION What is the total Tonnage GRT with a Type of cargo ship, and a Nationality of norway? ### CONTEXT CREATE TABLE table_name_23 (tonnage_grt INTEGER, type VARCHAR, nationality VARCHAR) ### ANSWER SELECT SUM(tonnage_grt) FROM table_name_23 WHERE type = "cargo ship" AND nationality = "norway"
{ "answer": "SELECT SUM(tonnage_grt) FROM table_name_23 WHERE type = \"cargo ship\" AND nationality = \"norway\"", "context": "CREATE TABLE table_name_23 (tonnage_grt INTEGER, type VARCHAR, nationality VARCHAR)", "question": "What is the total Tonnage GRT with a Type of cargo ship, and a Nationality of norway?" }
### QUESTION Which episodes have Patrick Lau as the director and Lisa Holdsworth as the writer? ### CONTEXT CREATE TABLE table_14330096_4 (title VARCHAR, director VARCHAR, writer VARCHAR) ### ANSWER SELECT title FROM table_14330096_4 WHERE director = "Patrick Lau" AND writer = "Lisa Holdsworth"
{ "answer": "SELECT title FROM table_14330096_4 WHERE director = \"Patrick Lau\" AND writer = \"Lisa Holdsworth\"", "context": "CREATE TABLE table_14330096_4 (title VARCHAR, director VARCHAR, writer VARCHAR)", "question": "Which episodes have Patrick Lau as the director and Lisa Holdsworth as the writer?" }
### QUESTION What is the Closure date of Hunterston B ### CONTEXT CREATE TABLE table_143352_1 (accounting_closure_date INTEGER, agr_power_station VARCHAR) ### ANSWER SELECT MIN(accounting_closure_date) FROM table_143352_1 WHERE agr_power_station = "Hunterston B"
{ "answer": "SELECT MIN(accounting_closure_date) FROM table_143352_1 WHERE agr_power_station = \"Hunterston B\"", "context": "CREATE TABLE table_143352_1 (accounting_closure_date INTEGER, agr_power_station VARCHAR)", "question": "What is the Closure date of Hunterston B" }
### QUESTION How many power stations are connected to grid at Heysham 2 ### CONTEXT CREATE TABLE table_143352_1 (connected_to_grid VARCHAR, agr_power_station VARCHAR) ### ANSWER SELECT COUNT(connected_to_grid) FROM table_143352_1 WHERE agr_power_station = "Heysham 2"
{ "answer": "SELECT COUNT(connected_to_grid) FROM table_143352_1 WHERE agr_power_station = \"Heysham 2\"", "context": "CREATE TABLE table_143352_1 (connected_to_grid VARCHAR, agr_power_station VARCHAR)", "question": "How many power stations are connected to grid at Heysham 2" }
### QUESTION What is the average height for hewitt class, with prom less than 86, and a Peak of gragareth? ### CONTEXT CREATE TABLE table_name_45 (height__m_ INTEGER, peak VARCHAR, class VARCHAR, prom__m_ VARCHAR) ### ANSWER SELECT AVG(height__m_) FROM table_name_45 WHERE class = "hewitt" AND prom__m_ < 86 AND peak = "gragareth"
{ "answer": "SELECT AVG(height__m_) FROM table_name_45 WHERE class = \"hewitt\" AND prom__m_ < 86 AND peak = \"gragareth\"", "context": "CREATE TABLE table_name_45 (height__m_ INTEGER, peak VARCHAR, class VARCHAR, prom__m_ VARCHAR)", "question": "What is the average height for hewitt class, with prom less than 86, and a Peak of gragareth?" }
### QUESTION In which movie is Selva Nambi a co-singer? ### CONTEXT CREATE TABLE table_name_20 (movie VARCHAR, co_singers VARCHAR) ### ANSWER SELECT movie FROM table_name_20 WHERE co_singers = "selva nambi"
{ "answer": "SELECT movie FROM table_name_20 WHERE co_singers = \"selva nambi\"", "context": "CREATE TABLE table_name_20 (movie VARCHAR, co_singers VARCHAR)", "question": "In which movie is Selva Nambi a co-singer?" }
### QUESTION How many years was Best Musical Revival nominated? ### CONTEXT CREATE TABLE table_name_60 (year VARCHAR, nominee VARCHAR) ### ANSWER SELECT COUNT(year) FROM table_name_60 WHERE nominee = "best musical revival"
{ "answer": "SELECT COUNT(year) FROM table_name_60 WHERE nominee = \"best musical revival\"", "context": "CREATE TABLE table_name_60 (year VARCHAR, nominee VARCHAR)", "question": "How many years was Best Musical Revival nominated?" }
### QUESTION What award was Denis Lawson nominated for in the Best Actor in a Musical category? ### CONTEXT CREATE TABLE table_name_95 (award VARCHAR, category VARCHAR, nominee VARCHAR) ### ANSWER SELECT award FROM table_name_95 WHERE category = "best actor in a musical" AND nominee = "denis lawson"
{ "answer": "SELECT award FROM table_name_95 WHERE category = \"best actor in a musical\" AND nominee = \"denis lawson\"", "context": "CREATE TABLE table_name_95 (award VARCHAR, category VARCHAR, nominee VARCHAR)", "question": "What award was Denis Lawson nominated for in the Best Actor in a Musical category?" }
### QUESTION Who are the UK co-presenters that have Joe Swash as a co-presenter and Russell Kane as a comedian? ### CONTEXT CREATE TABLE table_14345690_15 (uk_co_presenter VARCHAR, co_presenter VARCHAR, comedian VARCHAR) ### ANSWER SELECT COUNT(uk_co_presenter) FROM table_14345690_15 WHERE co_presenter = "Joe Swash" AND comedian = "Russell Kane"
{ "answer": "SELECT COUNT(uk_co_presenter) FROM table_14345690_15 WHERE co_presenter = \"Joe Swash\" AND comedian = \"Russell Kane\"", "context": "CREATE TABLE table_14345690_15 (uk_co_presenter VARCHAR, co_presenter VARCHAR, comedian VARCHAR)", "question": "Who are the UK co-presenters that have Joe Swash as a co-presenter and Russell Kane as a comedian?" }
### 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 famous for where the finished is 5th? ### CONTEXT CREATE TABLE table_14345690_5 (famous_for VARCHAR, finished VARCHAR) ### ANSWER SELECT famous_for FROM table_14345690_5 WHERE finished = "5th"
{ "answer": "SELECT famous_for FROM table_14345690_5 WHERE finished = \"5th\"", "context": "CREATE TABLE table_14345690_5 (famous_for VARCHAR, finished VARCHAR)", "question": "What is the famous for where the finished is 5th?" }
### QUESTION Tell me the final position for fa community shield ### CONTEXT CREATE TABLE table_name_22 (final_position___round VARCHAR, competition VARCHAR) ### ANSWER SELECT final_position___round FROM table_name_22 WHERE competition = "fa community shield"
{ "answer": "SELECT final_position___round FROM table_name_22 WHERE competition = \"fa community shield\"", "context": "CREATE TABLE table_name_22 (final_position___round VARCHAR, competition VARCHAR)", "question": "Tell me the final position for fa community shield" }
### QUESTION Name the birth date for shirt number 7 ### CONTEXT CREATE TABLE table_14363116_1 (birth_date VARCHAR, shirt_no VARCHAR) ### ANSWER SELECT birth_date FROM table_14363116_1 WHERE shirt_no = 7
{ "answer": "SELECT birth_date FROM table_14363116_1 WHERE shirt_no = 7", "context": "CREATE TABLE table_14363116_1 (birth_date VARCHAR, shirt_no VARCHAR)", "question": "Name the birth date for shirt number 7" }
### QUESTION what is the right ascension (j2000) with the ngc number less than 3384, the constellation is hydra and the object type is spiral galaxy? ### CONTEXT CREATE TABLE table_name_58 (right_ascension___j2000__ VARCHAR, object_type VARCHAR, ngc_number VARCHAR, constellation VARCHAR) ### ANSWER SELECT right_ascension___j2000__ FROM table_name_58 WHERE ngc_number < 3384 AND constellation = "hydra" AND object_type = "spiral galaxy"
{ "answer": "SELECT right_ascension___j2000__ FROM table_name_58 WHERE ngc_number < 3384 AND constellation = \"hydra\" AND object_type = \"spiral galaxy\"", "context": "CREATE TABLE table_name_58 (right_ascension___j2000__ VARCHAR, object_type VARCHAR, ngc_number VARCHAR, constellation VARCHAR)", "question": "what is the right ascension (j2000) with the ngc number less than 3384, the constellation is hydra and the object type is spiral galaxy?" }
### QUESTION What is the club that has the turkish basketball cup and fiba eurochallenge (3rd tier)? ### CONTEXT CREATE TABLE table_name_97 (club VARCHAR, national_cup VARCHAR, european_cup VARCHAR) ### ANSWER SELECT club FROM table_name_97 WHERE national_cup = "turkish basketball cup" AND european_cup = "fiba eurochallenge (3rd tier)"
{ "answer": "SELECT club FROM table_name_97 WHERE national_cup = \"turkish basketball cup\" AND european_cup = \"fiba eurochallenge (3rd tier)\"", "context": "CREATE TABLE table_name_97 (club VARCHAR, national_cup VARCHAR, european_cup VARCHAR)", "question": "What is the club that has the turkish basketball cup and fiba eurochallenge (3rd tier)?" }
### QUESTION What is the title of the episode with the original air date of 28 September 1969? ### CONTEXT CREATE TABLE table_1439096_1 (title VARCHAR, original_air_date__atv_ VARCHAR) ### ANSWER SELECT title FROM table_1439096_1 WHERE original_air_date__atv_ = "28 September 1969"
{ "answer": "SELECT title FROM table_1439096_1 WHERE original_air_date__atv_ = \"28 September 1969\"", "context": "CREATE TABLE table_1439096_1 (title VARCHAR, original_air_date__atv_ VARCHAR)", "question": "What is the title of the episode with the original air date of 28 September 1969?" }
### QUESTION What was the length of the jumper representing FIN, in meters? ### CONTEXT CREATE TABLE table_14407512_4 (nationality VARCHAR) ### ANSWER SELECT 1 AS st__m_ FROM table_14407512_4 WHERE nationality = "FIN"
{ "answer": "SELECT 1 AS st__m_ FROM table_14407512_4 WHERE nationality = \"FIN\"", "context": "CREATE TABLE table_14407512_4 (nationality VARCHAR)", "question": "What was the length of the jumper representing FIN, in meters?" }
### QUESTION What driver has under 53 laps, a grid smaller than 14, and a time/retired of differential? ### CONTEXT CREATE TABLE table_name_28 (driver VARCHAR, time_retired VARCHAR, laps VARCHAR, grid VARCHAR) ### ANSWER SELECT driver FROM table_name_28 WHERE laps < 53 AND grid < 14 AND time_retired = "differential"
{ "answer": "SELECT driver FROM table_name_28 WHERE laps < 53 AND grid < 14 AND time_retired = \"differential\"", "context": "CREATE TABLE table_name_28 (driver VARCHAR, time_retired VARCHAR, laps VARCHAR, grid VARCHAR)", "question": "What driver has under 53 laps, a grid smaller than 14, and a time/retired of differential?" }
### QUESTION How many home team scores have a time of 4:40 PM? ### CONTEXT CREATE TABLE table_14425454_1 (home_team VARCHAR, time VARCHAR) ### ANSWER SELECT COUNT(home_team) AS score FROM table_14425454_1 WHERE time = "4:40 PM"
{ "answer": "SELECT COUNT(home_team) AS score FROM table_14425454_1 WHERE time = \"4:40 PM\"", "context": "CREATE TABLE table_14425454_1 (home_team VARCHAR, time VARCHAR)", "question": "How many home team scores have a time of 4:40 PM?" }
### QUESTION Name the year model for 4-cyl straight engine dohc 16v and 1.5 crdi ### CONTEXT CREATE TABLE table_1444201_1 (year_model VARCHAR, engine VARCHAR, model VARCHAR) ### ANSWER SELECT year_model FROM table_1444201_1 WHERE engine = "4-cyl Straight engine DOHC 16V" AND model = "1.5 CRDi"
{ "answer": "SELECT year_model FROM table_1444201_1 WHERE engine = \"4-cyl Straight engine DOHC 16V\" AND model = \"1.5 CRDi\"", "context": "CREATE TABLE table_1444201_1 (year_model VARCHAR, engine VARCHAR, model VARCHAR)", "question": "Name the year model for 4-cyl straight engine dohc 16v and 1.5 crdi" }
### QUESTION how many points did the argentinos juniors team score during the 1986-87 season? ### CONTEXT CREATE TABLE table_14489821_1 (team VARCHAR) ### ANSWER SELECT 1986 AS _87 FROM table_14489821_1 WHERE team = "Argentinos Juniors"
{ "answer": "SELECT 1986 AS _87 FROM table_14489821_1 WHERE team = \"Argentinos Juniors\"", "context": "CREATE TABLE table_14489821_1 (team VARCHAR)", "question": "how many points did the argentinos juniors team score during the 1986-87 season?" }
### QUESTION Name the mens singles when womens singles is wang lin and mixed doubles is joachim fischer nielsen christinna pedersen ### CONTEXT CREATE TABLE table_14496232_2 (mens_singles VARCHAR, womens_singles VARCHAR, mixed_doubles VARCHAR) ### ANSWER SELECT mens_singles FROM table_14496232_2 WHERE womens_singles = "Wang Lin" AND mixed_doubles = "Joachim Fischer Nielsen Christinna Pedersen"
{ "answer": "SELECT mens_singles FROM table_14496232_2 WHERE womens_singles = \"Wang Lin\" AND mixed_doubles = \"Joachim Fischer Nielsen Christinna Pedersen\"", "context": "CREATE TABLE table_14496232_2 (mens_singles VARCHAR, womens_singles VARCHAR, mixed_doubles VARCHAR)", "question": "Name the mens singles when womens singles is wang lin and mixed doubles is joachim fischer nielsen christinna pedersen" }
### QUESTION Name the mixed doubles when tour is hong kong super series ### CONTEXT CREATE TABLE table_14496232_2 (mixed_doubles VARCHAR, tour VARCHAR) ### ANSWER SELECT mixed_doubles FROM table_14496232_2 WHERE tour = "Hong Kong Super Series"
{ "answer": "SELECT mixed_doubles FROM table_14496232_2 WHERE tour = \"Hong Kong Super Series\"", "context": "CREATE TABLE table_14496232_2 (mixed_doubles VARCHAR, tour VARCHAR)", "question": "Name the mixed doubles when tour is hong kong super series" }
### QUESTION What's the earliest year that had a category of best supporting actress at the asian film awards? ### CONTEXT CREATE TABLE table_name_46 (year INTEGER, category VARCHAR, award VARCHAR) ### ANSWER SELECT MIN(year) FROM table_name_46 WHERE category = "best supporting actress" AND award = "asian film awards"
{ "answer": "SELECT MIN(year) FROM table_name_46 WHERE category = \"best supporting actress\" AND award = \"asian film awards\"", "context": "CREATE TABLE table_name_46 (year INTEGER, category VARCHAR, award VARCHAR)", "question": "What's the earliest year that had a category of best supporting actress at the asian film awards?" }
### QUESTION What is the final position/round of the UEFA cup? ### CONTEXT CREATE TABLE table_name_88 (final_position___round VARCHAR, competition VARCHAR) ### ANSWER SELECT final_position___round FROM table_name_88 WHERE competition = "uefa cup"
{ "answer": "SELECT final_position___round FROM table_name_88 WHERE competition = \"uefa cup\"", "context": "CREATE TABLE table_name_88 (final_position___round VARCHAR, competition VARCHAR)", "question": "What is the final position/round of the UEFA cup?" }
### QUESTION Who published Weird War Tales? ### CONTEXT CREATE TABLE table_name_13 (publisher VARCHAR, title VARCHAR) ### ANSWER SELECT publisher FROM table_name_13 WHERE title = "weird war tales"
{ "answer": "SELECT publisher FROM table_name_13 WHERE title = \"weird war tales\"", "context": "CREATE TABLE table_name_13 (publisher VARCHAR, title VARCHAR)", "question": "Who published Weird War Tales?" }
### QUESTION Who directed all the episodes that were written by aaron ehasz & john o'bryan? ### CONTEXT CREATE TABLE table_14562722_1 (directed_by VARCHAR, written_by VARCHAR) ### ANSWER SELECT directed_by FROM table_14562722_1 WHERE written_by = "Aaron Ehasz & John O'Bryan"
{ "answer": "SELECT directed_by FROM table_14562722_1 WHERE written_by = \"Aaron Ehasz & John O'Bryan\"", "context": "CREATE TABLE table_14562722_1 (directed_by VARCHAR, written_by VARCHAR)", "question": "Who directed all the episodes that were written by aaron ehasz & john o'bryan?" }
### QUESTION What's the region for an item on November 10, 2007 that's a cd? ### CONTEXT CREATE TABLE table_name_91 (region VARCHAR, date VARCHAR, format VARCHAR) ### ANSWER SELECT region FROM table_name_91 WHERE date = "november 10, 2007" AND format = "cd"
{ "answer": "SELECT region FROM table_name_91 WHERE date = \"november 10, 2007\" AND format = \"cd\"", "context": "CREATE TABLE table_name_91 (region VARCHAR, date VARCHAR, format VARCHAR)", "question": "What's the region for an item on November 10, 2007 that's a cd?" }
### QUESTION What was the airdate of the episode that was directed by giancarlo volpe and written by is john o'bryan? ### CONTEXT CREATE TABLE table_14562722_1 (original_air_date VARCHAR, directed_by VARCHAR, written_by VARCHAR) ### ANSWER SELECT original_air_date FROM table_14562722_1 WHERE directed_by = "Giancarlo Volpe" AND written_by = "John O'Bryan"
{ "answer": "SELECT original_air_date FROM table_14562722_1 WHERE directed_by = \"Giancarlo Volpe\" AND written_by = \"John O'Bryan\"", "context": "CREATE TABLE table_14562722_1 (original_air_date VARCHAR, directed_by VARCHAR, written_by VARCHAR)", "question": "What was the airdate of the episode that was directed by giancarlo volpe and written by is john o'bryan?" }
### QUESTION Which situation has an original u.s. airdate of December 5, 2007? ### CONTEXT CREATE TABLE table_14570857_1 (situation VARCHAR, original_us_airdate VARCHAR) ### ANSWER SELECT situation FROM table_14570857_1 WHERE original_us_airdate = "December 5, 2007"
{ "answer": "SELECT situation FROM table_14570857_1 WHERE original_us_airdate = \"December 5, 2007\"", "context": "CREATE TABLE table_14570857_1 (situation VARCHAR, original_us_airdate VARCHAR)", "question": "Which situation has an original u.s. airdate of December 5, 2007?" }
### QUESTION What's the catalog number for a December 11, 2007 record from columbia formatted in a that's from Canada? ### CONTEXT CREATE TABLE table_name_1 (catalog VARCHAR, region VARCHAR, label VARCHAR, date VARCHAR) ### ANSWER SELECT catalog FROM table_name_1 WHERE label = "columbia" AND date = "december 11, 2007" AND region = "canada"
{ "answer": "SELECT catalog FROM table_name_1 WHERE label = \"columbia\" AND date = \"december 11, 2007\" AND region = \"canada\"", "context": "CREATE TABLE table_name_1 (catalog VARCHAR, region VARCHAR, label VARCHAR, date VARCHAR)", "question": "What's the catalog number for a December 11, 2007 record from columbia formatted in a that's from Canada?" }
### QUESTION who is the constructor when the free practice driver(s) is n/a, the chassis is 005 and the driver is takuma sato? ### CONTEXT CREATE TABLE table_name_42 (constructor VARCHAR, driver VARCHAR, free_practice_driver_s_ VARCHAR, chassis VARCHAR) ### ANSWER SELECT constructor FROM table_name_42 WHERE free_practice_driver_s_ = "n/a" AND chassis = "005" AND driver = "takuma sato"
{ "answer": "SELECT constructor FROM table_name_42 WHERE free_practice_driver_s_ = \"n/a\" AND chassis = \"005\" AND driver = \"takuma sato\"", "context": "CREATE TABLE table_name_42 (constructor VARCHAR, driver VARCHAR, free_practice_driver_s_ VARCHAR, chassis VARCHAR)", "question": "who is the constructor when the free practice driver(s) is n/a, the chassis is 005 and the driver is takuma sato?" }
### QUESTION who is the constructor when the driver is juan pablo montoya? ### CONTEXT CREATE TABLE table_name_41 (constructor VARCHAR, driver VARCHAR) ### ANSWER SELECT constructor FROM table_name_41 WHERE driver = "juan pablo montoya"
{ "answer": "SELECT constructor FROM table_name_41 WHERE driver = \"juan pablo montoya\"", "context": "CREATE TABLE table_name_41 (constructor VARCHAR, driver VARCHAR)", "question": "who is the constructor when the driver is juan pablo montoya?" }
### QUESTION Name the class a for pearland ### CONTEXT CREATE TABLE table_14601528_2 (class_a VARCHAR, class_aAAAA VARCHAR, Pearland VARCHAR) ### ANSWER SELECT class_a FROM table_14601528_2 WHERE class_aAAAA = Pearland
{ "answer": "SELECT class_a FROM table_14601528_2 WHERE class_aAAAA = Pearland", "context": "CREATE TABLE table_14601528_2 (class_a VARCHAR, class_aAAAA VARCHAR, Pearland VARCHAR)", "question": "Name the class a for pearland" }
### QUESTION Name the class aaaaa for 2005-06 ### CONTEXT CREATE TABLE table_14601528_2 (class_aAAAA VARCHAR, school_year VARCHAR) ### ANSWER SELECT class_aAAAA FROM table_14601528_2 WHERE school_year = "2005-06"
{ "answer": "SELECT class_aAAAA FROM table_14601528_2 WHERE school_year = \"2005-06\"", "context": "CREATE TABLE table_14601528_2 (class_aAAAA VARCHAR, school_year VARCHAR)", "question": "Name the class aaaaa for 2005-06" }
### QUESTION Which Time/Retired entry has greater than 51 laps and driver Cristiano da Matta? ### CONTEXT CREATE TABLE table_name_79 (time_retired VARCHAR, laps VARCHAR, driver VARCHAR) ### ANSWER SELECT time_retired FROM table_name_79 WHERE laps > 51 AND driver = "cristiano da matta"
{ "answer": "SELECT time_retired FROM table_name_79 WHERE laps > 51 AND driver = \"cristiano da matta\"", "context": "CREATE TABLE table_name_79 (time_retired VARCHAR, laps VARCHAR, driver VARCHAR)", "question": "Which Time/Retired entry has greater than 51 laps and driver Cristiano da Matta?" }
### QUESTION How many ties did the Montreal Victorias have with a GA of less than 24? ### CONTEXT CREATE TABLE table_name_57 (ties INTEGER, team VARCHAR, goals_against VARCHAR) ### ANSWER SELECT MAX(ties) FROM table_name_57 WHERE team = "montreal victorias" AND goals_against < 24
{ "answer": "SELECT MAX(ties) FROM table_name_57 WHERE team = \"montreal victorias\" AND goals_against < 24", "context": "CREATE TABLE table_name_57 (ties INTEGER, team VARCHAR, goals_against VARCHAR)", "question": "How many ties did the Montreal Victorias have with a GA of less than 24?" }
### QUESTION What is the percentage of literate people where india is andaman and Nicobar Islands? ### CONTEXT CREATE TABLE table_14598_9 (literate_persons___percentage_ VARCHAR, india_state_ut VARCHAR) ### ANSWER SELECT literate_persons___percentage_ FROM table_14598_9 WHERE india_state_ut = "Andaman and Nicobar Islands"
{ "answer": "SELECT literate_persons___percentage_ FROM table_14598_9 WHERE india_state_ut = \"Andaman and Nicobar Islands\"", "context": "CREATE TABLE table_14598_9 (literate_persons___percentage_ VARCHAR, india_state_ut VARCHAR)", "question": "What is the percentage of literate people where india is andaman and Nicobar Islands?" }
### QUESTION What are all the school years where class AAAA is in Gregory-Portland? ### CONTEXT CREATE TABLE table_14603212_5 (school_year VARCHAR, class_aAAA VARCHAR, Gregory VARCHAR, Portland VARCHAR) ### ANSWER SELECT school_year FROM table_14603212_5 WHERE class_aAAA = Gregory - Portland
{ "answer": "SELECT school_year FROM table_14603212_5 WHERE class_aAAA = Gregory - Portland", "context": "CREATE TABLE table_14603212_5 (school_year VARCHAR, class_aAAA VARCHAR, Gregory VARCHAR, Portland VARCHAR)", "question": "What are all the school years where class AAAA is in Gregory-Portland? " }
### QUESTION What are all the AAA classes in the school years of 2004-05? ### CONTEXT CREATE TABLE table_14603212_5 (class_aAA VARCHAR, school_year VARCHAR) ### ANSWER SELECT class_aAA FROM table_14603212_5 WHERE school_year = "2004-05"
{ "answer": "SELECT class_aAA FROM table_14603212_5 WHERE school_year = \"2004-05\"", "context": "CREATE TABLE table_14603212_5 (class_aAA VARCHAR, school_year VARCHAR)", "question": "What are all the AAA classes in the school years of 2004-05?" }
### QUESTION What is the score of the away team who played home team Hawthorn? ### CONTEXT CREATE TABLE table_name_21 (away_team VARCHAR, home_team VARCHAR) ### ANSWER SELECT away_team AS score FROM table_name_21 WHERE home_team = "hawthorn"
{ "answer": "SELECT away_team AS score FROM table_name_21 WHERE home_team = \"hawthorn\"", "context": "CREATE TABLE table_name_21 (away_team VARCHAR, home_team VARCHAR)", "question": "What is the score of the away team who played home team Hawthorn?" }
### QUESTION How many people attended the game where Fitzroy was the away team? ### CONTEXT CREATE TABLE table_name_44 (crowd VARCHAR, away_team VARCHAR) ### ANSWER SELECT COUNT(crowd) FROM table_name_44 WHERE away_team = "fitzroy"
{ "answer": "SELECT COUNT(crowd) FROM table_name_44 WHERE away_team = \"fitzroy\"", "context": "CREATE TABLE table_name_44 (crowd VARCHAR, away_team VARCHAR)", "question": "How many people attended the game where Fitzroy was the away team?" }
### QUESTION who is the the winning driver with pole position being paul tracy and race name being miller genuine draft 200 ### CONTEXT CREATE TABLE table_14638077_2 (winning_driver VARCHAR, pole_position VARCHAR, race_name VARCHAR) ### ANSWER SELECT winning_driver FROM table_14638077_2 WHERE pole_position = "Paul Tracy" AND race_name = "Miller Genuine Draft 200"
{ "answer": "SELECT winning_driver FROM table_14638077_2 WHERE pole_position = \"Paul Tracy\" AND race_name = \"Miller Genuine Draft 200\"", "context": "CREATE TABLE table_14638077_2 (winning_driver VARCHAR, pole_position VARCHAR, race_name VARCHAR)", "question": "who is the the winning driver with pole position being paul tracy and race name being miller genuine draft 200" }
### QUESTION What was the date of the discus throw for Bulgaria? ### CONTEXT CREATE TABLE table_name_40 (date VARCHAR, nationality VARCHAR, event VARCHAR) ### ANSWER SELECT date FROM table_name_40 WHERE nationality = "bulgaria" AND event = "discus throw"
{ "answer": "SELECT date FROM table_name_40 WHERE nationality = \"bulgaria\" AND event = \"discus throw\"", "context": "CREATE TABLE table_name_40 (date VARCHAR, nationality VARCHAR, event VARCHAR)", "question": "What was the date of the discus throw for Bulgaria?" }
### QUESTION who directed with original air date being november18,1995 ### CONTEXT CREATE TABLE table_14637853_3 (directed_by VARCHAR, original_air_date VARCHAR) ### ANSWER SELECT directed_by FROM table_14637853_3 WHERE original_air_date = "November18,1995"
{ "answer": "SELECT directed_by FROM table_14637853_3 WHERE original_air_date = \"November18,1995\"", "context": "CREATE TABLE table_14637853_3 (directed_by VARCHAR, original_air_date VARCHAR)", "question": "who directed with original air date being november18,1995" }
### QUESTION What is the highest number of losses that the team incurred while scoring less than 79 points in 10 games with a point differential less than 34? ### CONTEXT CREATE TABLE table_name_69 (losses INTEGER, point_differential VARCHAR, points_for VARCHAR, games_played VARCHAR) ### ANSWER SELECT MAX(losses) FROM table_name_69 WHERE points_for < 79 AND games_played = 10 AND point_differential < 34
{ "answer": "SELECT MAX(losses) FROM table_name_69 WHERE points_for < 79 AND games_played = 10 AND point_differential < 34", "context": "CREATE TABLE table_name_69 (losses INTEGER, point_differential VARCHAR, points_for VARCHAR, games_played VARCHAR)", "question": "What is the highest number of losses that the team incurred while scoring less than 79 points in 10 games with a point differential less than 34?" }
### QUESTION Which Player has a Date of Birth (Age When Delisted) of 13 February 1987 (aged 24)? ### CONTEXT CREATE TABLE table_name_85 (player VARCHAR, date_of_birth__age_when_delisted_ VARCHAR) ### ANSWER SELECT player FROM table_name_85 WHERE date_of_birth__age_when_delisted_ = "13 february 1987 (aged 24)"
{ "answer": "SELECT player FROM table_name_85 WHERE date_of_birth__age_when_delisted_ = \"13 february 1987 (aged 24)\"", "context": "CREATE TABLE table_name_85 (player VARCHAR, date_of_birth__age_when_delisted_ VARCHAR)", "question": "Which Player has a Date of Birth (Age When Delisted) of 13 February 1987 (aged 24)?" }
### QUESTION How many colleges did pick number 269 attend? ### CONTEXT CREATE TABLE table_14650162_1 (college VARCHAR, pick__number VARCHAR) ### ANSWER SELECT COUNT(college) FROM table_14650162_1 WHERE pick__number = 269
{ "answer": "SELECT COUNT(college) FROM table_14650162_1 WHERE pick__number = 269", "context": "CREATE TABLE table_14650162_1 (college VARCHAR, pick__number VARCHAR)", "question": "How many colleges did pick number 269 attend?" }
### QUESTION What is the position of the player whose college is Western Kentucky? ### CONTEXT CREATE TABLE table_14650162_1 (position VARCHAR, college VARCHAR) ### ANSWER SELECT position FROM table_14650162_1 WHERE college = "Western Kentucky"
{ "answer": "SELECT position FROM table_14650162_1 WHERE college = \"Western Kentucky\"", "context": "CREATE TABLE table_14650162_1 (position VARCHAR, college VARCHAR)", "question": "What is the position of the player whose college is Western Kentucky?" }
### QUESTION Which treasurer has a President of sebastian ihler? ### CONTEXT CREATE TABLE table_name_74 (treasurer VARCHAR, president VARCHAR) ### ANSWER SELECT treasurer FROM table_name_74 WHERE president = "sebastian ihler"
{ "answer": "SELECT treasurer FROM table_name_74 WHERE president = \"sebastian ihler\"", "context": "CREATE TABLE table_name_74 (treasurer VARCHAR, president VARCHAR)", "question": "Which treasurer has a President of sebastian ihler?" }
### QUESTION Which college was the wide receiver whose pick was less than 130.0 picked from? ### CONTEXT CREATE TABLE table_14649522_1 (college VARCHAR, position VARCHAR, pick__number VARCHAR) ### ANSWER SELECT college FROM table_14649522_1 WHERE position = "Wide Receiver" AND pick__number < 130.0
{ "answer": "SELECT college FROM table_14649522_1 WHERE position = \"Wide Receiver\" AND pick__number < 130.0", "context": "CREATE TABLE table_14649522_1 (college VARCHAR, position VARCHAR, pick__number VARCHAR)", "question": "Which college was the wide receiver whose pick was less than 130.0 picked from?" }
### QUESTION Which tournament had a score of 7–5, 2–6, 7–6? ### CONTEXT CREATE TABLE table_name_7 (tournament VARCHAR, score VARCHAR) ### ANSWER SELECT tournament FROM table_name_7 WHERE score = "7–5, 2–6, 7–6"
{ "answer": "SELECT tournament FROM table_name_7 WHERE score = \"7–5, 2–6, 7–6\"", "context": "CREATE TABLE table_name_7 (tournament VARCHAR, score VARCHAR)", "question": "Which tournament had a score of 7–5, 2–6, 7–6?" }
### QUESTION who is the the player where pick # is 64 ### CONTEXT CREATE TABLE table_14655985_1 (player VARCHAR, pick__number VARCHAR) ### ANSWER SELECT player FROM table_14655985_1 WHERE pick__number = 64
{ "answer": "SELECT player FROM table_14655985_1 WHERE pick__number = 64", "context": "CREATE TABLE table_14655985_1 (player VARCHAR, pick__number VARCHAR)", "question": "who is the the player where pick # is 64" }
### QUESTION What was Galatasaray score when when he won in 1990 and Trabzonspor was the runner-up? ### CONTEXT CREATE TABLE table_name_24 (score VARCHAR, year VARCHAR, winners VARCHAR, runners_up VARCHAR) ### ANSWER SELECT score FROM table_name_24 WHERE winners = "galatasaray" AND runners_up = "trabzonspor" AND year = 1990
{ "answer": "SELECT score FROM table_name_24 WHERE winners = \"galatasaray\" AND runners_up = \"trabzonspor\" AND year = 1990", "context": "CREATE TABLE table_name_24 (score VARCHAR, year VARCHAR, winners VARCHAR, runners_up VARCHAR)", "question": "What was Galatasaray score when when he won in 1990 and Trabzonspor was the runner-up?" }
### QUESTION How many numbers were recorded under revenue when revenue per capita was $6,126? ### CONTEXT CREATE TABLE table_14700336_1 (revenue__millions_ VARCHAR, revenue_per_capita VARCHAR) ### ANSWER SELECT COUNT(revenue__millions_) FROM table_14700336_1 WHERE revenue_per_capita = "$6,126"
{ "answer": "SELECT COUNT(revenue__millions_) FROM table_14700336_1 WHERE revenue_per_capita = \"$6,126\"", "context": "CREATE TABLE table_14700336_1 (revenue__millions_ VARCHAR, revenue_per_capita VARCHAR)", "question": "How many numbers were recorded under revenue when revenue per capita was $6,126?" }
### QUESTION What was the spending per capita when the revenue per capita was $7,755? ### CONTEXT CREATE TABLE table_14700336_1 (spending_per_capita VARCHAR, revenue_per_capita VARCHAR) ### ANSWER SELECT spending_per_capita FROM table_14700336_1 WHERE revenue_per_capita = "$7,755"
{ "answer": "SELECT spending_per_capita FROM table_14700336_1 WHERE revenue_per_capita = \"$7,755\"", "context": "CREATE TABLE table_14700336_1 (spending_per_capita VARCHAR, revenue_per_capita VARCHAR)", "question": "What was the spending per capita when the revenue per capita was $7,755?" }
### 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 Piano di Sorrento, Napoli lowest km2 with a total smaller than 121.14 km2? ### CONTEXT CREATE TABLE table_name_26 (area__km²_ INTEGER, total__km²_ VARCHAR, province VARCHAR, comune VARCHAR) ### ANSWER SELECT MIN(area__km²_) FROM table_name_26 WHERE province = "napoli" AND comune = "piano di sorrento" AND total__km²_ < 121.14
{ "answer": "SELECT MIN(area__km²_) FROM table_name_26 WHERE province = \"napoli\" AND comune = \"piano di sorrento\" AND total__km²_ < 121.14", "context": "CREATE TABLE table_name_26 (area__km²_ INTEGER, total__km²_ VARCHAR, province VARCHAR, comune VARCHAR)", "question": "What is the Piano di Sorrento, Napoli lowest km2 with a total smaller than 121.14 km2?" }
### QUESTION Who won the points classifications in the stage where Matteo Priamo was the winner? ### CONTEXT CREATE TABLE table_14710984_2 (points_classification VARCHAR, winner VARCHAR) ### ANSWER SELECT COUNT(points_classification) FROM table_14710984_2 WHERE winner = "Matteo Priamo"
{ "answer": "SELECT COUNT(points_classification) FROM table_14710984_2 WHERE winner = \"Matteo Priamo\"", "context": "CREATE TABLE table_14710984_2 (points_classification VARCHAR, winner VARCHAR)", "question": "Who won the points classifications in the stage where Matteo Priamo was the winner?" }
### QUESTION What is the pick# for the medicine hat tigers (wchl)? ### CONTEXT CREATE TABLE table_1473672_2 (pick__number INTEGER, college_junior_club_team VARCHAR) ### ANSWER SELECT MIN(pick__number) FROM table_1473672_2 WHERE college_junior_club_team = "Medicine Hat Tigers (WCHL)"
{ "answer": "SELECT MIN(pick__number) FROM table_1473672_2 WHERE college_junior_club_team = \"Medicine Hat Tigers (WCHL)\"", "context": "CREATE TABLE table_1473672_2 (pick__number INTEGER, college_junior_club_team VARCHAR)", "question": "What is the pick# for the medicine hat tigers (wchl)?" }
### QUESTION I want the sum of NGC number for spiral galaxy and right acension of 08h14m40.4s ### CONTEXT CREATE TABLE table_name_31 (ngc_number INTEGER, object_type VARCHAR, right_ascension___j2000__ VARCHAR) ### ANSWER SELECT SUM(ngc_number) FROM table_name_31 WHERE object_type = "spiral galaxy" AND right_ascension___j2000__ = "08h14m40.4s"
{ "answer": "SELECT SUM(ngc_number) FROM table_name_31 WHERE object_type = \"spiral galaxy\" AND right_ascension___j2000__ = \"08h14m40.4s\"", "context": "CREATE TABLE table_name_31 (ngc_number INTEGER, object_type VARCHAR, right_ascension___j2000__ VARCHAR)", "question": "I want the sum of NGC number for spiral galaxy and right acension of 08h14m40.4s" }
### QUESTION Tell me the right ascension for open cluster and NGC number more than 2547 ### CONTEXT CREATE TABLE table_name_59 (right_ascension___j2000__ VARCHAR, object_type VARCHAR, ngc_number VARCHAR) ### ANSWER SELECT right_ascension___j2000__ FROM table_name_59 WHERE object_type = "open cluster" AND ngc_number > 2547
{ "answer": "SELECT right_ascension___j2000__ FROM table_name_59 WHERE object_type = \"open cluster\" AND ngc_number > 2547", "context": "CREATE TABLE table_name_59 (right_ascension___j2000__ VARCHAR, object_type VARCHAR, ngc_number VARCHAR)", "question": "Tell me the right ascension for open cluster and NGC number more than 2547" }
### QUESTION Which nationality is the player from the Philadelphia Flyers? ### CONTEXT CREATE TABLE table_1473672_3 (nationality VARCHAR, nhl_team VARCHAR) ### ANSWER SELECT nationality FROM table_1473672_3 WHERE nhl_team = "Philadelphia Flyers"
{ "answer": "SELECT nationality FROM table_1473672_3 WHERE nhl_team = \"Philadelphia Flyers\"", "context": "CREATE TABLE table_1473672_3 (nationality VARCHAR, nhl_team VARCHAR)", "question": "Which nationality is the player from the Philadelphia Flyers?" }
### QUESTION Which Venue has an Away team of south melbourne? ### CONTEXT CREATE TABLE table_name_89 (venue VARCHAR, away_team VARCHAR) ### ANSWER SELECT venue FROM table_name_89 WHERE away_team = "south melbourne"
{ "answer": "SELECT venue FROM table_name_89 WHERE away_team = \"south melbourne\"", "context": "CREATE TABLE table_name_89 (venue VARCHAR, away_team VARCHAR)", "question": "Which Venue has an Away team of south melbourne?" }
### QUESTION What Home team plays at the princes park Venue? ### CONTEXT CREATE TABLE table_name_29 (home_team VARCHAR, venue VARCHAR) ### ANSWER SELECT home_team FROM table_name_29 WHERE venue = "princes park"
{ "answer": "SELECT home_team FROM table_name_29 WHERE venue = \"princes park\"", "context": "CREATE TABLE table_name_29 (home_team VARCHAR, venue VARCHAR)", "question": "What Home team plays at the princes park Venue?" }
### QUESTION What date did Sigurd Rushfeldt score less than 2 points in the UEFA Euro 2004 qualifying competition? ### CONTEXT CREATE TABLE table_name_24 (date VARCHAR, scored VARCHAR, competition VARCHAR) ### ANSWER SELECT date FROM table_name_24 WHERE scored < 2 AND competition = "uefa euro 2004 qualifying"
{ "answer": "SELECT date FROM table_name_24 WHERE scored < 2 AND competition = \"uefa euro 2004 qualifying\"", "context": "CREATE TABLE table_name_24 (date VARCHAR, scored VARCHAR, competition VARCHAR)", "question": "What date did Sigurd Rushfeldt score less than 2 points in the UEFA Euro 2004 qualifying competition?" }
### QUESTION What is the tournament on February 17, 2002? ### CONTEXT CREATE TABLE table_name_21 (tournament VARCHAR, date VARCHAR) ### ANSWER SELECT tournament FROM table_name_21 WHERE date = "february 17, 2002"
{ "answer": "SELECT tournament FROM table_name_21 WHERE date = \"february 17, 2002\"", "context": "CREATE TABLE table_name_21 (tournament VARCHAR, date VARCHAR)", "question": "What is the tournament on February 17, 2002?" }
### QUESTION What are the changes (2010 to 2011) where the International Tourist Arrivals is 1.7 million? ### CONTEXT CREATE TABLE table_14752049_2 (change__2010_to_2011_ VARCHAR, international_tourist_arrivals__2011_ VARCHAR) ### ANSWER SELECT change__2010_to_2011_ FROM table_14752049_2 WHERE international_tourist_arrivals__2011_ = "1.7 million"
{ "answer": "SELECT change__2010_to_2011_ FROM table_14752049_2 WHERE international_tourist_arrivals__2011_ = \"1.7 million\"", "context": "CREATE TABLE table_14752049_2 (change__2010_to_2011_ VARCHAR, international_tourist_arrivals__2011_ VARCHAR)", "question": "What are the changes (2010 to 2011) where the International Tourist Arrivals is 1.7 million?" }
### QUESTION What are the International tourist arrivals (2010) where change from 2010 to 2011 is +15% ### CONTEXT CREATE TABLE table_14752049_2 (international_tourist_arrivals__2010_ VARCHAR, change__2010_to_2011_ VARCHAR) ### ANSWER SELECT international_tourist_arrivals__2010_ FROM table_14752049_2 WHERE change__2010_to_2011_ = "+15%"
{ "answer": "SELECT international_tourist_arrivals__2010_ FROM table_14752049_2 WHERE change__2010_to_2011_ = \"+15%\"", "context": "CREATE TABLE table_14752049_2 (international_tourist_arrivals__2010_ VARCHAR, change__2010_to_2011_ VARCHAR)", "question": "What are the International tourist arrivals (2010) where change from 2010 to 2011 is +15%" }
### QUESTION How many international tourist arrivals were in Senegal in 2011? ### CONTEXT CREATE TABLE table_14752049_2 (international_tourist_arrivals__2011_ VARCHAR, country VARCHAR) ### ANSWER SELECT international_tourist_arrivals__2011_ FROM table_14752049_2 WHERE country = "Senegal"
{ "answer": "SELECT international_tourist_arrivals__2011_ FROM table_14752049_2 WHERE country = \"Senegal\"", "context": "CREATE TABLE table_14752049_2 (international_tourist_arrivals__2011_ VARCHAR, country VARCHAR)", "question": "How many international tourist arrivals were in Senegal in 2011?" }
### QUESTION What's the name of the team that went 113.316mph? ### CONTEXT CREATE TABLE table_name_18 (team VARCHAR, speed VARCHAR) ### ANSWER SELECT team FROM table_name_18 WHERE speed = "113.316mph"
{ "answer": "SELECT team FROM table_name_18 WHERE speed = \"113.316mph\"", "context": "CREATE TABLE table_name_18 (team VARCHAR, speed VARCHAR)", "question": "What's the name of the team that went 113.316mph?" }
### QUESTION For boozer (13) what is the high assists and high rebounds? ### CONTEXT CREATE TABLE table_name_41 (high_assists VARCHAR, high_rebounds VARCHAR) ### ANSWER SELECT high_assists FROM table_name_41 WHERE high_rebounds = "boozer (13)"
{ "answer": "SELECT high_assists FROM table_name_41 WHERE high_rebounds = \"boozer (13)\"", "context": "CREATE TABLE table_name_41 (high_assists VARCHAR, high_rebounds VARCHAR)", "question": "For boozer (13) what is the high assists and high rebounds?" }
### QUESTION What is the enrollment amount where Hispanic (%) is 3.6? ### CONTEXT CREATE TABLE table_14754471_1 (enrollment VARCHAR, hispanic___percentage_ VARCHAR) ### ANSWER SELECT enrollment FROM table_14754471_1 WHERE hispanic___percentage_ = "3.6"
{ "answer": "SELECT enrollment FROM table_14754471_1 WHERE hispanic___percentage_ = \"3.6\"", "context": "CREATE TABLE table_14754471_1 (enrollment VARCHAR, hispanic___percentage_ VARCHAR)", "question": "What is the enrollment amount where Hispanic (%) is 3.6?" }
### QUESTION Which club is associated with Hafiz Abu Sujad? ### CONTEXT CREATE TABLE table_name_80 (club VARCHAR, name VARCHAR) ### ANSWER SELECT club FROM table_name_80 WHERE name = "hafiz abu sujad"
{ "answer": "SELECT club FROM table_name_80 WHERE name = \"hafiz abu sujad\"", "context": "CREATE TABLE table_name_80 (club VARCHAR, name VARCHAR)", "question": "Which club is associated with Hafiz Abu Sujad?" }
### QUESTION What is the total of Bronze with a total smaller than 3, and a nation of Poland, and a rank larger than 4? ### CONTEXT CREATE TABLE table_name_52 (bronze VARCHAR, rank VARCHAR, total VARCHAR, nation VARCHAR) ### ANSWER SELECT COUNT(bronze) FROM table_name_52 WHERE total < 3 AND nation = "poland" AND rank > 4
{ "answer": "SELECT COUNT(bronze) FROM table_name_52 WHERE total < 3 AND nation = \"poland\" AND rank > 4", "context": "CREATE TABLE table_name_52 (bronze VARCHAR, rank VARCHAR, total VARCHAR, nation VARCHAR)", "question": "What is the total of Bronze with a total smaller than 3, and a nation of Poland, and a rank larger than 4?" }
### QUESTION When the driver peter gethin has a grid less than 25, what is the average number of laps? ### CONTEXT CREATE TABLE table_name_4 (laps INTEGER, driver VARCHAR, grid VARCHAR) ### ANSWER SELECT AVG(laps) FROM table_name_4 WHERE driver = "peter gethin" AND grid < 25
{ "answer": "SELECT AVG(laps) FROM table_name_4 WHERE driver = \"peter gethin\" AND grid < 25", "context": "CREATE TABLE table_name_4 (laps INTEGER, driver VARCHAR, grid VARCHAR)", "question": "When the driver peter gethin has a grid less than 25, what is the average number of laps?" }
### QUESTION What's the authority when the roll is less than 234 for the massey east area? ### CONTEXT CREATE TABLE table_name_79 (authority VARCHAR, roll VARCHAR, area VARCHAR) ### ANSWER SELECT authority FROM table_name_79 WHERE roll < 234 AND area = "massey east"
{ "answer": "SELECT authority FROM table_name_79 WHERE roll < 234 AND area = \"massey east\"", "context": "CREATE TABLE table_name_79 (authority VARCHAR, roll VARCHAR, area VARCHAR)", "question": "What's the authority when the roll is less than 234 for the massey east area?" }
### QUESTION How many total earnings are recorded when her best finish is t2 with a 71.25 scoring average? ### CONTEXT CREATE TABLE table_14853156_2 (earnings___ VARCHAR, best_finish VARCHAR, scoring_average VARCHAR) ### ANSWER SELECT COUNT(earnings___) AS $__ FROM table_14853156_2 WHERE best_finish = "T2" AND scoring_average = "71.25"
{ "answer": "SELECT COUNT(earnings___) AS $__ FROM table_14853156_2 WHERE best_finish = \"T2\" AND scoring_average = \"71.25\"", "context": "CREATE TABLE table_14853156_2 (earnings___ VARCHAR, best_finish VARCHAR, scoring_average VARCHAR)", "question": "How many total earnings are recorded when her best finish is t2 with a 71.25 scoring average?" }
### QUESTION Name the points classification for mark renshaw and team csc ### CONTEXT CREATE TABLE table_14856023_18 (points_classification VARCHAR, general_classification VARCHAR, team_classification VARCHAR) ### ANSWER SELECT points_classification FROM table_14856023_18 WHERE general_classification = "Mark Renshaw" AND team_classification = "Team CSC"
{ "answer": "SELECT points_classification FROM table_14856023_18 WHERE general_classification = \"Mark Renshaw\" AND team_classification = \"Team CSC\"", "context": "CREATE TABLE table_14856023_18 (points_classification VARCHAR, general_classification VARCHAR, team_classification VARCHAR)", "question": "Name the points classification for mark renshaw and team csc" }
### QUESTION What is the lowest Silver in the Total Sport has less than 1 Gold and more than 1 Bronze? ### CONTEXT CREATE TABLE table_name_77 (silver INTEGER, gold VARCHAR, bronze VARCHAR, sport VARCHAR) ### ANSWER SELECT MIN(silver) FROM table_name_77 WHERE bronze > 1 AND sport = "total" AND gold < 1
{ "answer": "SELECT MIN(silver) FROM table_name_77 WHERE bronze > 1 AND sport = \"total\" AND gold < 1", "context": "CREATE TABLE table_name_77 (silver INTEGER, gold VARCHAR, bronze VARCHAR, sport VARCHAR)", "question": "What is the lowest Silver in the Total Sport has less than 1 Gold and more than 1 Bronze?" }
### QUESTION What is the score of the game with an 11-32-11 record? ### CONTEXT CREATE TABLE table_name_40 (score VARCHAR, record VARCHAR) ### ANSWER SELECT score FROM table_name_40 WHERE record = "11-32-11"
{ "answer": "SELECT score FROM table_name_40 WHERE record = \"11-32-11\"", "context": "CREATE TABLE table_name_40 (score VARCHAR, record VARCHAR)", "question": "What is the score of the game with an 11-32-11 record?" }
### QUESTION What is the time or retired time for timo glock with under 70 laps and a grid number greater than 15? ### CONTEXT CREATE TABLE table_name_72 (time_retired VARCHAR, driver VARCHAR, laps VARCHAR, grid VARCHAR) ### ANSWER SELECT time_retired FROM table_name_72 WHERE laps < 70 AND grid > 15 AND driver = "timo glock"
{ "answer": "SELECT time_retired FROM table_name_72 WHERE laps < 70 AND grid > 15 AND driver = \"timo glock\"", "context": "CREATE TABLE table_name_72 (time_retired VARCHAR, driver VARCHAR, laps VARCHAR, grid VARCHAR)", "question": "What is the time or retired time for timo glock with under 70 laps and a grid number greater than 15?" }
### 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 are the records when Elzbieta Urbanczik competed? ### CONTEXT CREATE TABLE table_14884844_2 (record VARCHAR, athletes VARCHAR) ### ANSWER SELECT record FROM table_14884844_2 WHERE athletes = "Elzbieta Urbanczik"
{ "answer": "SELECT record FROM table_14884844_2 WHERE athletes = \"Elzbieta Urbanczik\"", "context": "CREATE TABLE table_14884844_2 (record VARCHAR, athletes VARCHAR)", "question": "What are the records when Elzbieta Urbanczik competed?" }
### QUESTION When was the 1991 world group I with the opponent of Li Fang? ### CONTEXT CREATE TABLE table_name_2 (date VARCHAR, edition VARCHAR, opponent VARCHAR) ### ANSWER SELECT date FROM table_name_2 WHERE edition = "1991 world group i" AND opponent = "li fang"
{ "answer": "SELECT date FROM table_name_2 WHERE edition = \"1991 world group i\" AND opponent = \"li fang\"", "context": "CREATE TABLE table_name_2 (date VARCHAR, edition VARCHAR, opponent VARCHAR)", "question": "When was the 1991 world group I with the opponent of Li Fang?" }
### QUESTION Name the number of years for womens doubles being diana koleva emilia dimitrova and jeliazko valkov ### CONTEXT CREATE TABLE table_14903491_1 (year VARCHAR, womens_doubles VARCHAR, mens_singles VARCHAR) ### ANSWER SELECT COUNT(year) FROM table_14903491_1 WHERE womens_doubles = "Diana Koleva Emilia Dimitrova" AND mens_singles = "Jeliazko Valkov"
{ "answer": "SELECT COUNT(year) FROM table_14903491_1 WHERE womens_doubles = \"Diana Koleva Emilia Dimitrova\" AND mens_singles = \"Jeliazko Valkov\"", "context": "CREATE TABLE table_14903491_1 (year VARCHAR, womens_doubles VARCHAR, mens_singles VARCHAR)", "question": "Name the number of years for womens doubles being diana koleva emilia dimitrova and jeliazko valkov" }
### QUESTION Name the year for womens doubles being raina tzvetkova emilia dimitrova ### CONTEXT CREATE TABLE table_14903491_1 (year VARCHAR, womens_doubles VARCHAR) ### ANSWER SELECT year FROM table_14903491_1 WHERE womens_doubles = "Raina Tzvetkova Emilia Dimitrova"
{ "answer": "SELECT year FROM table_14903491_1 WHERE womens_doubles = \"Raina Tzvetkova Emilia Dimitrova\"", "context": "CREATE TABLE table_14903491_1 (year VARCHAR, womens_doubles VARCHAR)", "question": "Name the year for womens doubles being raina tzvetkova emilia dimitrova" }