question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
How many students enrolled in 2005 at New Hampshire Institute of Art?
CREATE TABLE table_2076490_1 (enrollment__2005_ VARCHAR, school VARCHAR)
SELECT enrollment__2005_ FROM table_2076490_1 WHERE school = "New Hampshire Institute of Art"
### Context: CREATE TABLE table_2076490_1 (enrollment__2005_ VARCHAR, school VARCHAR) ### Question: How many students enrolled in 2005 at New Hampshire Institute of Art? ### Answer: SELECT enrollment__2005_ FROM table_2076490_1 WHERE school = "New Hampshire Institute of Art"
Name the most founded for enrollment 2005 being 1285
CREATE TABLE table_2076533_1 (founded INTEGER, enrollment__2005_ VARCHAR)
SELECT MAX(founded) FROM table_2076533_1 WHERE enrollment__2005_ = 1285
### Context: CREATE TABLE table_2076533_1 (founded INTEGER, enrollment__2005_ VARCHAR) ### Question: Name the most founded for enrollment 2005 being 1285 ### Answer: SELECT MAX(founded) FROM table_2076533_1 WHERE enrollment__2005_ = 1285
Name the main location for public and masters university
CREATE TABLE table_2076533_1 (main_location VARCHAR, control VARCHAR, type VARCHAR)
SELECT main_location FROM table_2076533_1 WHERE control = "Public" AND type = "Masters university"
### Context: CREATE TABLE table_2076533_1 (main_location VARCHAR, control VARCHAR, type VARCHAR) ### Question: Name the main location for public and masters university ### Answer: SELECT main_location FROM table_2076533_1 WHERE control = "Public" AND type = "Masters university"
Name the type for mcminnville
CREATE TABLE table_2076533_1 (type VARCHAR, main_location VARCHAR)
SELECT type FROM table_2076533_1 WHERE main_location = "McMinnville"
### Context: CREATE TABLE table_2076533_1 (type VARCHAR, main_location VARCHAR) ### Question: Name the type for mcminnville ### Answer: SELECT type FROM table_2076533_1 WHERE main_location = "McMinnville"
Name the control for albany
CREATE TABLE table_2076533_1 (control VARCHAR, main_location VARCHAR)
SELECT control FROM table_2076533_1 WHERE main_location = "Albany"
### Context: CREATE TABLE table_2076533_1 (control VARCHAR, main_location VARCHAR) ### Question: Name the control for albany ### Answer: SELECT control FROM table_2076533_1 WHERE main_location = "Albany"
Name the least founded for gutenberg college
CREATE TABLE table_2076533_1 (founded INTEGER, school VARCHAR)
SELECT MIN(founded) FROM table_2076533_1 WHERE school = "Gutenberg College"
### Context: CREATE TABLE table_2076533_1 (founded INTEGER, school VARCHAR) ### Question: Name the least founded for gutenberg college ### Answer: SELECT MIN(founded) FROM table_2076533_1 WHERE school = "Gutenberg College"
Name the type for 1245 enrollment
CREATE TABLE table_2076533_1 (type VARCHAR, enrollment__2005_ VARCHAR)
SELECT type FROM table_2076533_1 WHERE enrollment__2005_ = 1245
### Context: CREATE TABLE table_2076533_1 (type VARCHAR, enrollment__2005_ VARCHAR) ### Question: Name the type for 1245 enrollment ### Answer: SELECT type FROM table_2076533_1 WHERE enrollment__2005_ = 1245
when type of work is novel and published in english is 1977, what was published in russian?
CREATE TABLE table_207795_1 (published_in_russian VARCHAR, type_of_work VARCHAR, published_in_english VARCHAR)
SELECT published_in_russian FROM table_207795_1 WHERE type_of_work = "novel" AND published_in_english = "1977"
### Context: CREATE TABLE table_207795_1 (published_in_russian VARCHAR, type_of_work VARCHAR, published_in_english VARCHAR) ### Question: when type of work is novel and published in english is 1977, what was published in russian? ### Answer: SELECT published_in_russian FROM table_207795_1 WHERE type_of_work = "novel" AND published_in_english = "1977"
How many types of work is хромая судьба?
CREATE TABLE table_207795_1 (type_of_work VARCHAR, russian_title VARCHAR)
SELECT COUNT(type_of_work) FROM table_207795_1 WHERE russian_title = "Хромая судьба"
### Context: CREATE TABLE table_207795_1 (type_of_work VARCHAR, russian_title VARCHAR) ### Question: How many types of work is хромая судьба? ### Answer: SELECT COUNT(type_of_work) FROM table_207795_1 WHERE russian_title = "Хромая судьба"
What is the russian title of the ugly swans?
CREATE TABLE table_207795_1 (russian_title VARCHAR, english_title VARCHAR)
SELECT russian_title FROM table_207795_1 WHERE english_title = "The Ugly Swans"
### Context: CREATE TABLE table_207795_1 (russian_title VARCHAR, english_title VARCHAR) ### Question: What is the russian title of the ugly swans? ### Answer: SELECT russian_title FROM table_207795_1 WHERE english_title = "The Ugly Swans"
when it published in english is n/a and published in russian is 1986, what is the type of work?
CREATE TABLE table_207795_1 (type_of_work VARCHAR, published_in_english VARCHAR, published_in_russian VARCHAR)
SELECT type_of_work FROM table_207795_1 WHERE published_in_english = "N/A" AND published_in_russian = "1986"
### Context: CREATE TABLE table_207795_1 (type_of_work VARCHAR, published_in_english VARCHAR, published_in_russian VARCHAR) ### Question: when it published in english is n/a and published in russian is 1986, what is the type of work? ### Answer: SELECT type_of_work FROM table_207795_1 WHERE published_in_english = "N/A" AND published_in_russian = "1986"
List the presbyterian members of the senate.
CREATE TABLE table_20803065_1 (senator VARCHAR, religion VARCHAR)
SELECT senator FROM table_20803065_1 WHERE religion = "Presbyterian"
### Context: CREATE TABLE table_20803065_1 (senator VARCHAR, religion VARCHAR) ### Question: List the presbyterian members of the senate. ### Answer: SELECT senator FROM table_20803065_1 WHERE religion = "Presbyterian"
Which state does congressman jim demint represent?
CREATE TABLE table_20803065_1 (state VARCHAR, senator VARCHAR)
SELECT state FROM table_20803065_1 WHERE senator = "Jim DeMint"
### Context: CREATE TABLE table_20803065_1 (state VARCHAR, senator VARCHAR) ### Question: Which state does congressman jim demint represent? ### Answer: SELECT state FROM table_20803065_1 WHERE senator = "Jim DeMint"
Name the total number of tie number for team 2 osijek
CREATE TABLE table_20819379_2 (tie_no VARCHAR, team_2 VARCHAR)
SELECT COUNT(tie_no) FROM table_20819379_2 WHERE team_2 = "Osijek"
### Context: CREATE TABLE table_20819379_2 (tie_no VARCHAR, team_2 VARCHAR) ### Question: Name the total number of tie number for team 2 osijek ### Answer: SELECT COUNT(tie_no) FROM table_20819379_2 WHERE team_2 = "Osijek"
What is the minimum number of total placings?
CREATE TABLE table_20823568_3 (total_placings_s_ INTEGER)
SELECT MIN(total_placings_s_) FROM table_20823568_3
### Context: CREATE TABLE table_20823568_3 (total_placings_s_ INTEGER) ### Question: What is the minimum number of total placings? ### Answer: SELECT MIN(total_placings_s_) FROM table_20823568_3
What was the result of the game with the record of 3-1?
CREATE TABLE table_20849830_1 (result VARCHAR, record VARCHAR)
SELECT result FROM table_20849830_1 WHERE record = "3-1"
### Context: CREATE TABLE table_20849830_1 (result VARCHAR, record VARCHAR) ### Question: What was the result of the game with the record of 3-1? ### Answer: SELECT result FROM table_20849830_1 WHERE record = "3-1"
What was the date of the game with the record of 2-1?
CREATE TABLE table_20849830_1 (date VARCHAR, record VARCHAR)
SELECT date FROM table_20849830_1 WHERE record = "2-1"
### Context: CREATE TABLE table_20849830_1 (date VARCHAR, record VARCHAR) ### Question: What was the date of the game with the record of 2-1? ### Answer: SELECT date FROM table_20849830_1 WHERE record = "2-1"
How many games were there in the 1966 season?
CREATE TABLE table_20849830_1 (game INTEGER)
SELECT MAX(game) FROM table_20849830_1
### Context: CREATE TABLE table_20849830_1 (game INTEGER) ### Question: How many games were there in the 1966 season? ### Answer: SELECT MAX(game) FROM table_20849830_1
What game number had a record of 3-1?
CREATE TABLE table_20849830_1 (game VARCHAR, record VARCHAR)
SELECT game FROM table_20849830_1 WHERE record = "3-1"
### Context: CREATE TABLE table_20849830_1 (game VARCHAR, record VARCHAR) ### Question: What game number had a record of 3-1? ### Answer: SELECT game FROM table_20849830_1 WHERE record = "3-1"
What happened when the new points was 1705?
CREATE TABLE table_20855452_4 (status VARCHAR, new_points VARCHAR)
SELECT status FROM table_20855452_4 WHERE new_points = 1705
### Context: CREATE TABLE table_20855452_4 (status VARCHAR, new_points VARCHAR) ### Question: What happened when the new points was 1705? ### Answer: SELECT status FROM table_20855452_4 WHERE new_points = 1705
What was the max when they score 2200?
CREATE TABLE table_20855452_4 (new_points INTEGER, points VARCHAR)
SELECT MAX(new_points) FROM table_20855452_4 WHERE points = 2200
### Context: CREATE TABLE table_20855452_4 (new_points INTEGER, points VARCHAR) ### Question: What was the max when they score 2200? ### Answer: SELECT MAX(new_points) FROM table_20855452_4 WHERE points = 2200
How many points did agnieszka radwańska score?
CREATE TABLE table_20855452_4 (points VARCHAR, player VARCHAR)
SELECT points FROM table_20855452_4 WHERE player = "Agnieszka Radwańska"
### Context: CREATE TABLE table_20855452_4 (points VARCHAR, player VARCHAR) ### Question: How many points did agnieszka radwańska score? ### Answer: SELECT points FROM table_20855452_4 WHERE player = "Agnieszka Radwańska"
How many points did shahar pe'er score?
CREATE TABLE table_20855452_4 (points VARCHAR, player VARCHAR)
SELECT points AS won FROM table_20855452_4 WHERE player = "Shahar Pe'er"
### Context: CREATE TABLE table_20855452_4 (points VARCHAR, player VARCHAR) ### Question: How many points did shahar pe'er score? ### Answer: SELECT points AS won FROM table_20855452_4 WHERE player = "Shahar Pe'er"
What is the weight for western ontario college?
CREATE TABLE table_20872722_1 (weight VARCHAR, college VARCHAR)
SELECT weight FROM table_20872722_1 WHERE college = "Western Ontario"
### Context: CREATE TABLE table_20872722_1 (weight VARCHAR, college VARCHAR) ### Question: What is the weight for western ontario college? ### Answer: SELECT weight FROM table_20872722_1 WHERE college = "Western Ontario"
How many positions have round 3?
CREATE TABLE table_20872722_1 (position VARCHAR, round VARCHAR)
SELECT COUNT(position) FROM table_20872722_1 WHERE round = 3
### Context: CREATE TABLE table_20872722_1 (position VARCHAR, round VARCHAR) ### Question: How many positions have round 3? ### Answer: SELECT COUNT(position) FROM table_20872722_1 WHERE round = 3
Which position has 225lb as weight?
CREATE TABLE table_20872722_1 (position VARCHAR, weight VARCHAR)
SELECT position FROM table_20872722_1 WHERE weight = "225lb"
### Context: CREATE TABLE table_20872722_1 (position VARCHAR, weight VARCHAR) ### Question: Which position has 225lb as weight? ### Answer: SELECT position FROM table_20872722_1 WHERE weight = "225lb"
What is the round?
CREATE TABLE table_20872722_1 (round INTEGER)
SELECT MIN(round) FROM table_20872722_1
### Context: CREATE TABLE table_20872722_1 (round INTEGER) ### Question: What is the round? ### Answer: SELECT MIN(round) FROM table_20872722_1
What is the height of the cornerback position?
CREATE TABLE table_20872722_1 (height VARCHAR, position VARCHAR)
SELECT COUNT(height) FROM table_20872722_1 WHERE position = "Cornerback"
### Context: CREATE TABLE table_20872722_1 (height VARCHAR, position VARCHAR) ### Question: What is the height of the cornerback position? ### Answer: SELECT COUNT(height) FROM table_20872722_1 WHERE position = "Cornerback"
What is the most recent year joined?
CREATE TABLE table_20887670_1 (year_joined INTEGER)
SELECT MAX(year_joined) FROM table_20887670_1
### Context: CREATE TABLE table_20887670_1 (year_joined INTEGER) ### Question: What is the most recent year joined? ### Answer: SELECT MAX(year_joined) FROM table_20887670_1
what is the affiliation of the hilltoppers mascot?
CREATE TABLE table_20887670_1 (affiliation VARCHAR, mascot VARCHAR)
SELECT affiliation FROM table_20887670_1 WHERE mascot = "Hilltoppers"
### Context: CREATE TABLE table_20887670_1 (affiliation VARCHAR, mascot VARCHAR) ### Question: what is the affiliation of the hilltoppers mascot? ### Answer: SELECT affiliation FROM table_20887670_1 WHERE mascot = "Hilltoppers"
what is the affiliation of the colors maroon and white?
CREATE TABLE table_20887670_1 (affiliation VARCHAR, colors VARCHAR)
SELECT affiliation FROM table_20887670_1 WHERE colors = "Maroon and White"
### Context: CREATE TABLE table_20887670_1 (affiliation VARCHAR, colors VARCHAR) ### Question: what is the affiliation of the colors maroon and white? ### Answer: SELECT affiliation FROM table_20887670_1 WHERE colors = "Maroon and White"
what is the number of enrollment of the central institution?
CREATE TABLE table_20887670_1 (enrollment VARCHAR, institution VARCHAR)
SELECT enrollment FROM table_20887670_1 WHERE institution = "Central"
### Context: CREATE TABLE table_20887670_1 (enrollment VARCHAR, institution VARCHAR) ### Question: what is the number of enrollment of the central institution? ### Answer: SELECT enrollment FROM table_20887670_1 WHERE institution = "Central"
what is the name of the institution of the sparta, wi location?
CREATE TABLE table_20887670_1 (institution VARCHAR, location VARCHAR)
SELECT institution FROM table_20887670_1 WHERE location = "Sparta, WI"
### Context: CREATE TABLE table_20887670_1 (institution VARCHAR, location VARCHAR) ### Question: what is the name of the institution of the sparta, wi location? ### Answer: SELECT institution FROM table_20887670_1 WHERE location = "Sparta, WI"
in what year did the colors red and gold join?
CREATE TABLE table_20887670_1 (year_joined VARCHAR, colors VARCHAR)
SELECT COUNT(year_joined) FROM table_20887670_1 WHERE colors = "Red and Gold"
### Context: CREATE TABLE table_20887670_1 (year_joined VARCHAR, colors VARCHAR) ### Question: in what year did the colors red and gold join? ### Answer: SELECT COUNT(year_joined) FROM table_20887670_1 WHERE colors = "Red and Gold"
What circuit did rick kelly win on?
CREATE TABLE table_20884163_2 (circuit VARCHAR, winner VARCHAR)
SELECT circuit FROM table_20884163_2 WHERE winner = "Rick Kelly"
### Context: CREATE TABLE table_20884163_2 (circuit VARCHAR, winner VARCHAR) ### Question: What circuit did rick kelly win on? ### Answer: SELECT circuit FROM table_20884163_2 WHERE winner = "Rick Kelly"
What circuit features the placemakers v8 supercars race?
CREATE TABLE table_20884163_2 (circuit VARCHAR, race_title VARCHAR)
SELECT circuit FROM table_20884163_2 WHERE race_title = "PlaceMakers V8 Supercars"
### Context: CREATE TABLE table_20884163_2 (circuit VARCHAR, race_title VARCHAR) ### Question: What circuit features the placemakers v8 supercars race? ### Answer: SELECT circuit FROM table_20884163_2 WHERE race_title = "PlaceMakers V8 Supercars"
What dates was the falken tasmania challenge race that had triple eight race engineering as the team?
CREATE TABLE table_20884163_2 (date VARCHAR, team VARCHAR, race_title VARCHAR)
SELECT date FROM table_20884163_2 WHERE team = "Triple Eight Race Engineering" AND race_title = "Falken Tasmania Challenge"
### Context: CREATE TABLE table_20884163_2 (date VARCHAR, team VARCHAR, race_title VARCHAR) ### Question: What dates was the falken tasmania challenge race that had triple eight race engineering as the team? ### Answer: SELECT date FROM table_20884163_2 WHERE team = "Triple Eight Race Engineering" AND race_title = "Falken Tasmania Challenge"
What was the report for the winton race?
CREATE TABLE table_20884163_2 (report VARCHAR, race_title VARCHAR)
SELECT report FROM table_20884163_2 WHERE race_title = "Winton"
### Context: CREATE TABLE table_20884163_2 (report VARCHAR, race_title VARCHAR) ### Question: What was the report for the winton race? ### Answer: SELECT report FROM table_20884163_2 WHERE race_title = "Winton"
What medium was used for the sculpture of George Harold Baker?
CREATE TABLE table_20903658_1 (medium VARCHAR, title_subject VARCHAR)
SELECT medium FROM table_20903658_1 WHERE title_subject = "George Harold Baker"
### Context: CREATE TABLE table_20903658_1 (medium VARCHAR, title_subject VARCHAR) ### Question: What medium was used for the sculpture of George Harold Baker? ### Answer: SELECT medium FROM table_20903658_1 WHERE title_subject = "George Harold Baker"
Who was the subject of the sculpture created in 1982?
CREATE TABLE table_20903658_1 (title_subject VARCHAR, date_painted_created VARCHAR)
SELECT title_subject FROM table_20903658_1 WHERE date_painted_created = "1982"
### Context: CREATE TABLE table_20903658_1 (title_subject VARCHAR, date_painted_created VARCHAR) ### Question: Who was the subject of the sculpture created in 1982? ### Answer: SELECT title_subject FROM table_20903658_1 WHERE date_painted_created = "1982"
Who was the subject of the bronze sculpture who was a colonist and soldier in Ville Marie, New France?
CREATE TABLE table_20903658_1 (title_subject VARCHAR, medium VARCHAR, public_office VARCHAR)
SELECT title_subject FROM table_20903658_1 WHERE medium = "Bronze" AND public_office = "colonist and soldier in Ville Marie, New France"
### Context: CREATE TABLE table_20903658_1 (title_subject VARCHAR, medium VARCHAR, public_office VARCHAR) ### Question: Who was the subject of the bronze sculpture who was a colonist and soldier in Ville Marie, New France? ### Answer: SELECT title_subject FROM table_20903658_1 WHERE medium = "Bronze" AND public_office = "colonist and soldier in Ville Marie, New France"
What was the public office of the subject whose sculpture was created in 1954?
CREATE TABLE table_20903658_1 (public_office VARCHAR, date_painted_created VARCHAR)
SELECT public_office FROM table_20903658_1 WHERE date_painted_created = "1954"
### Context: CREATE TABLE table_20903658_1 (public_office VARCHAR, date_painted_created VARCHAR) ### Question: What was the public office of the subject whose sculpture was created in 1954? ### Answer: SELECT public_office FROM table_20903658_1 WHERE date_painted_created = "1954"
What medium was used for the sculpture by Ernest Richard Gause?
CREATE TABLE table_20903658_1 (medium VARCHAR, artist VARCHAR)
SELECT medium FROM table_20903658_1 WHERE artist = "Ernest Richard Gause"
### Context: CREATE TABLE table_20903658_1 (medium VARCHAR, artist VARCHAR) ### Question: What medium was used for the sculpture by Ernest Richard Gause? ### Answer: SELECT medium FROM table_20903658_1 WHERE artist = "Ernest Richard Gause"
Name the originl title for no stars in the jungle
CREATE TABLE table_20963074_1 (original_title VARCHAR, film_title_used_in_nomination VARCHAR)
SELECT original_title FROM table_20963074_1 WHERE film_title_used_in_nomination = "No Stars in the Jungle"
### Context: CREATE TABLE table_20963074_1 (original_title VARCHAR, film_title_used_in_nomination VARCHAR) ### Question: Name the originl title for no stars in the jungle ### Answer: SELECT original_title FROM table_20963074_1 WHERE film_title_used_in_nomination = "No Stars in the Jungle"
Name the original title for not nominated result with report on death
CREATE TABLE table_20963074_1 (original_title VARCHAR, result VARCHAR, film_title_used_in_nomination VARCHAR)
SELECT original_title FROM table_20963074_1 WHERE result = "Not Nominated" AND film_title_used_in_nomination = "Report on Death"
### Context: CREATE TABLE table_20963074_1 (original_title VARCHAR, result VARCHAR, film_title_used_in_nomination VARCHAR) ### Question: Name the original title for not nominated result with report on death ### Answer: SELECT original_title FROM table_20963074_1 WHERE result = "Not Nominated" AND film_title_used_in_nomination = "Report on Death"
Name the total number of results for octubre
CREATE TABLE table_20963074_1 (result VARCHAR, original_title VARCHAR)
SELECT COUNT(result) FROM table_20963074_1 WHERE original_title = "Octubre"
### Context: CREATE TABLE table_20963074_1 (result VARCHAR, original_title VARCHAR) ### Question: Name the total number of results for octubre ### Answer: SELECT COUNT(result) FROM table_20963074_1 WHERE original_title = "Octubre"
Name the film title for la boca del lobo
CREATE TABLE table_20963074_1 (film_title_used_in_nomination VARCHAR, original_title VARCHAR)
SELECT film_title_used_in_nomination FROM table_20963074_1 WHERE original_title = "La boca del lobo"
### Context: CREATE TABLE table_20963074_1 (film_title_used_in_nomination VARCHAR, original_title VARCHAR) ### Question: Name the film title for la boca del lobo ### Answer: SELECT film_title_used_in_nomination FROM table_20963074_1 WHERE original_title = "La boca del lobo"
Name the year for reportaje a la muerte
CREATE TABLE table_20963074_1 (year__ceremony_ VARCHAR, original_title VARCHAR)
SELECT year__ceremony_ FROM table_20963074_1 WHERE original_title = "Reportaje a la muerte"
### Context: CREATE TABLE table_20963074_1 (year__ceremony_ VARCHAR, original_title VARCHAR) ### Question: Name the year for reportaje a la muerte ### Answer: SELECT year__ceremony_ FROM table_20963074_1 WHERE original_title = "Reportaje a la muerte"
How many directors for #15?
CREATE TABLE table_20942925_1 (directed_by VARCHAR, _number VARCHAR)
SELECT COUNT(directed_by) FROM table_20942925_1 WHERE _number = 15
### Context: CREATE TABLE table_20942925_1 (directed_by VARCHAR, _number VARCHAR) ### Question: How many directors for #15? ### Answer: SELECT COUNT(directed_by) FROM table_20942925_1 WHERE _number = 15
What is every director with production code of NABF13?
CREATE TABLE table_20942925_1 (directed_by VARCHAR, production_code VARCHAR)
SELECT directed_by FROM table_20942925_1 WHERE production_code = "NABF13"
### Context: CREATE TABLE table_20942925_1 (directed_by VARCHAR, production_code VARCHAR) ### Question: What is every director with production code of NABF13? ### Answer: SELECT directed_by FROM table_20942925_1 WHERE production_code = "NABF13"
What are all values for U.S. viewers(millions) with Kevin Curran as a writer?
CREATE TABLE table_20942925_1 (us_viewers__millions_ VARCHAR, written_by VARCHAR)
SELECT us_viewers__millions_ FROM table_20942925_1 WHERE written_by = "Kevin Curran"
### Context: CREATE TABLE table_20942925_1 (us_viewers__millions_ VARCHAR, written_by VARCHAR) ### Question: What are all values for U.S. viewers(millions) with Kevin Curran as a writer? ### Answer: SELECT us_viewers__millions_ FROM table_20942925_1 WHERE written_by = "Kevin Curran"
How many titles for the production code of NABF07?
CREATE TABLE table_20942925_1 (title VARCHAR, production_code VARCHAR)
SELECT COUNT(title) FROM table_20942925_1 WHERE production_code = "NABF07"
### Context: CREATE TABLE table_20942925_1 (title VARCHAR, production_code VARCHAR) ### Question: How many titles for the production code of NABF07? ### Answer: SELECT COUNT(title) FROM table_20942925_1 WHERE production_code = "NABF07"
Name the episode for 18-49 rating being 3.6
CREATE TABLE table_20971444_3 (episode VARCHAR, rating__18_49_ VARCHAR)
SELECT COUNT(episode) FROM table_20971444_3 WHERE rating__18_49_ = "3.6"
### Context: CREATE TABLE table_20971444_3 (episode VARCHAR, rating__18_49_ VARCHAR) ### Question: Name the episode for 18-49 rating being 3.6 ### Answer: SELECT COUNT(episode) FROM table_20971444_3 WHERE rating__18_49_ = "3.6"
Name the rank timeslot for 11.59 viewers
CREATE TABLE table_20971444_3 (rank__timeslot_ VARCHAR, viewers__millions_ VARCHAR)
SELECT rank__timeslot_ FROM table_20971444_3 WHERE viewers__millions_ = "11.59"
### Context: CREATE TABLE table_20971444_3 (rank__timeslot_ VARCHAR, viewers__millions_ VARCHAR) ### Question: Name the rank timeslot for 11.59 viewers ### Answer: SELECT rank__timeslot_ FROM table_20971444_3 WHERE viewers__millions_ = "11.59"
Name the first air date for 9 episode
CREATE TABLE table_20971444_3 (first_air_date VARCHAR, episode VARCHAR)
SELECT first_air_date FROM table_20971444_3 WHERE episode = 9
### Context: CREATE TABLE table_20971444_3 (first_air_date VARCHAR, episode VARCHAR) ### Question: Name the first air date for 9 episode ### Answer: SELECT first_air_date FROM table_20971444_3 WHERE episode = 9
Name the rank timeslot for 18-49 share being 13
CREATE TABLE table_20971444_3 (rank__timeslot_ VARCHAR, share__18_49_ VARCHAR)
SELECT COUNT(rank__timeslot_) FROM table_20971444_3 WHERE share__18_49_ = 13
### Context: CREATE TABLE table_20971444_3 (rank__timeslot_ VARCHAR, share__18_49_ VARCHAR) ### Question: Name the rank timeslot for 18-49 share being 13 ### Answer: SELECT COUNT(rank__timeslot_) FROM table_20971444_3 WHERE share__18_49_ = 13
Name the total number of rank timeslot for 18-49 being 3.1
CREATE TABLE table_20971444_3 (rank__timeslot_ VARCHAR, rating__18_49_ VARCHAR)
SELECT COUNT(rank__timeslot_) FROM table_20971444_3 WHERE rating__18_49_ = "3.1"
### Context: CREATE TABLE table_20971444_3 (rank__timeslot_ VARCHAR, rating__18_49_ VARCHAR) ### Question: Name the total number of rank timeslot for 18-49 being 3.1 ### Answer: SELECT COUNT(rank__timeslot_) FROM table_20971444_3 WHERE rating__18_49_ = "3.1"
Name the total number for 18-49 share being 18-49 being 3.1
CREATE TABLE table_20971444_3 (share__18_49_ VARCHAR, rating__18_49_ VARCHAR)
SELECT COUNT(share__18_49_) FROM table_20971444_3 WHERE rating__18_49_ = "3.1"
### Context: CREATE TABLE table_20971444_3 (share__18_49_ VARCHAR, rating__18_49_ VARCHAR) ### Question: Name the total number for 18-49 share being 18-49 being 3.1 ### Answer: SELECT COUNT(share__18_49_) FROM table_20971444_3 WHERE rating__18_49_ = "3.1"
What was the date for the Champs Sports Bowl?
CREATE TABLE table_20996923_20 (date VARCHAR, bowl_game VARCHAR)
SELECT date FROM table_20996923_20 WHERE bowl_game = "Champs Sports Bowl"
### Context: CREATE TABLE table_20996923_20 (date VARCHAR, bowl_game VARCHAR) ### Question: What was the date for the Champs Sports Bowl? ### Answer: SELECT date FROM table_20996923_20 WHERE bowl_game = "Champs Sports Bowl"
What is the date when the city is San Antonio, Texas?
CREATE TABLE table_20996923_20 (date VARCHAR, city VARCHAR)
SELECT date FROM table_20996923_20 WHERE city = "San Antonio, Texas"
### Context: CREATE TABLE table_20996923_20 (date VARCHAR, city VARCHAR) ### Question: What is the date when the city is San Antonio, Texas? ### Answer: SELECT date FROM table_20996923_20 WHERE city = "San Antonio, Texas"
What is the city when the Television network was the NFL Network?
CREATE TABLE table_20996923_20 (city VARCHAR, television VARCHAR)
SELECT city FROM table_20996923_20 WHERE television = "NFL Network"
### Context: CREATE TABLE table_20996923_20 (city VARCHAR, television VARCHAR) ### Question: What is the city when the Television network was the NFL Network? ### Answer: SELECT city FROM table_20996923_20 WHERE television = "NFL Network"
How many opponents did the Sun Devils play when they scored 41 points?
CREATE TABLE table_21007615_1 (opponent VARCHAR, sun_devils_points VARCHAR)
SELECT COUNT(opponent) FROM table_21007615_1 WHERE sun_devils_points = 41
### Context: CREATE TABLE table_21007615_1 (opponent VARCHAR, sun_devils_points VARCHAR) ### Question: How many opponents did the Sun Devils play when they scored 41 points? ### Answer: SELECT COUNT(opponent) FROM table_21007615_1 WHERE sun_devils_points = 41
What was the record for the Sun Devils when they scored 44 points?
CREATE TABLE table_21007615_1 (record VARCHAR, sun_devils_points VARCHAR)
SELECT record FROM table_21007615_1 WHERE sun_devils_points = 44
### Context: CREATE TABLE table_21007615_1 (record VARCHAR, sun_devils_points VARCHAR) ### Question: What was the record for the Sun Devils when they scored 44 points? ### Answer: SELECT record FROM table_21007615_1 WHERE sun_devils_points = 44
When the torsion spring diameter is 38.4cm what would be the length or weight of the missile
CREATE TABLE table_21012786_2 (length_weight_of_missile VARCHAR, diameter_of_torsion_spring VARCHAR)
SELECT length_weight_of_missile FROM table_21012786_2 WHERE diameter_of_torsion_spring = "38.4cm"
### Context: CREATE TABLE table_21012786_2 (length_weight_of_missile VARCHAR, diameter_of_torsion_spring VARCHAR) ### Question: When the torsion spring diameter is 38.4cm what would be the length or weight of the missile ### Answer: SELECT length_weight_of_missile FROM table_21012786_2 WHERE diameter_of_torsion_spring = "38.4cm"
Who wrote the episode that had 8.84 million viewers?
CREATE TABLE table_21025437_5 (written_by VARCHAR, viewers__millions_ VARCHAR)
SELECT written_by FROM table_21025437_5 WHERE viewers__millions_ = "8.84"
### Context: CREATE TABLE table_21025437_5 (written_by VARCHAR, viewers__millions_ VARCHAR) ### Question: Who wrote the episode that had 8.84 million viewers? ### Answer: SELECT written_by FROM table_21025437_5 WHERE viewers__millions_ = "8.84"
How many million viewers watched episode number 20?
CREATE TABLE table_21025437_5 (viewers__millions_ VARCHAR, episode_no VARCHAR)
SELECT viewers__millions_ FROM table_21025437_5 WHERE episode_no = 20
### Context: CREATE TABLE table_21025437_5 (viewers__millions_ VARCHAR, episode_no VARCHAR) ### Question: How many million viewers watched episode number 20? ### Answer: SELECT viewers__millions_ FROM table_21025437_5 WHERE episode_no = 20
What was the title of the episode written by Keith Temple?
CREATE TABLE table_21025437_5 (title VARCHAR, written_by VARCHAR)
SELECT title FROM table_21025437_5 WHERE written_by = "Keith Temple"
### Context: CREATE TABLE table_21025437_5 (title VARCHAR, written_by VARCHAR) ### Question: What was the title of the episode written by Keith Temple? ### Answer: SELECT title FROM table_21025437_5 WHERE written_by = "Keith Temple"
what is the lowest value under the column series no.?
CREATE TABLE table_21025437_3 (series_no INTEGER)
SELECT MIN(series_no) FROM table_21025437_3
### Context: CREATE TABLE table_21025437_3 (series_no INTEGER) ### Question: what is the lowest value under the column series no.? ### Answer: SELECT MIN(series_no) FROM table_21025437_3
When there are 7.4 million viewers how many episodes are there?
CREATE TABLE table_2102945_1 (episode VARCHAR, viewers__in_millions_ VARCHAR)
SELECT COUNT(episode) FROM table_2102945_1 WHERE viewers__in_millions_ = "7.4"
### Context: CREATE TABLE table_2102945_1 (episode VARCHAR, viewers__in_millions_ VARCHAR) ### Question: When there are 7.4 million viewers how many episodes are there? ### Answer: SELECT COUNT(episode) FROM table_2102945_1 WHERE viewers__in_millions_ = "7.4"
When 24:31 is the run time how many measurements of viewers (in millions) are there?
CREATE TABLE table_2102945_1 (viewers__in_millions_ VARCHAR, run_time VARCHAR)
SELECT COUNT(viewers__in_millions_) FROM table_2102945_1 WHERE run_time = "24:31"
### Context: CREATE TABLE table_2102945_1 (viewers__in_millions_ VARCHAR, run_time VARCHAR) ### Question: When 24:31 is the run time how many measurements of viewers (in millions) are there? ### Answer: SELECT COUNT(viewers__in_millions_) FROM table_2102945_1 WHERE run_time = "24:31"
When 24:31 is the run time how many millions of viewers are there?
CREATE TABLE table_2102945_1 (viewers__in_millions_ VARCHAR, run_time VARCHAR)
SELECT viewers__in_millions_ FROM table_2102945_1 WHERE run_time = "24:31"
### Context: CREATE TABLE table_2102945_1 (viewers__in_millions_ VARCHAR, run_time VARCHAR) ### Question: When 24:31 is the run time how many millions of viewers are there? ### Answer: SELECT viewers__in_millions_ FROM table_2102945_1 WHERE run_time = "24:31"
When there are 7.5 million viewers what is the archive?
CREATE TABLE table_2102945_1 (archive VARCHAR, viewers__in_millions_ VARCHAR)
SELECT archive FROM table_2102945_1 WHERE viewers__in_millions_ = "7.5"
### Context: CREATE TABLE table_2102945_1 (archive VARCHAR, viewers__in_millions_ VARCHAR) ### Question: When there are 7.5 million viewers what is the archive? ### Answer: SELECT archive FROM table_2102945_1 WHERE viewers__in_millions_ = "7.5"
Name the broadcast network for saitama prefecture
CREATE TABLE table_21076286_2 (broadcast_network VARCHAR, broadcast_scope VARCHAR)
SELECT broadcast_network FROM table_21076286_2 WHERE broadcast_scope = "Saitama Prefecture"
### Context: CREATE TABLE table_21076286_2 (broadcast_network VARCHAR, broadcast_scope VARCHAR) ### Question: Name the broadcast network for saitama prefecture ### Answer: SELECT broadcast_network FROM table_21076286_2 WHERE broadcast_scope = "Saitama Prefecture"
Name the broadcast network for chiba prefecture
CREATE TABLE table_21076286_2 (broadcast_network VARCHAR, broadcast_scope VARCHAR)
SELECT broadcast_network FROM table_21076286_2 WHERE broadcast_scope = "Chiba Prefecture"
### Context: CREATE TABLE table_21076286_2 (broadcast_network VARCHAR, broadcast_scope VARCHAR) ### Question: Name the broadcast network for chiba prefecture ### Answer: SELECT broadcast_network FROM table_21076286_2 WHERE broadcast_scope = "Chiba Prefecture"
Name the broadcast day and timings for tv saitama
CREATE TABLE table_21076286_2 (broadcast_day_and_timings__in_jst__ VARCHAR, broadcast_network VARCHAR)
SELECT broadcast_day_and_timings__in_jst__ FROM table_21076286_2 WHERE broadcast_network = "TV Saitama"
### Context: CREATE TABLE table_21076286_2 (broadcast_day_and_timings__in_jst__ VARCHAR, broadcast_network VARCHAR) ### Question: Name the broadcast day and timings for tv saitama ### Answer: SELECT broadcast_day_and_timings__in_jst__ FROM table_21076286_2 WHERE broadcast_network = "TV Saitama"
Name the opponent for opponents being 12
CREATE TABLE table_21092427_1 (opponent VARCHAR, opponents VARCHAR)
SELECT opponent FROM table_21092427_1 WHERE opponents = 12
### Context: CREATE TABLE table_21092427_1 (opponent VARCHAR, opponents VARCHAR) ### Question: Name the opponent for opponents being 12 ### Answer: SELECT opponent FROM table_21092427_1 WHERE opponents = 12
Name the result for 9-1 record
CREATE TABLE table_21092427_1 (result VARCHAR, record VARCHAR)
SELECT result FROM table_21092427_1 WHERE record = "9-1"
### Context: CREATE TABLE table_21092427_1 (result VARCHAR, record VARCHAR) ### Question: Name the result for 9-1 record ### Answer: SELECT result FROM table_21092427_1 WHERE record = "9-1"
Name the most opponents for 8-1 record
CREATE TABLE table_21092427_1 (opponents INTEGER, record VARCHAR)
SELECT MAX(opponents) FROM table_21092427_1 WHERE record = "8-1"
### Context: CREATE TABLE table_21092427_1 (opponents INTEGER, record VARCHAR) ### Question: Name the most opponents for 8-1 record ### Answer: SELECT MAX(opponents) FROM table_21092427_1 WHERE record = "8-1"
How many seats in 2006 has a % 1997 rating of 38.9?
CREATE TABLE table_21132404_1 (seats_2006 VARCHAR, _percentage_1997 VARCHAR)
SELECT COUNT(seats_2006) FROM table_21132404_1 WHERE _percentage_1997 = "38.9"
### Context: CREATE TABLE table_21132404_1 (seats_2006 VARCHAR, _percentage_1997 VARCHAR) ### Question: How many seats in 2006 has a % 1997 rating of 38.9? ### Answer: SELECT COUNT(seats_2006) FROM table_21132404_1 WHERE _percentage_1997 = "38.9"
What was the % 2006 rating in 2006 where there were 5 seats?
CREATE TABLE table_21132404_1 (_percentage_2006 VARCHAR, seats_2006 VARCHAR)
SELECT _percentage_2006 FROM table_21132404_1 WHERE seats_2006 = 5
### Context: CREATE TABLE table_21132404_1 (_percentage_2006 VARCHAR, seats_2006 VARCHAR) ### Question: What was the % 2006 rating in 2006 where there were 5 seats? ### Answer: SELECT _percentage_2006 FROM table_21132404_1 WHERE seats_2006 = 5
How many time was the political party the social democratic party of germany?
CREATE TABLE table_21132404_1 (_percentage_2006 VARCHAR, political_parties VARCHAR)
SELECT COUNT(_percentage_2006) FROM table_21132404_1 WHERE political_parties = "Social Democratic Party of Germany"
### Context: CREATE TABLE table_21132404_1 (_percentage_2006 VARCHAR, political_parties VARCHAR) ### Question: How many time was the political party the social democratic party of germany? ### Answer: SELECT COUNT(_percentage_2006) FROM table_21132404_1 WHERE political_parties = "Social Democratic Party of Germany"
How many political parties had a %2006 rating of 43.5?
CREATE TABLE table_21132404_1 (political_parties VARCHAR, _percentage_2006 VARCHAR)
SELECT COUNT(political_parties) FROM table_21132404_1 WHERE _percentage_2006 = "43.5"
### Context: CREATE TABLE table_21132404_1 (political_parties VARCHAR, _percentage_2006 VARCHAR) ### Question: How many political parties had a %2006 rating of 43.5? ### Answer: SELECT COUNT(political_parties) FROM table_21132404_1 WHERE _percentage_2006 = "43.5"
How many seats were there in 2001 when there were 11 seats in 2006?
CREATE TABLE table_21132404_1 (seats_2001 INTEGER, seats_2006 VARCHAR)
SELECT MIN(seats_2001) FROM table_21132404_1 WHERE seats_2006 = 11
### Context: CREATE TABLE table_21132404_1 (seats_2001 INTEGER, seats_2006 VARCHAR) ### Question: How many seats were there in 2001 when there were 11 seats in 2006? ### Answer: SELECT MIN(seats_2001) FROM table_21132404_1 WHERE seats_2006 = 11
Name the won promotion for 1987
CREATE TABLE table_2119448_3 (won_promotion VARCHAR, season VARCHAR)
SELECT won_promotion FROM table_2119448_3 WHERE season = 1987
### Context: CREATE TABLE table_2119448_3 (won_promotion VARCHAR, season VARCHAR) ### Question: Name the won promotion for 1987 ### Answer: SELECT won_promotion FROM table_2119448_3 WHERE season = 1987
Name the won promotion for kalmar ff
CREATE TABLE table_2119448_3 (won_promotion VARCHAR, lost_promotion_playoffs VARCHAR)
SELECT won_promotion FROM table_2119448_3 WHERE lost_promotion_playoffs = "Kalmar FF"
### Context: CREATE TABLE table_2119448_3 (won_promotion VARCHAR, lost_promotion_playoffs VARCHAR) ### Question: Name the won promotion for kalmar ff ### Answer: SELECT won_promotion FROM table_2119448_3 WHERE lost_promotion_playoffs = "Kalmar FF"
If the matches for NQF is 2009, what is the position?
CREATE TABLE table_21223773_2 (position VARCHAR, matches_for_nqf VARCHAR)
SELECT position FROM table_21223773_2 WHERE matches_for_nqf = "2009"
### Context: CREATE TABLE table_21223773_2 (position VARCHAR, matches_for_nqf VARCHAR) ### Question: If the matches for NQF is 2009, what is the position? ### Answer: SELECT position FROM table_21223773_2 WHERE matches_for_nqf = "2009"
What was Robin's score when she was eliminated?
CREATE TABLE table_21234111_10 (robin VARCHAR, result VARCHAR)
SELECT robin FROM table_21234111_10 WHERE result = "Eliminated"
### Context: CREATE TABLE table_21234111_10 (robin VARCHAR, result VARCHAR) ### Question: What was Robin's score when she was eliminated? ### Answer: SELECT robin FROM table_21234111_10 WHERE result = "Eliminated"
What song did Robin perform with a result of 4.0?
CREATE TABLE table_21234111_10 (song VARCHAR, robin VARCHAR)
SELECT song FROM table_21234111_10 WHERE robin = "4.0"
### Context: CREATE TABLE table_21234111_10 (song VARCHAR, robin VARCHAR) ### Question: What song did Robin perform with a result of 4.0? ### Answer: SELECT song FROM table_21234111_10 WHERE robin = "4.0"
Among deaths 106 000 how many is crude rate.
CREATE TABLE table_21258_1 (crude_death_rate VARCHAR, deaths VARCHAR)
SELECT crude_death_rate FROM table_21258_1 WHERE deaths = "106 000"
### Context: CREATE TABLE table_21258_1 (crude_death_rate VARCHAR, deaths VARCHAR) ### Question: Among deaths 106 000 how many is crude rate. ### Answer: SELECT crude_death_rate FROM table_21258_1 WHERE deaths = "106 000"
where births is 388 000 how many number is natural increase
CREATE TABLE table_21258_1 (natural_increase VARCHAR, births VARCHAR)
SELECT COUNT(natural_increase) FROM table_21258_1 WHERE births = "388 000"
### Context: CREATE TABLE table_21258_1 (natural_increase VARCHAR, births VARCHAR) ### Question: where births is 388 000 how many number is natural increase ### Answer: SELECT COUNT(natural_increase) FROM table_21258_1 WHERE births = "388 000"
period between 1985 - 1990 have minimum infant mortality rate of what.
CREATE TABLE table_21258_1 (infant_mortality_rate INTEGER, period VARCHAR)
SELECT MIN(infant_mortality_rate) FROM table_21258_1 WHERE period = "1985 - 1990"
### Context: CREATE TABLE table_21258_1 (infant_mortality_rate INTEGER, period VARCHAR) ### Question: period between 1985 - 1990 have minimum infant mortality rate of what. ### Answer: SELECT MIN(infant_mortality_rate) FROM table_21258_1 WHERE period = "1985 - 1990"
How many winners scored exactly 202 (-11)?
CREATE TABLE table_21260421_1 (winner VARCHAR, score VARCHAR)
SELECT COUNT(winner) FROM table_21260421_1 WHERE score = "202 (-11)"
### Context: CREATE TABLE table_21260421_1 (winner VARCHAR, score VARCHAR) ### Question: How many winners scored exactly 202 (-11)? ### Answer: SELECT COUNT(winner) FROM table_21260421_1 WHERE score = "202 (-11)"
How many tournaments were held at Alabama?
CREATE TABLE table_21260421_1 (score VARCHAR, location VARCHAR)
SELECT COUNT(score) FROM table_21260421_1 WHERE location = "Alabama"
### Context: CREATE TABLE table_21260421_1 (score VARCHAR, location VARCHAR) ### Question: How many tournaments were held at Alabama? ### Answer: SELECT COUNT(score) FROM table_21260421_1 WHERE location = "Alabama"
Where was the tourney when Louisville won the regular season?
CREATE TABLE table_21269441_4 (tournament_venue__city_ VARCHAR, regular_season_winner VARCHAR)
SELECT tournament_venue__city_ FROM table_21269441_4 WHERE regular_season_winner = "Louisville"
### Context: CREATE TABLE table_21269441_4 (tournament_venue__city_ VARCHAR, regular_season_winner VARCHAR) ### Question: Where was the tourney when Louisville won the regular season? ### Answer: SELECT tournament_venue__city_ FROM table_21269441_4 WHERE regular_season_winner = "Louisville"
Where was the tourney when UCLA won the regular season?
CREATE TABLE table_21269441_4 (tournament_venue__city_ VARCHAR, regular_season_winner VARCHAR)
SELECT tournament_venue__city_ FROM table_21269441_4 WHERE regular_season_winner = "UCLA"
### Context: CREATE TABLE table_21269441_4 (tournament_venue__city_ VARCHAR, regular_season_winner VARCHAR) ### Question: Where was the tourney when UCLA won the regular season? ### Answer: SELECT tournament_venue__city_ FROM table_21269441_4 WHERE regular_season_winner = "UCLA"
Where was the tourney when Weber State won the regular season?
CREATE TABLE table_21269441_4 (tournament_venue__city_ VARCHAR, regular_season_winner VARCHAR)
SELECT tournament_venue__city_ FROM table_21269441_4 WHERE regular_season_winner = "Weber State"
### Context: CREATE TABLE table_21269441_4 (tournament_venue__city_ VARCHAR, regular_season_winner VARCHAR) ### Question: Where was the tourney when Weber State won the regular season? ### Answer: SELECT tournament_venue__city_ FROM table_21269441_4 WHERE regular_season_winner = "Weber State"
Which drivers won $40,000 in the NASCAR Winston Cup?
CREATE TABLE table_21297652_1 (driver VARCHAR, series VARCHAR, winnings VARCHAR)
SELECT driver FROM table_21297652_1 WHERE series = "NASCAR Winston Cup" AND winnings = "$40,000"
### Context: CREATE TABLE table_21297652_1 (driver VARCHAR, series VARCHAR, winnings VARCHAR) ### Question: Which drivers won $40,000 in the NASCAR Winston Cup? ### Answer: SELECT driver FROM table_21297652_1 WHERE series = "NASCAR Winston Cup" AND winnings = "$40,000"
What series is at the position 7?
CREATE TABLE table_21297652_1 (series VARCHAR, position VARCHAR)
SELECT series FROM table_21297652_1 WHERE position = 7
### Context: CREATE TABLE table_21297652_1 (series VARCHAR, position VARCHAR) ### Question: What series is at the position 7? ### Answer: SELECT series FROM table_21297652_1 WHERE position = 7
In what series did the driver get 30 points?
CREATE TABLE table_21297652_1 (series VARCHAR, points VARCHAR)
SELECT series FROM table_21297652_1 WHERE points = 30
### Context: CREATE TABLE table_21297652_1 (series VARCHAR, points VARCHAR) ### Question: In what series did the driver get 30 points? ### Answer: SELECT series FROM table_21297652_1 WHERE points = 30
How much did Dale Jarrett win?
CREATE TABLE table_21297652_1 (winnings VARCHAR, driver VARCHAR)
SELECT winnings FROM table_21297652_1 WHERE driver = "Dale Jarrett"
### Context: CREATE TABLE table_21297652_1 (winnings VARCHAR, driver VARCHAR) ### Question: How much did Dale Jarrett win? ### Answer: SELECT winnings FROM table_21297652_1 WHERE driver = "Dale Jarrett"