training_input stringlengths 118 1.06k |
|---|
###context:CREATE TABLE table_22078972_2 (us_viewers__millions_ VARCHAR, no_in_series VARCHAR)
###human: How many millions of people in the US saw the episode with series number 103?
###assistant: SELECT us_viewers__millions_ FROM table_22078972_2 WHERE no_in_series = 103 |
###context:CREATE TABLE table_22078906_2 (no_in_series VARCHAR, us_viewers__millions_ VARCHAR)
###human: What number episode in the series was watched by 15.89 million U.S. viewers?
###assistant: SELECT no_in_series FROM table_22078906_2 WHERE us_viewers__millions_ = "15.89" |
###context:CREATE TABLE table_22078906_2 (title VARCHAR, directed_by VARCHAR)
###human: What is the title of the episode directed by William Webb?
###assistant: SELECT title FROM table_22078906_2 WHERE directed_by = "William Webb" |
###context:CREATE TABLE table_2208838_2 (result VARCHAR, runner_up VARCHAR)
###human: What was the final score when River Plate was the runner-up?
###assistant: SELECT result FROM table_2208838_2 WHERE runner_up = "River Plate" |
###context:CREATE TABLE table_22097588_9 (spent_per_voter___php__ VARCHAR, amount_spent___php__ VARCHAR)
###human: What was spent per voter when total amount spent was 210,280,000?
###assistant: SELECT spent_per_voter___php__ FROM table_22097588_9 WHERE amount_spent___php__ = "210,280,000" |
###context:CREATE TABLE table_22097588_9 (spent_per_voter___php__ VARCHAR, spent_per_vote___php__ VARCHAR)
###human: What was spent per voter when the spent per vote was 20.07?
###assistant: SELECT spent_per_voter___php__ FROM table_22097588_9 WHERE spent_per_vote___php__ = "20.07" |
###context:CREATE TABLE table_22123920_4 (shows___sellout VARCHAR, sellout___percentage_ VARCHAR)
###human: Between November 25–30, 2008 the sellout rate was at 75%, indicating that the ration between shows to sellout was what?
###assistant: SELECT shows___sellout FROM table_22123920_4 WHERE sellout___percentag... |
###context:CREATE TABLE table_22123920_4 (tickets_sold___available VARCHAR, gross_sales VARCHAR)
###human: During the period in which gross sales totals for "The Show Girl Must Go On" reached $2,628,457, what did the numbers show for tickets sold/ available at the box office?
###assistant: SELECT tickets_sold_... |
###context:CREATE TABLE table_22123920_4 (dates__mdy_ VARCHAR, gross_sales VARCHAR)
###human: Which specific dates encompass the time period when "The Show Girl Must Go On" showed a gross sales figure total of $2,877,906?
###assistant: SELECT dates__mdy_ FROM table_22123920_4 WHERE gross_sales = "$2,877,906" |
###context:CREATE TABLE table_22102732_1 (year__ceremony_ VARCHAR, english_title VARCHAR)
###human: What year and the corresponding ceremony was the english titled movie "time out" submitted?
###assistant: SELECT year__ceremony_ FROM table_22102732_1 WHERE english_title = "Time Out" |
###context:CREATE TABLE table_22102732_1 (english_title VARCHAR, director VARCHAR)
###human: How many english titles were directed by carlos moreno?
###assistant: SELECT COUNT(english_title) FROM table_22102732_1 WHERE director = "Carlos Moreno" |
###context:CREATE TABLE table_22098274_1 (rank_number VARCHAR, winning_pitcher VARCHAR)
###human: What is the rank # of kelli miller the winning pitcher?
###assistant: SELECT rank_number FROM table_22098274_1 WHERE winning_pitcher = "Kelli Miller" |
###context:CREATE TABLE table_22098274_1 (site VARCHAR, date VARCHAR)
###human: How many number of site have May 1, 2004 as the date?
###assistant: SELECT COUNT(site) FROM table_22098274_1 WHERE date = "May 1, 2004" |
###context:CREATE TABLE table_22098274_1 (time VARCHAR, site VARCHAR, result VARCHAR)
###human: At what time is the site usf softball field • tampa, fl and w4-0 is the result?
###assistant: SELECT time FROM table_22098274_1 WHERE site = "USF Softball Field • Tampa, FL" AND result = "W4-0" |
###context:CREATE TABLE table_22118197_1 (result VARCHAR, english_title VARCHAR)
###human: What was the result for the film with the English name of Morning Undersea?
###assistant: SELECT result FROM table_22118197_1 WHERE english_title = "Morning Undersea" |
###context:CREATE TABLE table_22118197_1 (result VARCHAR, portuguese_title VARCHAR)
###human: What was the result of the film with the Portuguese title, Um Filme Falado?
###assistant: SELECT result FROM table_22118197_1 WHERE portuguese_title = "Um Filme Falado" |
###context:CREATE TABLE table_22118197_1 (portuguese_title VARCHAR, english_title VARCHAR)
###human: What is the Portuguese name of the film who's English title is, Belle Toujours?
###assistant: SELECT portuguese_title FROM table_22118197_1 WHERE english_title = "Belle Toujours" |
###context:CREATE TABLE table_22128871_1 (result VARCHAR, year__ceremony_ VARCHAR)
###human: What is every result for the ceremony year of 2007 (80th)?
###assistant: SELECT result FROM table_22128871_1 WHERE year__ceremony_ = "2007 (80th)" |
###context:CREATE TABLE table_22128871_1 (english_title VARCHAR, result VARCHAR)
###human: What is every English title for the result of nominee?
###assistant: SELECT english_title FROM table_22128871_1 WHERE result = "Nominee" |
###context:CREATE TABLE table_22128871_1 (director VARCHAR, vietnamese_title VARCHAR)
###human: How many directors have vietnamese titles of Gate, Gate, Paragate?
###assistant: SELECT COUNT(director) FROM table_22128871_1 WHERE vietnamese_title = "Gate, gate, paragate" |
###context:CREATE TABLE table_22128871_1 (year__ceremony_ VARCHAR, result VARCHAR)
###human: What is every ceremony year for the result of nominee?
###assistant: SELECT year__ceremony_ FROM table_22128871_1 WHERE result = "Nominee" |
###context:CREATE TABLE table_221315_3 (pilot VARCHAR, max_altitude__miles_ VARCHAR)
###human: Who was the pilot of max altitude of 55.9 miles?
###assistant: SELECT pilot FROM table_221315_3 WHERE max_altitude__miles_ = "55.9" |
###context:CREATE TABLE table_221315_3 (fai_space_flights INTEGER, max_mach VARCHAR)
###human: What is the highest number of fai space flights when max mach is 5.65?
###assistant: SELECT MAX(fai_space_flights) FROM table_221315_3 WHERE max_mach = "5.65" |
###context:CREATE TABLE table_221315_3 (max_altitude__miles_ VARCHAR, pilot VARCHAR)
###human: What was the maximum altitude for Neil Armstrong?
###assistant: SELECT max_altitude__miles_ FROM table_221315_3 WHERE pilot = "Neil Armstrong" |
###context:CREATE TABLE table_221315_3 (max_speed__mph_ VARCHAR, usaf_space_flights VARCHAR, total_flights VARCHAR)
###human: How many numbers were recorded under max speed for 1 USAF space flight and total flights 34?
###assistant: SELECT COUNT(max_speed__mph_) FROM table_221315_3 WHERE usaf_space_flights = 1 ... |
###context:CREATE TABLE table_221315_3 (usaf_space_flights VARCHAR, max_speed__mph_ VARCHAR)
###human: What were all USAF space flights when the aximum speed was 3822?
###assistant: SELECT usaf_space_flights FROM table_221315_3 WHERE max_speed__mph_ = 3822 |
###context:CREATE TABLE table_221315_3 (max_mach VARCHAR, max_speed__mph_ VARCHAR)
###human: What was the max mach when the maximum speed was 3887?
###assistant: SELECT max_mach FROM table_221315_3 WHERE max_speed__mph_ = 3887 |
###context:CREATE TABLE table_2214582_1 (away_leg VARCHAR, round VARCHAR, aggregate VARCHAR)
###human: What is the record for the away leg in round 1 and aggregate 2-0?
###assistant: SELECT away_leg FROM table_2214582_1 WHERE round = 1 AND aggregate = "2-0" |
###context:CREATE TABLE table_221375_1 (parishes VARCHAR, province_of_1936 VARCHAR)
###human: Name the parishes for beira baixa province
###assistant: SELECT COUNT(parishes) FROM table_221375_1 WHERE province_of_1936 = "Beira Baixa Province" |
###context:CREATE TABLE table_221375_1 (municipalities INTEGER, province_of_1936 VARCHAR)
###human: Name the most municipalities for alto alentejo province (partly ribatejo)
###assistant: SELECT MAX(municipalities) FROM table_221375_1 WHERE province_of_1936 = "Alto Alentejo Province (partly Ribatejo)" |
###context:CREATE TABLE table_221375_1 (province_of_1936 VARCHAR, district VARCHAR)
###human: Name province of 1936 viana do castelo
###assistant: SELECT province_of_1936 FROM table_221375_1 WHERE district = "Viana do Castelo" |
###context:CREATE TABLE table_2215159_2 (score VARCHAR, partner VARCHAR)
###human: What was the score when the partner is Rafael Osuna?
###assistant: SELECT score FROM table_2215159_2 WHERE partner = "Rafael Osuna" |
###context:CREATE TABLE table_2215159_2 (outcome VARCHAR, partner VARCHAR)
###human: What was the outcome of the game when the partner is Rafael Osuna?
###assistant: SELECT outcome FROM table_2215159_2 WHERE partner = "Rafael Osuna" |
###context:CREATE TABLE table_2215159_2 (surface VARCHAR, championship VARCHAR)
###human: What is the surface of the French Championships?
###assistant: SELECT surface FROM table_2215159_2 WHERE championship = "French championships" |
###context:CREATE TABLE table_2215159_2 (outcome VARCHAR, year VARCHAR, surface VARCHAR, partner VARCHAR)
###human: How many outcomes were there for matches played with Chuck McKinley on grass in 1962?
###assistant: SELECT COUNT(outcome) FROM table_2215159_2 WHERE surface = "Grass" AND partner = "Chuck McKinley... |
###context:CREATE TABLE table_2214582_3 (home_leg VARCHAR, opponents VARCHAR)
###human: What was the home leg score against partizani tirana?
###assistant: SELECT home_leg FROM table_2214582_3 WHERE opponents = "Partizani Tirana" |
###context:CREATE TABLE table_2214582_3 (round VARCHAR, opponents VARCHAR)
###human: What round did they face fc st. gallen?
###assistant: SELECT COUNT(round) FROM table_2214582_3 WHERE opponents = "FC St. Gallen" |
###context:CREATE TABLE table_2214582_3 (home_leg VARCHAR, opponents VARCHAR)
###human: What was the home leg score against fc schalke 04?
###assistant: SELECT home_leg FROM table_2214582_3 WHERE opponents = "FC Schalke 04" |
###context:CREATE TABLE table_22167196_1 (dfb_pokal VARCHAR, player VARCHAR)
###human: How many dfb-pokal did kevin-prince boateng have?
###assistant: SELECT COUNT(dfb_pokal) FROM table_22167196_1 WHERE player = "Kevin-Prince Boateng" |
###context:CREATE TABLE table_22165661_3 (head_coach VARCHAR, championship_game_opponent VARCHAR)
###human: Who is the head coach when Miami University is the championship game opponent?
###assistant: SELECT head_coach FROM table_22165661_3 WHERE championship_game_opponent = "Miami University" |
###context:CREATE TABLE table_22165661_3 (location VARCHAR, score VARCHAR)
###human: What is the location when 2-1 is the score?
###assistant: SELECT location FROM table_22165661_3 WHERE score = "2-1" |
###context:CREATE TABLE table_22165661_3 (conference VARCHAR, championship_game_opponent VARCHAR)
###human: What is the conference when Ferris State is the championship game opponent?
###assistant: SELECT conference FROM table_22165661_3 WHERE championship_game_opponent = "Ferris State" |
###context:CREATE TABLE table_22165661_3 (location VARCHAR, tournament VARCHAR)
###human: What is the location of the 1999 tournament?
###assistant: SELECT location FROM table_22165661_3 WHERE tournament = 1999 |
###context:CREATE TABLE table_22165661_3 (score VARCHAR, championship_game_opponent VARCHAR)
###human: How many scores are there when the championship game opponent is Miami University?
###assistant: SELECT COUNT(score) FROM table_22165661_3 WHERE championship_game_opponent = "Miami University" |
###context:CREATE TABLE table_22165661_3 (head_coach VARCHAR, score VARCHAR)
###human: Who is the head coach for the score of 4-3?
###assistant: SELECT head_coach FROM table_22165661_3 WHERE score = "4-3" |
###context:CREATE TABLE table_221653_1 (bleeding_time VARCHAR, platelet_count VARCHAR)
###human: What is the bleeding time when the platelet count is decreased or unaffected?
###assistant: SELECT bleeding_time FROM table_221653_1 WHERE platelet_count = "Decreased or unaffected" |
###context:CREATE TABLE table_221653_1 (partial_thromboplastin_time VARCHAR, condition VARCHAR)
###human: What is the partial thromboplastin time when the condition factor x deficiency as seen in amyloid purpura?
###assistant: SELECT partial_thromboplastin_time FROM table_221653_1 WHERE condition = "Factor X d... |
###context:CREATE TABLE table_221653_1 (platelet_count VARCHAR, prothrombin_time VARCHAR, bleeding_time VARCHAR)
###human: How many time does the platelet count occur when prothrombin time and bleeding time are prolonged?
###assistant: SELECT COUNT(platelet_count) FROM table_221653_1 WHERE prothrombin_time = "P... |
###context:CREATE TABLE table_221653_1 (bleeding_time VARCHAR, condition VARCHAR)
###human: What is the bleeding time for the disseminated intravascular coagulation condition?
###assistant: SELECT COUNT(bleeding_time) FROM table_221653_1 WHERE condition = "Disseminated intravascular coagulation" |
###context:CREATE TABLE table_221653_1 (partial_thromboplastin_time VARCHAR, prothrombin_time VARCHAR, bleeding_time VARCHAR)
###human: What is the result for partial thromboplastin time when prothrombin time and bleeding time are prolonged?
###assistant: SELECT partial_thromboplastin_time FROM table_221653_1 W... |
###context:CREATE TABLE table_221653_1 (platelet_count VARCHAR, partial_thromboplastin_time VARCHAR, bleeding_time VARCHAR)
###human: What is the platelet count when partial thromboplastin time and bleeding time are unaffected?
###assistant: SELECT platelet_count FROM table_221653_1 WHERE partial_thromboplastin... |
###context:CREATE TABLE table_22170495_7 (top_50_ranking INTEGER, title VARCHAR)
###human: What is the lowest top 50 ranking that the episode titled "the god-why-don't-you-love-me blues" received?
###assistant: SELECT MIN(top_50_ranking) FROM table_22170495_7 WHERE title = "The God-Why-Don't-You-Love-Me Blues" |
###context:CREATE TABLE table_22170495_7 (title VARCHAR, original_airing VARCHAR)
###human: Which episodes originally aired on April 19, 2010?
###assistant: SELECT title FROM table_22170495_7 WHERE original_airing = "April 19, 2010" |
###context:CREATE TABLE table_22170495_7 (scripted_show_ranking INTEGER, title VARCHAR)
###human: The episode titled "Epiphany" received what scripted show ranking?
###assistant: SELECT MIN(scripted_show_ranking) FROM table_22170495_7 WHERE title = "Epiphany" |
###context:CREATE TABLE table_22170495_7 (top_50_ranking VARCHAR, original_airing VARCHAR)
###human: How many of the episodes in the top 50 rankings were originally aired on June 28, 2010?
###assistant: SELECT COUNT(top_50_ranking) FROM table_22170495_7 WHERE original_airing = "June 28, 2010" |
###context:CREATE TABLE table_22171978_1 (athletic_nickname VARCHAR, location VARCHAR)
###human: For the location of quezon city , metro manila what is the athletic nickname?
###assistant: SELECT athletic_nickname FROM table_22171978_1 WHERE location = "Quezon City , Metro Manila" |
###context:CREATE TABLE table_22171978_1 (location VARCHAR, athletic_nickname VARCHAR)
###human: How many locations are there for the athletic nickname is blue crusaders?
###assistant: SELECT COUNT(location) FROM table_22171978_1 WHERE athletic_nickname = "Blue Crusaders" |
###context:CREATE TABLE table_22171978_1 (school_colors VARCHAR, location VARCHAR)
###human: How many entries are shown for school colors for the location of naga , camarines sur?
###assistant: SELECT COUNT(school_colors) FROM table_22171978_1 WHERE location = "Naga , Camarines Sur" |
###context:CREATE TABLE table_22171978_1 (enrollment VARCHAR, athletic_nickname VARCHAR)
###human: For the athletic nickname of golden knights how many entries are shown for enrollment?
###assistant: SELECT COUNT(enrollment) FROM table_22171978_1 WHERE athletic_nickname = "Golden Knights" |
###context:CREATE TABLE table_22171978_1 (founded VARCHAR, institution VARCHAR)
###human: What year was the ateneo de manila university founded?
###assistant: SELECT founded FROM table_22171978_1 WHERE institution = "Ateneo de Manila University" |
###context:CREATE TABLE table_22171978_1 (founded VARCHAR, athletic_nickname VARCHAR)
###human: What year was the athletic nickname blue crusaders founded?
###assistant: SELECT founded FROM table_22171978_1 WHERE athletic_nickname = "Blue Crusaders" |
###context:CREATE TABLE table_22181917_2 (original_air_date VARCHAR, season__number VARCHAR)
###human: How many original airdates did season 20 have?
###assistant: SELECT COUNT(original_air_date) FROM table_22181917_2 WHERE season__number = 20 |
###context:CREATE TABLE table_22181917_2 (directed_by VARCHAR, us_viewers__millions_ VARCHAR)
###human: Who directed the episode that was watched by 6.62 million U.S. viewers?
###assistant: SELECT directed_by FROM table_22181917_2 WHERE us_viewers__millions_ = "6.62" |
###context:CREATE TABLE table_22181917_2 (production_code VARCHAR, us_viewers__millions_ VARCHAR)
###human: What is the production code for the episode with 8.56 million U.S. viewers?
###assistant: SELECT production_code FROM table_22181917_2 WHERE us_viewers__millions_ = "8.56" |
###context:CREATE TABLE table_22181917_2 (title VARCHAR, us_viewers__millions_ VARCHAR)
###human: What is the title of the episode that had 9.76 million U.S. viewers?
###assistant: SELECT title FROM table_22181917_2 WHERE us_viewers__millions_ = "9.76" |
###context:CREATE TABLE table_22170495_6 (title VARCHAR, original_airing_on_e4 VARCHAR)
###human: What is the title of the original airing on e4 May 2, 2010?
###assistant: SELECT title FROM table_22170495_6 WHERE original_airing_on_e4 = "May 2, 2010" |
###context:CREATE TABLE table_22170495_6 (total_viewers VARCHAR, original_airing_on_channel_4 VARCHAR)
###human: How many total viewers have April 21, 2010 as the original airing on channel 4?
###assistant: SELECT COUNT(total_viewers) FROM table_22170495_6 WHERE original_airing_on_channel_4 = "April 21, 2010" |
###context:CREATE TABLE table_22170495_6 (position_in_e4s_ratings_b VARCHAR, original_airing_on_channel_4 VARCHAR)
###human: What is the position in e4s ratings b when June 30, 2010 is the original airing on channel 4?
###assistant: SELECT position_in_e4s_ratings_b FROM table_22170495_6 WHERE original_airing_on... |
###context:CREATE TABLE table_22170495_6 (original_airing_on_channel_4 VARCHAR, title VARCHAR)
###human: When is the original airing on channel 4 with being alive as the title?
###assistant: SELECT original_airing_on_channel_4 FROM table_22170495_6 WHERE title = "Being Alive" |
###context:CREATE TABLE table_22170495_6 (position_in_channel_4s_ratings_a VARCHAR, original_airing_on_channel_4 VARCHAR)
###human: How many position in channel 4s ratings a have February 24, 2010 as the original airing on channel 4?
###assistant: SELECT COUNT(position_in_channel_4s_ratings_a) FROM table_221704... |
###context:CREATE TABLE table_22180353_1 (type VARCHAR, registration VARCHAR)
###human: What are all types where registration is HB-OPU?
###assistant: SELECT type FROM table_22180353_1 WHERE registration = "HB-OPU" |
###context:CREATE TABLE table_22180353_1 (registration VARCHAR, type VARCHAR)
###human: What is every registration for the type of T 6 G?
###assistant: SELECT registration FROM table_22180353_1 WHERE type = "T 6 G" |
###context:CREATE TABLE table_22180353_1 (construction VARCHAR, registration VARCHAR)
###human: What is every construction date for the registration of HB-HOS?
###assistant: SELECT construction AS date FROM table_22180353_1 WHERE registration = "HB-HOS" |
###context:CREATE TABLE table_22180353_1 (conformity_to_original_design VARCHAR, registration VARCHAR)
###human: What is every conformity to original design if registration is HB-DAI?
###assistant: SELECT conformity_to_original_design FROM table_22180353_1 WHERE registration = "HB-DAI" |
###context:CREATE TABLE table_2219961_2 (season__number INTEGER, director VARCHAR)
###human: What is the latest season number that Eric Tuchman directed?
###assistant: SELECT MAX(season__number) FROM table_2219961_2 WHERE director = "Eric Tuchman" |
###context:CREATE TABLE table_2219961_2 (season__number VARCHAR, nbc_airdate VARCHAR)
###human: How man seasons have the air date of October 2, 2001?
###assistant: SELECT COUNT(season__number) FROM table_2219961_2 WHERE nbc_airdate = "October 2, 2001" |
###context:CREATE TABLE table_2220432_1 (report VARCHAR, team VARCHAR)
###human: What was the report in the race where the winning team was Roush Fenway Racing?
###assistant: SELECT report FROM table_2220432_1 WHERE team = "Roush Fenway Racing" |
###context:CREATE TABLE table_2220432_1 (miles__km_ VARCHAR, average_speed__mph_ VARCHAR)
###human: What was the miles (km) for the race that had an average speed of 136.117 MPH?
###assistant: SELECT miles__km_ FROM table_2220432_1 WHERE average_speed__mph_ = "136.117" |
###context:CREATE TABLE table_2226343_1 (miles__km_ VARCHAR, date VARCHAR)
###human: What are the miles when February 25 is the date?
###assistant: SELECT miles__km_ FROM table_2226343_1 WHERE date = "February 25" |
###context:CREATE TABLE table_2226343_1 (laps VARCHAR, average_speed__mph_ VARCHAR)
###human: How many laps have an average speed of 141.911?
###assistant: SELECT laps FROM table_2226343_1 WHERE average_speed__mph_ = "141.911" |
###context:CREATE TABLE table_2226343_1 (manufacturer VARCHAR, average_speed__mph_ VARCHAR)
###human: Who is the manufacturer when 150.088 is the average speed (mph)?
###assistant: SELECT manufacturer FROM table_2226343_1 WHERE average_speed__mph_ = "150.088" |
###context:CREATE TABLE table_2226343_1 (manufacturer VARCHAR, date VARCHAR)
###human: Who is the manufacturer for the date of June 22?
###assistant: SELECT manufacturer FROM table_2226343_1 WHERE date = "June 22" |
###context:CREATE TABLE table_2226343_1 (laps VARCHAR, race_time VARCHAR)
###human: How many laps have a race time of 3:31:24?
###assistant: SELECT laps FROM table_2226343_1 WHERE race_time = "3:31:24" |
###context:CREATE TABLE table_2226343_1 (laps VARCHAR, average_speed__mph_ VARCHAR)
###human: How many laps have an average speed (mph) of 140.22?
###assistant: SELECT laps FROM table_2226343_1 WHERE average_speed__mph_ = "140.22" |
###context:CREATE TABLE table_22265716_1 (director VARCHAR, original_title VARCHAR)
###human: Who directed the film with the original title of три летња дана?
###assistant: SELECT director FROM table_22265716_1 WHERE original_title = "Три летња дана" |
###context:CREATE TABLE table_22265716_1 (director VARCHAR, film_title_used_in_nomination VARCHAR)
###human: Who directed the film with the title three summer days?
###assistant: SELECT director FROM table_22265716_1 WHERE film_title_used_in_nomination = "Three Summer Days" |
###context:CREATE TABLE table_22265716_1 (director VARCHAR, original_title VARCHAR)
###human: Who is the director of the film with the title лепа села лепо горе?
###assistant: SELECT director FROM table_22265716_1 WHERE original_title = "Лепа села лепо горе" |
###context:CREATE TABLE table_22261877_1 (us_viewers__million_ VARCHAR, production_code VARCHAR)
###human: How many viewers in millions watched the episode with the production code 6acx16?
###assistant: SELECT us_viewers__million_ FROM table_22261877_1 WHERE production_code = "6ACX16" |
###context:CREATE TABLE table_22261877_1 (original_air_date VARCHAR, production_code VARCHAR)
###human: What is the air date of the episode with the production code 6acx19?
###assistant: SELECT original_air_date FROM table_22261877_1 WHERE production_code = "6ACX19" |
###context:CREATE TABLE table_2226817_2 (original_air_date VARCHAR, production_code VARCHAR)
###human: What is the original air date for the production code of 1.12?
###assistant: SELECT original_air_date FROM table_2226817_2 WHERE production_code = "1.12" |
###context:CREATE TABLE table_2226817_2 (no_in_series VARCHAR, production_code VARCHAR)
###human: How many number of series have a production code of 1.11?
###assistant: SELECT no_in_series FROM table_2226817_2 WHERE production_code = "1.11" |
###context:CREATE TABLE table_2226817_2 (no_in_series INTEGER, production_code VARCHAR)
###human: How many number of series have the production code of 1.11?
###assistant: SELECT MAX(no_in_series) FROM table_2226817_2 WHERE production_code = "1.11" |
###context:CREATE TABLE table_2226817_2 (written_by VARCHAR, original_air_date VARCHAR)
###human: Who wrote when the original airdate is April 5, 1987?
###assistant: SELECT written_by FROM table_2226817_2 WHERE original_air_date = "April 5, 1987" |
###context:CREATE TABLE table_2226817_2 (directed_by VARCHAR, production_code VARCHAR)
###human: Who directed when the production code is 1.02?
###assistant: SELECT directed_by FROM table_2226817_2 WHERE production_code = "1.02" |
###context:CREATE TABLE table_2226817_4 (production_code VARCHAR, original_air_date VARCHAR)
###human: Name the production code for november 27, 1988
###assistant: SELECT production_code FROM table_2226817_4 WHERE original_air_date = "November 27, 1988" |
###context:CREATE TABLE table_2226817_4 (original_air_date VARCHAR, production_code VARCHAR)
###human: Name the original air date for 3.04 production code
###assistant: SELECT original_air_date FROM table_2226817_4 WHERE production_code = "3.04" |
###context:CREATE TABLE table_2226817_4 (written_by VARCHAR, original_air_date VARCHAR)
###human: Name who wrote the episode that aired april 9, 1989
###assistant: SELECT written_by FROM table_2226817_4 WHERE original_air_date = "April 9, 1989" |
###context:CREATE TABLE table_2226817_4 (no_in_season VARCHAR, production_code VARCHAR)
###human: Name the number of number in season for 3.09
###assistant: SELECT COUNT(no_in_season) FROM table_2226817_4 WHERE production_code = "3.09" |
###context:CREATE TABLE table_2226817_12 (original_air_date VARCHAR, production_code VARCHAR)
###human: when was the episode premiere if the production code is 11.19?
###assistant: SELECT COUNT(original_air_date) FROM table_2226817_12 WHERE production_code = "11.19" |
###context:CREATE TABLE table_2226817_12 (title VARCHAR, original_air_date VARCHAR)
###human: what is the name of the episode whose premiere was in march 2, 1997?
###assistant: SELECT title FROM table_2226817_12 WHERE original_air_date = "March 2, 1997" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.