combined_text stringlengths 106 1.05k |
|---|
###question:When was the dvd release directed by Billy O'Brien?###answer:SELECT dvd_release FROM table_19982699_1 WHERE director = "Billy O'Brien"###context:CREATE TABLE table_19982699_1 (dvd_release VARCHAR, director VARCHAR) |
###question:What was the record after game 20?###answer:SELECT record FROM table_20010140_9 WHERE game = 20###context:CREATE TABLE table_20010140_9 (record VARCHAR, game VARCHAR) |
###question:For the game against Iowa, who had the most assists?###answer:SELECT high_assists FROM table_20010140_9 WHERE team = "Iowa"###context:CREATE TABLE table_20010140_9 (high_assists VARCHAR, team VARCHAR) |
###question:state high assists on february 15###answer:SELECT high_assists FROM table_20010140_10 WHERE date = "February 15"###context:CREATE TABLE table_20010140_10 (high_assists VARCHAR, date VARCHAR) |
###question:how many high points where date is february 19###answer:SELECT COUNT(high_points) FROM table_20010140_10 WHERE date = "February 19"###context:CREATE TABLE table_20010140_10 (high_points VARCHAR, date VARCHAR) |
###question:state the number of location attendance where record is 15–10 (5–7)###answer:SELECT COUNT(location_attendance) FROM table_20010140_10 WHERE record = "15–10 (5–7)"###context:CREATE TABLE table_20010140_10 (location_attendance VARCHAR, record VARCHAR) |
###question:how many dates where high assists is stu douglass (5) – 4###answer:SELECT COUNT(date) FROM table_20010140_10 WHERE high_assists = "Stu Douglass (5) – 4"###context:CREATE TABLE table_20010140_10 (date VARCHAR, high_assists VARCHAR) |
###question:how many records were made on february 22###answer:SELECT COUNT(record) FROM table_20010140_10 WHERE date = "February 22"###context:CREATE TABLE table_20010140_10 (record VARCHAR, date VARCHAR) |
###question:Name the most applications for 1986###answer:SELECT MAX(applications) FROM table_20007413_3 WHERE year = "1986"###context:CREATE TABLE table_20007413_3 (applications INTEGER, year VARCHAR) |
###question:Name the torque for 1986###answer:SELECT torque FROM table_20007413_3 WHERE year = "1986"###context:CREATE TABLE table_20007413_3 (torque VARCHAR, year VARCHAR) |
###question:What network showed the season with Australia as the destination?###answer:SELECT network FROM table_20026849_1 WHERE destination = "Australia"###context:CREATE TABLE table_20026849_1 (network VARCHAR, destination VARCHAR) |
###question:What was the latest season with 20 contestants?###answer:SELECT MAX(season) FROM table_20026849_1 WHERE contestants = 20###context:CREATE TABLE table_20026849_1 (season INTEGER, contestants VARCHAR) |
###question:What season was won by Ashutosh Kaushik?###answer:SELECT MIN(season) FROM table_20026849_1 WHERE winner = "Ashutosh Kaushik"###context:CREATE TABLE table_20026849_1 (season INTEGER, winner VARCHAR) |
###question:What was the destination of the season won by Anwar Syed?###answer:SELECT destination FROM table_20026849_1 WHERE winner = "Anwar Syed"###context:CREATE TABLE table_20026849_1 (destination VARCHAR, winner VARCHAR) |
###question:What season was won by Anthony Yeh?###answer:SELECT season FROM table_20026849_1 WHERE winner = "Anthony Yeh"###context:CREATE TABLE table_20026849_1 (season VARCHAR, winner VARCHAR) |
###question:Who won the season with Africa as its destination?###answer:SELECT winner FROM table_20026849_1 WHERE destination = "Africa"###context:CREATE TABLE table_20026849_1 (winner VARCHAR, destination VARCHAR) |
###question:What is the African Spoonbill when the Hadeda Ibis is the Brown Snake Eagle?###answer:SELECT african_spoonbill FROM table_20042805_2 WHERE hadeda_ibis = "Brown Snake Eagle"###context:CREATE TABLE table_20042805_2 (african_spoonbill VARCHAR, hadeda_ibis VARCHAR) |
###question:What is the Hadeda Ibis when the Ostrich is Dark Chanting Goshawk?###answer:SELECT hadeda_ibis FROM table_20042805_2 WHERE ostrich = "Dark Chanting Goshawk"###context:CREATE TABLE table_20042805_2 (hadeda_ibis VARCHAR, ostrich VARCHAR) |
###question:What is the African Spoonbill when the Hadeda Ibis is Flernecked Nightjar?###answer:SELECT african_spoonbill FROM table_20042805_2 WHERE hadeda_ibis = "Flernecked Nightjar"###context:CREATE TABLE table_20042805_2 (african_spoonbill VARCHAR, hadeda_ibis VARCHAR) |
###question:What is the Hadeda Ibis when the Knobbilled Duck is Pied Crow?###answer:SELECT hadeda_ibis FROM table_20042805_2 WHERE knobbilled_duck = "Pied Crow"###context:CREATE TABLE table_20042805_2 (hadeda_ibis VARCHAR, knobbilled_duck VARCHAR) |
###question:What is the African Spoonbill when the Ostrich is Brown-hooded Kingfisher?###answer:SELECT african_spoonbill FROM table_20042805_2 WHERE ostrich = "Brown-hooded Kingfisher"###context:CREATE TABLE table_20042805_2 (african_spoonbill VARCHAR, ostrich VARCHAR) |
###question:What is the Hadeda Ibis when the Whitefaced Duck is Blacksmith Plover?###answer:SELECT hadeda_ibis FROM table_20042805_2 WHERE whitefaced_duck = "Blacksmith Plover"###context:CREATE TABLE table_20042805_2 (hadeda_ibis VARCHAR, whitefaced_duck VARCHAR) |
###question:Name the winning pilot for hungary###answer:SELECT winning_pilot FROM table_20036882_2 WHERE country = "Hungary"###context:CREATE TABLE table_20036882_2 (winning_pilot VARCHAR, country VARCHAR) |
###question:Name the most round for michael goulian###answer:SELECT MAX(round) FROM table_20036882_2 WHERE winning_pilot = "Michael Goulian"###context:CREATE TABLE table_20036882_2 (round INTEGER, winning_pilot VARCHAR) |
###question:Name the country for hannes arch###answer:SELECT country FROM table_20036882_2 WHERE winning_pilot = "Hannes Arch"###context:CREATE TABLE table_20036882_2 (country VARCHAR, winning_pilot VARCHAR) |
###question:Who wrote the episode with series number 45?###answer:SELECT written_by FROM table_20046379_3 WHERE no_in_series = "45"###context:CREATE TABLE table_20046379_3 (written_by VARCHAR, no_in_series VARCHAR) |
###question:How many millions of people in the US saw the episode with production code 214?###answer:SELECT us_viewers__millions_ FROM table_20046379_3 WHERE production_code = "214"###context:CREATE TABLE table_20046379_3 (us_viewers__millions_ VARCHAR, production_code VARCHAR) |
###question:What's the title of the episode seen by 3.8 million people in the US?###answer:SELECT title FROM table_20046379_3 WHERE us_viewers__millions_ = "3.8"###context:CREATE TABLE table_20046379_3 (title VARCHAR, us_viewers__millions_ VARCHAR) |
###question:On how many different dates did the episode with series number 35 air for the first time?###answer:SELECT COUNT(original_air_date) FROM table_20046379_3 WHERE no_in_series = "35"###context:CREATE TABLE table_20046379_3 (original_air_date VARCHAR, no_in_series VARCHAR) |
###question:Name the date for value 55c###answer:SELECT date FROM table_2006661_1 WHERE value = "55c"###context:CREATE TABLE table_2006661_1 (date VARCHAR, value VARCHAR) |
###question:Name the scott for chloropsis hardwickii###answer:SELECT scott FROM table_2006661_1 WHERE species = "Chloropsis hardwickii"###context:CREATE TABLE table_2006661_1 (scott VARCHAR, species VARCHAR) |
###question:How many people lived in bulac in the year 2000?###answer:SELECT MAX(population__2000_) FROM table_2004733_2 WHERE barangay = "Bulac"###context:CREATE TABLE table_2004733_2 (population__2000_ INTEGER, barangay VARCHAR) |
###question:In 2010, how many people lived in cities with a population density of 3,965.02?###answer:SELECT population__2010_ FROM table_2004733_2 WHERE population_density__2010_ = "3,965.02"###context:CREATE TABLE table_2004733_2 (population__2010_ VARCHAR, population_density__2010_ VARCHAR) |
###question:What's the name of the barangay whose area is 3.6787 km² ?###answer:SELECT barangay FROM table_2004733_2 WHERE area__in_km_2__ = "3.6787"###context:CREATE TABLE table_2004733_2 (barangay VARCHAR, area__in_km_2__ VARCHAR) |
###question:How many people lived in the city which has 1.2530 km² in the year 2000?###answer:SELECT MAX(population__2000_) FROM table_2004733_2 WHERE area__in_km_2__ = "1.2530"###context:CREATE TABLE table_2004733_2 (population__2000_ INTEGER, area__in_km_2__ VARCHAR) |
###question:How many people lived in san gabriel in the year 2000?###answer:SELECT COUNT(population__2000_) FROM table_2004733_2 WHERE barangay = "San Gabriel"###context:CREATE TABLE table_2004733_2 (population__2000_ VARCHAR, barangay VARCHAR) |
###question:How many different titles does the representative whose mission was terminated on August 5, 1984 have?###answer:SELECT COUNT(title) FROM table_20065425_1 WHERE termination_of_mission = "August 5, 1984"###context:CREATE TABLE table_20065425_1 (title VARCHAR, termination_of_mission VARCHAR) |
###question:What state does the representative whose mission was terminated on November 29, 1973 represent?###answer:SELECT state FROM table_20065425_1 WHERE termination_of_mission = "November 29, 1973"###context:CREATE TABLE table_20065425_1 (state VARCHAR, termination_of_mission VARCHAR) |
###question:Who trained the representative whose presentation of credentials happened on February 24, 1950?###answer:SELECT training FROM table_20065425_1 WHERE presentation_of_credentials = "February 24, 1950"###context:CREATE TABLE table_20065425_1 (training VARCHAR, presentation_of_credentials VARCHAR) |
###question:When was the film Här har du ditt liv used in nomination?###answer:SELECT year__ceremony_ FROM table_20061872_1 WHERE original_title = "Här har du ditt liv"###context:CREATE TABLE table_20061872_1 (year__ceremony_ VARCHAR, original_title VARCHAR) |
###question:What's the original title of the film Zozo?###answer:SELECT original_title FROM table_20061872_1 WHERE film_title_used_in_nomination = "Zozo"###context:CREATE TABLE table_20061872_1 (original_title VARCHAR, film_title_used_in_nomination VARCHAR) |
###question:What's the original title of The New Land?###answer:SELECT original_title FROM table_20061872_1 WHERE film_title_used_in_nomination = "The New Land"###context:CREATE TABLE table_20061872_1 (original_title VARCHAR, film_title_used_in_nomination VARCHAR) |
###question:Name the championship for winner and judy tegart dalton lesley turner bowrey###answer:SELECT COUNT(championship) FROM table_2009095_2 WHERE outcome = "Winner" AND opponents = "Judy Tegart Dalton Lesley Turner Bowrey"###context:CREATE TABLE table_2009095_2 (championship VARCHAR, outcome VARCHAR, opponents VA... |
###question:Name the outcome for wimbledon###answer:SELECT outcome FROM table_2009095_2 WHERE championship = "Wimbledon"###context:CREATE TABLE table_2009095_2 (outcome VARCHAR, championship VARCHAR) |
###question:Name the opponets for 6–4, 3–6, 6–2###answer:SELECT opponents FROM table_2009095_2 WHERE score = "6–4, 3–6, 6–2"###context:CREATE TABLE table_2009095_2 (opponents VARCHAR, score VARCHAR) |
###question:Name the least year for evonne goolagong helen gourlay###answer:SELECT MIN(year) FROM table_2009095_2 WHERE opponents = "Evonne Goolagong Helen Gourlay"###context:CREATE TABLE table_2009095_2 (year INTEGER, opponents VARCHAR) |
###question:Name the surface for australian open for winner###answer:SELECT surface FROM table_2009095_2 WHERE championship = "Australian Open" AND outcome = "Winner"###context:CREATE TABLE table_2009095_2 (surface VARCHAR, championship VARCHAR, outcome VARCHAR) |
###question:What's the highest scoring team in the round in Ring Knutstorp in which Polestar Racing is the winning team?###answer:SELECT highest_scoring_team FROM table_20079931_4 WHERE circuit_location = "Ring Knutstorp" AND winning_team = "Polestar Racing"###context:CREATE TABLE table_20079931_4 (highest_scoring_team... |
###question:How many rounds were there in Karlskoga Motorstadion with Roger Eriksson at the pole position?###answer:SELECT COUNT(round) FROM table_20079931_4 WHERE circuit_location = "Karlskoga Motorstadion" AND pole_position = "Roger Eriksson"###context:CREATE TABLE table_20079931_4 (round VARCHAR, circuit_location VA... |
###question:What was the first leg result in the round against Norchi Dinamoeli?###answer:SELECT first_leg FROM table_20086138_1 WHERE opposition = "Norchi Dinamoeli"###context:CREATE TABLE table_20086138_1 (first_leg VARCHAR, opposition VARCHAR) |
###question:which vehicles got best time of day 1:17.17###answer:SELECT vehicle FROM table_20090682_4 WHERE best_time_of_day = "1:17.17"###context:CREATE TABLE table_20090682_4 (vehicle VARCHAR, best_time_of_day VARCHAR) |
###question:how many drivers driving toyota corolla###answer:SELECT COUNT(driver) FROM table_20090682_4 WHERE vehicle = "Toyota Corolla"###context:CREATE TABLE table_20090682_4 (driver VARCHAR, vehicle VARCHAR) |
###question:what is the lowest position of brendan sole###answer:SELECT MAX(pos) FROM table_20090682_4 WHERE driver = "Brendan Sole"###context:CREATE TABLE table_20090682_4 (pos INTEGER, driver VARCHAR) |
###question:how many vehicles where top 13 time is 1:18.72###answer:SELECT COUNT(vehicle) FROM table_20090682_4 WHERE top_13_time = "1:18.72"###context:CREATE TABLE table_20090682_4 (vehicle VARCHAR, top_13_time VARCHAR) |
###question:which driver got best time of day 1:16.93###answer:SELECT driver FROM table_20090682_4 WHERE best_time_of_day = "1:16.93"###context:CREATE TABLE table_20090682_4 (driver VARCHAR, best_time_of_day VARCHAR) |
###question:What is the amount of assists when mins is 744:27?###answer:SELECT assists FROM table_20107762_1 WHERE mins = "744:27"###context:CREATE TABLE table_20107762_1 (assists VARCHAR, mins VARCHAR) |
###question:What is the game number with 385:33 mins?###answer:SELECT MIN(games) FROM table_20107762_1 WHERE mins = "385:33"###context:CREATE TABLE table_20107762_1 (games INTEGER, mins VARCHAR) |
###question:What is the points number when rebounds is 4.4?###answer:SELECT points FROM table_20107762_1 WHERE rebounds = "4.4"###context:CREATE TABLE table_20107762_1 (points VARCHAR, rebounds VARCHAR) |
###question:Who is the team with the ft% of 77.6?###answer:SELECT team FROM table_20107762_1 WHERE ft_percentage = "77.6"###context:CREATE TABLE table_20107762_1 (team VARCHAR, ft_percentage VARCHAR) |
###question:When did Austin Austin TX get the third place?###answer:SELECT year FROM table_2011349_2 WHERE third_place = "Austin Austin TX"###context:CREATE TABLE table_2011349_2 (year VARCHAR, third_place VARCHAR) |
###question:Who has a religion of United Methodist and a prior background of a Congressional Aide?###answer:SELECT representative FROM table_20098199_2 WHERE religion = "United Methodist" AND prior_background = "Congressional aide"###context:CREATE TABLE table_20098199_2 (representative VARCHAR, religion VARCHAR, prior... |
###question:What horse has the number 25?###answer:SELECT name FROM table_20095300_1 WHERE number = 25###context:CREATE TABLE table_20095300_1 (name VARCHAR, number VARCHAR) |
###question:How much does Point Barrow weight?###answer:SELECT weight__st, _lb_ FROM table_20095300_1 WHERE name = "Point Barrow"###context:CREATE TABLE table_20095300_1 (weight__st VARCHAR, _lb_ VARCHAR, name VARCHAR) |
###question:What are Andrew McNamara's colors?###answer:SELECT colours FROM table_20095300_1 WHERE jockey = "Andrew McNamara"###context:CREATE TABLE table_20095300_1 (colours VARCHAR, jockey VARCHAR) |
###question:What's the number of the horse whose trainer is Kim Bailey?###answer:SELECT MAX(number) FROM table_20095300_1 WHERE trainer = "Kim Bailey"###context:CREATE TABLE table_20095300_1 (number INTEGER, trainer VARCHAR) |
###question:Who wrote episode number 48###answer:SELECT written_by FROM table_20098479_1 WHERE no_in_series = 48###context:CREATE TABLE table_20098479_1 (written_by VARCHAR, no_in_series VARCHAR) |
###question:What is the lowest production code###answer:SELECT MIN(production_code) FROM table_20098479_1###context:CREATE TABLE table_20098479_1 (production_code INTEGER) |
###question:What was the original title of 3.19?###answer:SELECT original_title FROM table_20124413_3 WHERE production_code = "3.19"###context:CREATE TABLE table_20124413_3 (original_title VARCHAR, production_code VARCHAR) |
###question:How many numbers have the product code of 2.6?###answer:SELECT _number FROM table_20124413_2 WHERE prod_code = "2.6"###context:CREATE TABLE table_20124413_2 (_number VARCHAR, prod_code VARCHAR) |
###question:How many directed have the product code of 2.8?###answer:SELECT COUNT(directed_by) FROM table_20124413_2 WHERE prod_code = "2.8"###context:CREATE TABLE table_20124413_2 (directed_by VARCHAR, prod_code VARCHAR) |
###question:When 1.12 is the production code what is the original title?###answer:SELECT original_title FROM table_20124413_1 WHERE prod_code = "1.12"###context:CREATE TABLE table_20124413_1 (original_title VARCHAR, prod_code VARCHAR) |
###question:When 1.17 is the production code how many air dates are there?###answer:SELECT COUNT(original_airdate) FROM table_20124413_1 WHERE prod_code = "1.17"###context:CREATE TABLE table_20124413_1 (original_airdate VARCHAR, prod_code VARCHAR) |
###question:state the winnings of yates racing front row motorsports where poles were 0###answer:SELECT winnings FROM table_2012187_1 WHERE poles = 0 AND team_s_ = "Yates Racing Front Row Motorsports"###context:CREATE TABLE table_2012187_1 (winnings VARCHAR, poles VARCHAR, team_s_ VARCHAR) |
###question:which team(s) won $2,605,05###answer:SELECT team_s_ FROM table_2012187_1 WHERE winnings = "$2,605,05"###context:CREATE TABLE table_2012187_1 (team_s_ VARCHAR, winnings VARCHAR) |
###question:state the wins of the team with 2 top 10###answer:SELECT COUNT(wins) FROM table_2012187_1 WHERE top_10 = 2###context:CREATE TABLE table_2012187_1 (wins VARCHAR, top_10 VARCHAR) |
###question:what is kannada name ಕನ್ನಡ of tamil name தமிழ் anusham அனுஷம்###answer:SELECT kannada_name_ಕನ್ನಡ FROM table_201400_2 WHERE tamil_name_தமிழ் = "Anusham அனுஷம்"###context:CREATE TABLE table_201400_2 (kannada_name_ಕನ್ನಡ VARCHAR, tamil_name_தமிழ் VARCHAR) |
###question:what is the malayalam name മലയാളം of tamil name தமிழ் punarpoosam புனர்பூசம்###answer:SELECT malayalam_name_മലയാളം FROM table_201400_2 WHERE tamil_name_தமிழ் = "Punarpoosam புனர்பூசம்"###context:CREATE TABLE table_201400_2 (malayalam_name_മലയാളം VARCHAR, tamil_name_தமிழ் VARCHAR) |
###question:what is the telugu name తెలుగు of kannada name ಕನ್ನಡ utthara ಉತ್ತರ###answer:SELECT telugu_name_తెలుగు FROM table_201400_2 WHERE kannada_name_ಕನ್ನಡ = "Utthara ಉತ್ತರ"###context:CREATE TABLE table_201400_2 (telugu_name_తెలుగు VARCHAR, kannada_name_ಕನ್ನಡ VARCHAR) |
###question:what is the sanskrit of western star name arcturus###answer:SELECT sanskrit FROM table_201400_2 WHERE western_star_name = "Arcturus"###context:CREATE TABLE table_201400_2 (sanskrit VARCHAR, western_star_name VARCHAR) |
###question:what is the malayalam name മലയാളം of sanskrit uttarāṣāḍha उत्तराषाढा###answer:SELECT malayalam_name_മലയാളം FROM table_201400_2 WHERE sanskrit = "Uttarāṣāḍha उत्तराषाढा"###context:CREATE TABLE table_201400_2 (malayalam_name_മലയാളം VARCHAR, sanskrit VARCHAR) |
###question:Name the traditional for area 544###answer:SELECT traditional FROM table_2013618_1 WHERE area = 544###context:CREATE TABLE table_2013618_1 (traditional VARCHAR, area VARCHAR) |
###question:Name the foochow for pingnan county###answer:SELECT foochow FROM table_2013618_1 WHERE english_name = "Pingnan County"###context:CREATE TABLE table_2013618_1 (foochow VARCHAR, english_name VARCHAR) |
###question:Name the pinyin for ciá-ìng-gâing###answer:SELECT pinyin FROM table_2013618_1 WHERE foochow = "Ciá-ìng-gâing"###context:CREATE TABLE table_2013618_1 (pinyin VARCHAR, foochow VARCHAR) |
###question:Name the traditional for 屏南县###answer:SELECT traditional FROM table_2013618_1 WHERE simplified = "屏南县"###context:CREATE TABLE table_2013618_1 (traditional VARCHAR, simplified VARCHAR) |
###question:Name the density for 古田縣###answer:SELECT density FROM table_2013618_1 WHERE traditional = "古田縣"###context:CREATE TABLE table_2013618_1 (density VARCHAR, traditional VARCHAR) |
###question:Name the english name for 福鼎市###answer:SELECT english_name FROM table_2013618_1 WHERE traditional = "福鼎市"###context:CREATE TABLE table_2013618_1 (english_name VARCHAR, traditional VARCHAR) |
###question:What CFL team did Darcy Brown play for?###answer:SELECT cfl_team FROM table_20170644_1 WHERE player = "Darcy Brown"###context:CREATE TABLE table_20170644_1 (cfl_team VARCHAR, player VARCHAR) |
###question:What CFL team did simeon rottier play for?###answer:SELECT cfl_team FROM table_20170644_1 WHERE player = "Simeon Rottier"###context:CREATE TABLE table_20170644_1 (cfl_team VARCHAR, player VARCHAR) |
###question:What college did étienne légaré play for?###answer:SELECT college FROM table_20170644_1 WHERE player = "Étienne Légaré"###context:CREATE TABLE table_20170644_1 (college VARCHAR, player VARCHAR) |
###question:What team was in position OL?###answer:SELECT cfl_team FROM table_20170644_1 WHERE position = "OL"###context:CREATE TABLE table_20170644_1 (cfl_team VARCHAR, position VARCHAR) |
###question:Who was the player for the CFL team hamilton tiger-cats (via bc via saskatchewan )?###answer:SELECT player FROM table_20170644_1 WHERE cfl_team = "Hamilton Tiger-Cats (via BC via Saskatchewan )"###context:CREATE TABLE table_20170644_1 (player VARCHAR, cfl_team VARCHAR) |
###question:What number pick did the CFL team bc lions (via hamilton via winnipeg ) have?###answer:SELECT MAX(pick__number) FROM table_20170644_1 WHERE cfl_team = "BC Lions (via Hamilton via Winnipeg )"###context:CREATE TABLE table_20170644_1 (pick__number INTEGER, cfl_team VARCHAR) |
###question:How many different release dates are there for the audio book with a story number 7?###answer:SELECT COUNT(release_date) FROM table_20174050_1 WHERE story__number = 7###context:CREATE TABLE table_20174050_1 (release_date VARCHAR, story__number VARCHAR) |
###question:What's the title of the audio book with story number 91?###answer:SELECT title FROM table_20174050_1 WHERE story__number = 91###context:CREATE TABLE table_20174050_1 (title VARCHAR, story__number VARCHAR) |
###question:When was the audio book with target number 069 69 released?###answer:SELECT release_date FROM table_20174050_1 WHERE target__number = "069 69"###context:CREATE TABLE table_20174050_1 (release_date VARCHAR, target__number VARCHAR) |
###question:What's the format of the audio book titled The Mind Robber?###answer:SELECT format FROM table_20174050_1 WHERE title = "The Mind Robber"###context:CREATE TABLE table_20174050_1 (format VARCHAR, title VARCHAR) |
###question:who is the reader of the audiobook authored by cole, stephen stephen cole and released on 2008-11-13 13 november 2008###answer:SELECT reader FROM table_20174050_24 WHERE author = "Cole, Stephen Stephen Cole" AND release_date = "2008-11-13 13 November 2008"###context:CREATE TABLE table_20174050_24 (reader VA... |
###question:how many companies released an audiobook titled deadly download###answer:SELECT COUNT(company) FROM table_20174050_24 WHERE title = "Deadly Download"###context:CREATE TABLE table_20174050_24 (company VARCHAR, title VARCHAR) |
###question:which companies released on 2010-11-04 4 november 2010###answer:SELECT company FROM table_20174050_24 WHERE release_date = "2010-11-04 4 November 2010"###context:CREATE TABLE table_20174050_24 (company VARCHAR, release_date VARCHAR) |
###question:which company released audiobooks authored by day, martin martin day###answer:SELECT company FROM table_20174050_24 WHERE author = "Day, Martin Martin Day"###context:CREATE TABLE table_20174050_24 (company VARCHAR, author VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.