instruction
stringlengths
67
299
input
stringlengths
88
550
output
stringlengths
32
484
Write a SQL query that answers the following question: When did the episode with the Ririe family air for the first time?
The relevant table was constructed using the following SQL : CREATE TABLE table_19897294_10 (original_air_date VARCHAR, family_families VARCHAR)
SELECT original_air_date FROM table_19897294_10 WHERE family_families = "The Ririe Family"
Write a SQL query that answers the following question: Where was the episode with series number US9 filmed?
The relevant table was constructed using the following SQL : CREATE TABLE table_19897294_10 (location_s_ VARCHAR, no_in_series VARCHAR)
SELECT location_s_ FROM table_19897294_10 WHERE no_in_series = "US9"
Write a SQL query that answers the following question: What's the season number of the episode with series number US6?
The relevant table was constructed using the following SQL : CREATE TABLE table_19897294_10 (no_in_season INTEGER, no_in_series VARCHAR)
SELECT MIN(no_in_season) FROM table_19897294_10 WHERE no_in_series = "US6"
Write a SQL query that answers the following question: What family was featured in episode us14 of the series?
The relevant table was constructed using the following SQL : CREATE TABLE table_19897294_11 (family_families VARCHAR, no_in_series VARCHAR)
SELECT family_families FROM table_19897294_11 WHERE no_in_series = "US14"
Write a SQL query that answers the following question: How many locations featured the Webb Family?
The relevant table was constructed using the following SQL : CREATE TABLE table_19897294_11 (location_s_ VARCHAR, family_families VARCHAR)
SELECT COUNT(location_s_) FROM table_19897294_11 WHERE family_families = "The Webb Family"
Write a SQL query that answers the following question: What episode in the season was episode us17 in the series?
The relevant table was constructed using the following SQL : CREATE TABLE table_19897294_11 (no_in_season VARCHAR, no_in_series VARCHAR)
SELECT COUNT(no_in_season) FROM table_19897294_11 WHERE no_in_series = "US17"
Write a SQL query that answers the following question: What episode in the season was episode us18 in the series?
The relevant table was constructed using the following SQL : CREATE TABLE table_19897294_11 (no_in_season VARCHAR, no_in_series VARCHAR)
SELECT COUNT(no_in_season) FROM table_19897294_11 WHERE no_in_series = "US18"
Write a SQL query that answers the following question: What episode in the series was the Amaral family featured?
The relevant table was constructed using the following SQL : CREATE TABLE table_19897294_11 (no_in_series VARCHAR, family_families VARCHAR)
SELECT no_in_series FROM table_19897294_11 WHERE family_families = "The Amaral Family"
Write a SQL query that answers the following question: Who is the round winner when entrant is craven mild racing?
The relevant table was constructed using the following SQL : CREATE TABLE table_19886463_1 (round_winner VARCHAR, entrant VARCHAR)
SELECT round_winner FROM table_19886463_1 WHERE entrant = "Craven Mild Racing"
Write a SQL query that answers the following question: Who is the round winner of the wanneroo park circuit?
The relevant table was constructed using the following SQL : CREATE TABLE table_19886463_1 (round_winner VARCHAR, circuit VARCHAR)
SELECT round_winner FROM table_19886463_1 WHERE circuit = "Wanneroo Park"
Write a SQL query that answers the following question: Which circuit has two heats as the format?
The relevant table was constructed using the following SQL : CREATE TABLE table_19886463_1 (circuit VARCHAR, format VARCHAR)
SELECT circuit FROM table_19886463_1 WHERE format = "Two heats"
Write a SQL query that answers the following question: Name the original air date for the potter family
The relevant table was constructed using the following SQL : CREATE TABLE table_19897294_16 (original_air_date VARCHAR, family_families VARCHAR)
SELECT original_air_date FROM table_19897294_16 WHERE family_families = "The Potter Family"
Write a SQL query that answers the following question: how many original air date where family/families is the ryder family and the schwartz family
The relevant table was constructed using the following SQL : CREATE TABLE table_19897294_9 (original_air_date VARCHAR, family_families VARCHAR)
SELECT COUNT(original_air_date) FROM table_19897294_9 WHERE family_families = "The Ryder Family and The Schwartz Family"
Write a SQL query that answers the following question: where was the abbas family and the pickering family located
The relevant table was constructed using the following SQL : CREATE TABLE table_19897294_9 (location_s_ VARCHAR, family_families VARCHAR)
SELECT location_s_ FROM table_19897294_9 WHERE family_families = "The Abbas Family and The Pickering Family"
Write a SQL query that answers the following question: in which class is the position forward
The relevant table was constructed using the following SQL : CREATE TABLE table_19897896_7 (class VARCHAR, position VARCHAR)
SELECT class FROM table_19897896_7 WHERE position = "Forward"
Write a SQL query that answers the following question: in which season the position was center
The relevant table was constructed using the following SQL : CREATE TABLE table_19897896_7 (season VARCHAR, position VARCHAR)
SELECT season FROM table_19897896_7 WHERE position = "Center"
Write a SQL query that answers the following question: in which class was the ohio state university
The relevant table was constructed using the following SQL : CREATE TABLE table_19897896_7 (class VARCHAR, university VARCHAR)
SELECT class FROM table_19897896_7 WHERE university = "Ohio state"
Write a SQL query that answers the following question: Name the number of families for uk30
The relevant table was constructed using the following SQL : CREATE TABLE table_19897294_8 (family_families VARCHAR, no_overall VARCHAR)
SELECT COUNT(family_families) FROM table_19897294_8 WHERE no_overall = "UK30"
Write a SQL query that answers the following question: Name the number in series for in the ward family and the wren family
The relevant table was constructed using the following SQL : CREATE TABLE table_19897294_8 (no_in_series INTEGER, family_families VARCHAR)
SELECT MAX(no_in_series) FROM table_19897294_8 WHERE family_families = "The Ward Family and The Wren Family"
Write a SQL query that answers the following question: Name the family for uk31
The relevant table was constructed using the following SQL : CREATE TABLE table_19897294_8 (family_families VARCHAR, no_overall VARCHAR)
SELECT family_families FROM table_19897294_8 WHERE no_overall = "UK31"
Write a SQL query that answers the following question: Name the least number in series
The relevant table was constructed using the following SQL : CREATE TABLE table_19897294_8 (no_in_series INTEGER)
SELECT MIN(no_in_series) FROM table_19897294_8
Write a SQL query that answers the following question: Name the number of locations for uk32
The relevant table was constructed using the following SQL : CREATE TABLE table_19897294_8 (location_s_ VARCHAR, no_overall VARCHAR)
SELECT COUNT(location_s_) FROM table_19897294_8 WHERE no_overall = "UK32"
Write a SQL query that answers the following question: Name the air date for uk17
The relevant table was constructed using the following SQL : CREATE TABLE table_19897294_5 (original_air_date VARCHAR, no_overall VARCHAR)
SELECT original_air_date FROM table_19897294_5 WHERE no_overall = "UK17"
Write a SQL query that answers the following question: Name the family/families uk17
The relevant table was constructed using the following SQL : CREATE TABLE table_19897294_5 (family_families VARCHAR, no_overall VARCHAR)
SELECT family_families FROM table_19897294_5 WHERE no_overall = "UK17"
Write a SQL query that answers the following question: What is the number of the truck that has the crew chief Billy Wilburn?
The relevant table was constructed using the following SQL : CREATE TABLE table_19908313_2 (_number INTEGER, crew_chief VARCHAR)
SELECT MAX(_number) FROM table_19908313_2 WHERE crew_chief = "Billy Wilburn"
Write a SQL query that answers the following question: What number truck is owned by Stephen Germain?
The relevant table was constructed using the following SQL : CREATE TABLE table_19908313_2 (_number VARCHAR, listed_owner_s_ VARCHAR)
SELECT _number FROM table_19908313_2 WHERE listed_owner_s_ = "Stephen Germain"
Write a SQL query that answers the following question: What team is sponsored by d3 Outdoors?
The relevant table was constructed using the following SQL : CREATE TABLE table_19908313_2 (team VARCHAR, primary_sponsor_s_ VARCHAR)
SELECT team FROM table_19908313_2 WHERE primary_sponsor_s_ = "D3 Outdoors"
Write a SQL query that answers the following question: How many teams does Jeff Wyler own?
The relevant table was constructed using the following SQL : CREATE TABLE table_19908313_2 (team VARCHAR, listed_owner_s_ VARCHAR)
SELECT COUNT(team) FROM table_19908313_2 WHERE listed_owner_s_ = "Jeff Wyler"
Write a SQL query that answers the following question: Who is the primary sponsor for crew cheif Rick Ren's team?
The relevant table was constructed using the following SQL : CREATE TABLE table_19908313_2 (primary_sponsor_s_ VARCHAR, crew_chief VARCHAR)
SELECT primary_sponsor_s_ FROM table_19908313_2 WHERE crew_chief = "Rick Ren"
Write a SQL query that answers the following question: Who sponsors owner Bobby Dotter's team?
The relevant table was constructed using the following SQL : CREATE TABLE table_19908313_2 (primary_sponsor_s_ VARCHAR, listed_owner_s_ VARCHAR)
SELECT primary_sponsor_s_ FROM table_19908313_2 WHERE listed_owner_s_ = "Bobby Dotter"
Write a SQL query that answers the following question: What's the price of the team whose captain is Sanath Jayasuriya?
The relevant table was constructed using the following SQL : CREATE TABLE table_19905183_1 (price VARCHAR, captain VARCHAR)
SELECT price FROM table_19905183_1 WHERE captain = "Sanath Jayasuriya"
Write a SQL query that answers the following question: What team is from the Eastern province?
The relevant table was constructed using the following SQL : CREATE TABLE table_19905183_1 (team VARCHAR, province VARCHAR)
SELECT team FROM table_19905183_1 WHERE province = "Eastern"
Write a SQL query that answers the following question: Who's the head coach of the team with a price of $3.22 million?
The relevant table was constructed using the following SQL : CREATE TABLE table_19905183_1 (head_coach VARCHAR, price VARCHAR)
SELECT head_coach FROM table_19905183_1 WHERE price = "$3.22 million"
Write a SQL query that answers the following question: In how many teams is Waqar Younis the head coach?
The relevant table was constructed using the following SQL : CREATE TABLE table_19905183_1 (team VARCHAR, head_coach VARCHAR)
SELECT COUNT(team) FROM table_19905183_1 WHERE head_coach = "Waqar Younis"
Write a SQL query that answers the following question: What province does the Ruhuna Royals team come from?
The relevant table was constructed using the following SQL : CREATE TABLE table_19905183_1 (province VARCHAR, team VARCHAR)
SELECT province FROM table_19905183_1 WHERE team = "Ruhuna Royals"
Write a SQL query that answers the following question: When was Alexey Kuleshov born?
The relevant table was constructed using the following SQL : CREATE TABLE table_19900792_1 (birth_date VARCHAR, player VARCHAR)
SELECT birth_date FROM table_19900792_1 WHERE player = "Alexey Kuleshov"
Write a SQL query that answers the following question: What is the trigger pack on the Colt 602 with the a1 rear sight type?
The relevant table was constructed using the following SQL : CREATE TABLE table_19901_1 (trigger_pack VARCHAR, rear_sight_type VARCHAR, colt_model_no VARCHAR)
SELECT trigger_pack FROM table_19901_1 WHERE rear_sight_type = "A1" AND colt_model_no = "602"
Write a SQL query that answers the following question: What is the rear sight type on the model with the acr muzzle brake device?
The relevant table was constructed using the following SQL : CREATE TABLE table_19901_1 (rear_sight_type VARCHAR, muzzle_device VARCHAR)
SELECT rear_sight_type FROM table_19901_1 WHERE muzzle_device = "ACR muzzle brake"
Write a SQL query that answers the following question: Which muzzle devices are on the Colt 603?
The relevant table was constructed using the following SQL : CREATE TABLE table_19901_1 (muzzle_device VARCHAR, colt_model_no VARCHAR)
SELECT muzzle_device FROM table_19901_1 WHERE colt_model_no = "603"
Write a SQL query that answers the following question: How many millions of people in the US watched the episode with season number 8?
The relevant table was constructed using the following SQL : CREATE TABLE table_19925114_1 (us_viewers__millions_ VARCHAR, no_in_season VARCHAR)
SELECT us_viewers__millions_ FROM table_19925114_1 WHERE no_in_season = 8
Write a SQL query that answers the following question: How many episodes had the series number of 38?
The relevant table was constructed using the following SQL : CREATE TABLE table_19925114_1 (directed_by VARCHAR, no_in_series VARCHAR)
SELECT COUNT(directed_by) FROM table_19925114_1 WHERE no_in_series = 38
Write a SQL query that answers the following question: How many different numbers of people in the US who'd seen the episode with a season number 8 are there?
The relevant table was constructed using the following SQL : CREATE TABLE table_19925114_1 (us_viewers__millions_ VARCHAR, no_in_season VARCHAR)
SELECT COUNT(us_viewers__millions_) FROM table_19925114_1 WHERE no_in_season = 8
Write a SQL query that answers the following question: Name the rufus guest for 15 december 2008
The relevant table was constructed using the following SQL : CREATE TABLE table_19930660_1 (rufus_guest VARCHAR, first_broadcast VARCHAR)
SELECT COUNT(rufus_guest) FROM table_19930660_1 WHERE first_broadcast = "15 December 2008"
Write a SQL query that answers the following question: Name the winner for jason byrne
The relevant table was constructed using the following SQL : CREATE TABLE table_19930660_1 (winner VARCHAR, marcus_guest VARCHAR)
SELECT winner FROM table_19930660_1 WHERE marcus_guest = "Jason Byrne"
Write a SQL query that answers the following question: Name the rufus guest for episode 1x07
The relevant table was constructed using the following SQL : CREATE TABLE table_19930660_1 (rufus_guest VARCHAR, episode VARCHAR)
SELECT rufus_guest FROM table_19930660_1 WHERE episode = "1x07"
Write a SQL query that answers the following question: Name the winner for 26 january 2009
The relevant table was constructed using the following SQL : CREATE TABLE table_19930660_1 (winner VARCHAR, first_broadcast VARCHAR)
SELECT winner FROM table_19930660_1 WHERE first_broadcast = "26 January 2009"
Write a SQL query that answers the following question: When was episode 2x11 aired for the first time?
The relevant table was constructed using the following SQL : CREATE TABLE table_19930660_2 (first_broadcast VARCHAR, episode VARCHAR)
SELECT first_broadcast FROM table_19930660_2 WHERE episode = "2x11"
Write a SQL query that answers the following question: Who won the episode in which Sean Lock was Rufus's guest?
The relevant table was constructed using the following SQL : CREATE TABLE table_19930660_2 (winner VARCHAR, rufus_guest VARCHAR)
SELECT winner FROM table_19930660_2 WHERE rufus_guest = "Sean Lock"
Write a SQL query that answers the following question: When was the episode 2x10 aired for the first time?
The relevant table was constructed using the following SQL : CREATE TABLE table_19930660_2 (first_broadcast VARCHAR, episode VARCHAR)
SELECT first_broadcast FROM table_19930660_2 WHERE episode = "2x10"
Write a SQL query that answers the following question: Who was Marcus's guest in the episode when Rufus's guest was Rory McGrath?
The relevant table was constructed using the following SQL : CREATE TABLE table_19930660_2 (marcus_guest VARCHAR, rufus_guest VARCHAR)
SELECT marcus_guest FROM table_19930660_2 WHERE rufus_guest = "Rory McGrath"
Write a SQL query that answers the following question: How many items were under ranking l.a.(2) when the world ranking was 21st?
The relevant table was constructed using the following SQL : CREATE TABLE table_19948664_2 (ranking_la__2_ VARCHAR, world_ranking__1_ VARCHAR)
SELECT COUNT(ranking_la__2_) FROM table_19948664_2 WHERE world_ranking__1_ = "21st"
Write a SQL query that answers the following question: What was the author/editor/source when the l.a. ranking was 1st?
The relevant table was constructed using the following SQL : CREATE TABLE table_19948664_2 (author___editor___source VARCHAR, ranking_la__2_ VARCHAR)
SELECT author___editor___source FROM table_19948664_2 WHERE ranking_la__2_ = "1st"
Write a SQL query that answers the following question: How many years were listed under index when there were 157 countries sampled?
The relevant table was constructed using the following SQL : CREATE TABLE table_19948664_2 (index__year_ VARCHAR, countries_sampled VARCHAR)
SELECT COUNT(index__year_) FROM table_19948664_2 WHERE countries_sampled = 157
Write a SQL query that answers the following question: What was the publication year ranking l.a. is 1st?
The relevant table was constructed using the following SQL : CREATE TABLE table_19948664_2 (year_of_publication VARCHAR, ranking_la__2_ VARCHAR)
SELECT year_of_publication FROM table_19948664_2 WHERE ranking_la__2_ = "1st"
Write a SQL query that answers the following question: How many years were recorded when world ranking was 21st?
The relevant table was constructed using the following SQL : CREATE TABLE table_19948664_2 (index__year_ VARCHAR, world_ranking__1_ VARCHAR)
SELECT COUNT(index__year_) FROM table_19948664_2 WHERE world_ranking__1_ = "21st"
Write a SQL query that answers the following question: What Wireless LAN had a process technology of 90nm and a Carmel centrino?
The relevant table was constructed using the following SQL : CREATE TABLE table_199666_1 (wireless_lan VARCHAR, process_technology VARCHAR, centrino VARCHAR)
SELECT wireless_lan FROM table_199666_1 WHERE process_technology = "90nm" AND centrino = "Carmel"
Write a SQL query that answers the following question: How many series had the chipset of the Intel Centrino Ultimate-N 6300 wireless LAN with the codename Arrandale?
The relevant table was constructed using the following SQL : CREATE TABLE table_199666_1 (chipset VARCHAR, codename VARCHAR, wireless_lan VARCHAR)
SELECT chipset FROM table_199666_1 WHERE codename = "Arrandale" AND wireless_lan = "Intel centrino Ultimate-N 6300"
Write a SQL query that answers the following question: What's the process technology of the Intel WiFi Link 5100 wireless LAN?
The relevant table was constructed using the following SQL : CREATE TABLE table_199666_1 (process_technology VARCHAR, wireless_lan VARCHAR)
SELECT process_technology FROM table_199666_1 WHERE wireless_lan = "Intel WiFi Link 5100"
Write a SQL query that answers the following question: What type of processor does the Intel Centrino Wireless-N 105 wireless LAN have?
The relevant table was constructed using the following SQL : CREATE TABLE table_199666_1 (processor VARCHAR, wireless_lan VARCHAR)
SELECT processor FROM table_199666_1 WHERE wireless_lan = "Intel centrino Wireless-N 105"
Write a SQL query that answers the following question: What's the code name of the wireless LAN with Chief River Centrino?
The relevant table was constructed using the following SQL : CREATE TABLE table_199666_1 (codename VARCHAR, centrino VARCHAR)
SELECT codename FROM table_199666_1 WHERE centrino = "Chief River"
Write a SQL query that answers the following question: on 19 april 1985 how many of number last flew
The relevant table was constructed using the following SQL : CREATE TABLE table_1997759_1 (number VARCHAR, last_flew VARCHAR)
SELECT COUNT(number) FROM table_1997759_1 WHERE last_flew = "19 April 1985"
Write a SQL query that answers the following question: what is the registration located on 31 january 1975 where first flew?
The relevant table was constructed using the following SQL : CREATE TABLE table_1997759_1 (registration VARCHAR, first_flew VARCHAR)
SELECT registration FROM table_1997759_1 WHERE first_flew = "31 January 1975"
Write a SQL query that answers the following question: at what location is the last flew on 11 june 2000
The relevant table was constructed using the following SQL : CREATE TABLE table_1997759_1 (location VARCHAR, last_flew VARCHAR)
SELECT location FROM table_1997759_1 WHERE last_flew = "11 June 2000"
Write a SQL query that answers the following question: how many number is located at registration f-bvff?
The relevant table was constructed using the following SQL : CREATE TABLE table_1997759_1 (number VARCHAR, registration VARCHAR)
SELECT COUNT(number) FROM table_1997759_1 WHERE registration = "F-BVFF"
Write a SQL query that answers the following question: Who is the television commentator when the radio commentator is Galyna Babiy?
The relevant table was constructed using the following SQL : CREATE TABLE table_1998037_9 (television_commentator VARCHAR, radio_commentator VARCHAR)
SELECT television_commentator FROM table_1998037_9 WHERE radio_commentator = "Galyna Babiy"
Write a SQL query that answers the following question: Who is the television commentator when the spokesperson is Kateryna Osadcha?
The relevant table was constructed using the following SQL : CREATE TABLE table_1998037_9 (television_commentator VARCHAR, spokesperson VARCHAR)
SELECT television_commentator FROM table_1998037_9 WHERE spokesperson = "Kateryna Osadcha"
Write a SQL query that answers the following question: What is the year when the spoksperson is Ruslana?
The relevant table was constructed using the following SQL : CREATE TABLE table_1998037_9 (year_s_ INTEGER, spokesperson VARCHAR)
SELECT MIN(year_s_) FROM table_1998037_9 WHERE spokesperson = "Ruslana"
Write a SQL query that answers the following question: Who is the television commentator for the year 2006?
The relevant table was constructed using the following SQL : CREATE TABLE table_1998037_9 (television_commentator VARCHAR, year_s_ VARCHAR)
SELECT television_commentator FROM table_1998037_9 WHERE year_s_ = 2006
Write a SQL query that answers the following question: What is the season number of the episode seen by 10.11 million people in the US?
The relevant table was constructed using the following SQL : CREATE TABLE table_19995378_1 (no_in_season VARCHAR, us_viewers__millions_ VARCHAR)
SELECT no_in_season FROM table_19995378_1 WHERE us_viewers__millions_ = "10.11"
Write a SQL query that answers the following question: How many episodes with different series numbers were seen by 8.69 people in the US?
The relevant table was constructed using the following SQL : CREATE TABLE table_19995378_1 (no_in_season VARCHAR, us_viewers__millions_ VARCHAR)
SELECT COUNT(no_in_season) FROM table_19995378_1 WHERE us_viewers__millions_ = "8.69"
Write a SQL query that answers the following question: If the language is only native, what is the percentage of the San Antonio de Lomerio municipality?
The relevant table was constructed using the following SQL : CREATE TABLE table_19998428_3 (san_antonio_de_lomerío_municipality___percentage_ VARCHAR, language VARCHAR)
SELECT san_antonio_de_lomerío_municipality___percentage_ FROM table_19998428_3 WHERE language = "Only native"
Write a SQL query that answers the following question: For language Aymara Simi, what was the maximum San Javier municipality percentage?
The relevant table was constructed using the following SQL : CREATE TABLE table_19998428_3 (san_javier_municipality___percentage_ INTEGER, language VARCHAR)
SELECT MAX(san_javier_municipality___percentage_) FROM table_19998428_3 WHERE language = "Aymara simi"
Write a SQL query that answers the following question: If the San Antonio de Lomerio municipality percentage is 5.480, what is the total percentage for the San Julian municipality?
The relevant table was constructed using the following SQL : CREATE TABLE table_19998428_3 (san_julián_municipality___percentage_ VARCHAR, san_antonio_de_lomerío_municipality___percentage_ VARCHAR)
SELECT COUNT(san_julián_municipality___percentage_) FROM table_19998428_3 WHERE san_antonio_de_lomerío_municipality___percentage_ = "5.480"
Write a SQL query that answers the following question: What is the municipality percentage for San Antonio de Lomerio is San Javier municipality percentage is 31?
The relevant table was constructed using the following SQL : CREATE TABLE table_19998428_3 (san_antonio_de_lomerío_municipality___percentage_ VARCHAR, san_javier_municipality___percentage_ VARCHAR)
SELECT san_antonio_de_lomerío_municipality___percentage_ FROM table_19998428_3 WHERE san_javier_municipality___percentage_ = 31
Write a SQL query that answers the following question: If the Cuatro Cañadas municipality percentage is 252, what are all the San Antonio de Lomerío municipality percentage?
The relevant table was constructed using the following SQL : CREATE TABLE table_19998428_3 (san_antonio_de_lomerío_municipality___percentage_ VARCHAR, cuatro_cañadas_municipality___percentage_ VARCHAR)
SELECT san_antonio_de_lomerío_municipality___percentage_ FROM table_19998428_3 WHERE cuatro_cañadas_municipality___percentage_ = "252"
Write a SQL query that answers the following question: What is the San Javier municipality percentage if the Cuatro Cañadas municipality percentage is 202?
The relevant table was constructed using the following SQL : CREATE TABLE table_19998428_3 (san_javier_municipality___percentage_ VARCHAR, cuatro_cañadas_municipality___percentage_ VARCHAR)
SELECT san_javier_municipality___percentage_ FROM table_19998428_3 WHERE cuatro_cañadas_municipality___percentage_ = "202"
Write a SQL query that answers the following question: How many total number have robert young as the director?
The relevant table was constructed using the following SQL : CREATE TABLE table_19982699_1 (_number VARCHAR, director VARCHAR)
SELECT COUNT(_number) FROM table_19982699_1 WHERE director = "Robert Young"
Write a SQL query that answers the following question: How many numbers have Charles Salmon as the producer and January 27, 2007 was the television premiere?
The relevant table was constructed using the following SQL : CREATE TABLE table_19982699_1 (_number INTEGER, producer VARCHAR, television_premiere VARCHAR)
SELECT MIN(_number) FROM table_19982699_1 WHERE producer = "Charles Salmon" AND television_premiere = "January 27, 2007"
Write a SQL query that answers the following question: How many dvd releases where directed by david decoteau?
The relevant table was constructed using the following SQL : CREATE TABLE table_19982699_1 (dvd_release VARCHAR, director VARCHAR)
SELECT COUNT(dvd_release) FROM table_19982699_1 WHERE director = "David DeCoteau"
Write a SQL query that answers the following question: When was the dvd release directed by Billy O'Brien?
The relevant table was constructed using the following SQL : CREATE TABLE table_19982699_1 (dvd_release VARCHAR, director VARCHAR)
SELECT dvd_release FROM table_19982699_1 WHERE director = "Billy O'Brien"
Write a SQL query that answers the following question: What was the record after game 20?
The relevant table was constructed using the following SQL : CREATE TABLE table_20010140_9 (record VARCHAR, game VARCHAR)
SELECT record FROM table_20010140_9 WHERE game = 20
Write a SQL query that answers the following question: For the game against Iowa, who had the most assists?
The relevant table was constructed using the following SQL : CREATE TABLE table_20010140_9 (high_assists VARCHAR, team VARCHAR)
SELECT high_assists FROM table_20010140_9 WHERE team = "Iowa"
Write a SQL query that answers the following question: state high assists on february 15
The relevant table was constructed using the following SQL : CREATE TABLE table_20010140_10 (high_assists VARCHAR, date VARCHAR)
SELECT high_assists FROM table_20010140_10 WHERE date = "February 15"
Write a SQL query that answers the following question: how many high points where date is february 19
The relevant table was constructed using the following SQL : CREATE TABLE table_20010140_10 (high_points VARCHAR, date VARCHAR)
SELECT COUNT(high_points) FROM table_20010140_10 WHERE date = "February 19"
Write a SQL query that answers the following question: state the number of location attendance where record is 15–10 (5–7)
The relevant table was constructed using the following SQL : CREATE TABLE table_20010140_10 (location_attendance VARCHAR, record VARCHAR)
SELECT COUNT(location_attendance) FROM table_20010140_10 WHERE record = "15–10 (5–7)"
Write a SQL query that answers the following question: how many dates where high assists is stu douglass (5) – 4
The relevant table was constructed using the following SQL : CREATE TABLE table_20010140_10 (date VARCHAR, high_assists VARCHAR)
SELECT COUNT(date) FROM table_20010140_10 WHERE high_assists = "Stu Douglass (5) – 4"
Write a SQL query that answers the following question: how many records were made on february 22
The relevant table was constructed using the following SQL : CREATE TABLE table_20010140_10 (record VARCHAR, date VARCHAR)
SELECT COUNT(record) FROM table_20010140_10 WHERE date = "February 22"
Write a SQL query that answers the following question: Name the most applications for 1986
The relevant table was constructed using the following SQL : CREATE TABLE table_20007413_3 (applications INTEGER, year VARCHAR)
SELECT MAX(applications) FROM table_20007413_3 WHERE year = "1986"
Write a SQL query that answers the following question: Name the torque for 1986
The relevant table was constructed using the following SQL : CREATE TABLE table_20007413_3 (torque VARCHAR, year VARCHAR)
SELECT torque FROM table_20007413_3 WHERE year = "1986"
Write a SQL query that answers the following question: What network showed the season with Australia as the destination?
The relevant table was constructed using the following SQL : CREATE TABLE table_20026849_1 (network VARCHAR, destination VARCHAR)
SELECT network FROM table_20026849_1 WHERE destination = "Australia"
Write a SQL query that answers the following question: What was the latest season with 20 contestants?
The relevant table was constructed using the following SQL : CREATE TABLE table_20026849_1 (season INTEGER, contestants VARCHAR)
SELECT MAX(season) FROM table_20026849_1 WHERE contestants = 20
Write a SQL query that answers the following question: What season was won by Ashutosh Kaushik?
The relevant table was constructed using the following SQL : CREATE TABLE table_20026849_1 (season INTEGER, winner VARCHAR)
SELECT MIN(season) FROM table_20026849_1 WHERE winner = "Ashutosh Kaushik"
Write a SQL query that answers the following question: What was the destination of the season won by Anwar Syed?
The relevant table was constructed using the following SQL : CREATE TABLE table_20026849_1 (destination VARCHAR, winner VARCHAR)
SELECT destination FROM table_20026849_1 WHERE winner = "Anwar Syed"
Write a SQL query that answers the following question: What season was won by Anthony Yeh?
The relevant table was constructed using the following SQL : CREATE TABLE table_20026849_1 (season VARCHAR, winner VARCHAR)
SELECT season FROM table_20026849_1 WHERE winner = "Anthony Yeh"
Write a SQL query that answers the following question: Who won the season with Africa as its destination?
The relevant table was constructed using the following SQL : CREATE TABLE table_20026849_1 (winner VARCHAR, destination VARCHAR)
SELECT winner FROM table_20026849_1 WHERE destination = "Africa"
Write a SQL query that answers the following question: What is the African Spoonbill when the Hadeda Ibis is the Brown Snake Eagle?
The relevant table was constructed using the following SQL : CREATE TABLE table_20042805_2 (african_spoonbill VARCHAR, hadeda_ibis VARCHAR)
SELECT african_spoonbill FROM table_20042805_2 WHERE hadeda_ibis = "Brown Snake Eagle"
Write a SQL query that answers the following question: What is the Hadeda Ibis when the Ostrich is Dark Chanting Goshawk?
The relevant table was constructed using the following SQL : CREATE TABLE table_20042805_2 (hadeda_ibis VARCHAR, ostrich VARCHAR)
SELECT hadeda_ibis FROM table_20042805_2 WHERE ostrich = "Dark Chanting Goshawk"
Write a SQL query that answers the following question: What is the African Spoonbill when the Hadeda Ibis is Flernecked Nightjar?
The relevant table was constructed using the following SQL : CREATE TABLE table_20042805_2 (african_spoonbill VARCHAR, hadeda_ibis VARCHAR)
SELECT african_spoonbill FROM table_20042805_2 WHERE hadeda_ibis = "Flernecked Nightjar"
Write a SQL query that answers the following question: What is the Hadeda Ibis when the Knobbilled Duck is Pied Crow?
The relevant table was constructed using the following SQL : CREATE TABLE table_20042805_2 (hadeda_ibis VARCHAR, knobbilled_duck VARCHAR)
SELECT hadeda_ibis FROM table_20042805_2 WHERE knobbilled_duck = "Pied Crow"
Write a SQL query that answers the following question: What is the African Spoonbill when the Ostrich is Brown-hooded Kingfisher?
The relevant table was constructed using the following SQL : CREATE TABLE table_20042805_2 (african_spoonbill VARCHAR, ostrich VARCHAR)
SELECT african_spoonbill FROM table_20042805_2 WHERE ostrich = "Brown-hooded Kingfisher"