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