Unnamed: 0
int64 0
60k
| input
stringlengths 76
562
| answer
stringlengths 18
557
|
---|---|---|
35,100 |
<question>: How many millions of people in the US saw the episode with series number 103? <context>: CREATE TABLE table_22078972_2 (us_viewers__millions_ VARCHAR, no_in_series VARCHAR)
|
SELECT us_viewers__millions_ FROM table_22078972_2 WHERE no_in_series = 103
|
35,101 |
<question>: What number episode in the series was watched by 15.89 million U.S. viewers? <context>: CREATE TABLE table_22078906_2 (no_in_series VARCHAR, us_viewers__millions_ VARCHAR)
|
SELECT no_in_series FROM table_22078906_2 WHERE us_viewers__millions_ = "15.89"
|
35,102 |
<question>: What is the title of the episode directed by William Webb? <context>: CREATE TABLE table_22078906_2 (title VARCHAR, directed_by VARCHAR)
|
SELECT title FROM table_22078906_2 WHERE directed_by = "William Webb"
|
35,103 |
<question>: What was the final score when River Plate was the runner-up? <context>: CREATE TABLE table_2208838_2 (result VARCHAR, runner_up VARCHAR)
|
SELECT result FROM table_2208838_2 WHERE runner_up = "River Plate"
|
35,104 |
<question>: What was spent per voter when total amount spent was 210,280,000? <context>: CREATE TABLE table_22097588_9 (spent_per_voter___php__ VARCHAR, amount_spent___php__ VARCHAR)
|
SELECT spent_per_voter___php__ FROM table_22097588_9 WHERE amount_spent___php__ = "210,280,000"
|
35,105 |
<question>: What was spent per voter when the spent per vote was 20.07? <context>: CREATE TABLE table_22097588_9 (spent_per_voter___php__ VARCHAR, spent_per_vote___php__ VARCHAR)
|
SELECT spent_per_voter___php__ FROM table_22097588_9 WHERE spent_per_vote___php__ = "20.07"
|
35,106 |
<question>: Between November 25–30, 2008 the sellout rate was at 75%, indicating that the ration between shows to sellout was what? <context>: CREATE TABLE table_22123920_4 (shows___sellout VARCHAR, sellout___percentage_ VARCHAR)
|
SELECT shows___sellout FROM table_22123920_4 WHERE sellout___percentage_ = "75%"
|
35,107 |
<question>: 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? <context>: CREATE TABLE table_22123920_4 (tickets_sold___available VARCHAR, gross_sales VARCHAR)
|
SELECT tickets_sold___available FROM table_22123920_4 WHERE gross_sales = "$2,628,457"
|
35,108 |
<question>: Which specific dates encompass the time period when "The Show Girl Must Go On" showed a gross sales figure total of $2,877,906? <context>: CREATE TABLE table_22123920_4 (dates__mdy_ VARCHAR, gross_sales VARCHAR)
|
SELECT dates__mdy_ FROM table_22123920_4 WHERE gross_sales = "$2,877,906"
|
35,109 |
<question>: What year and the corresponding ceremony was the english titled movie "time out" submitted? <context>: CREATE TABLE table_22102732_1 (year__ceremony_ VARCHAR, english_title VARCHAR)
|
SELECT year__ceremony_ FROM table_22102732_1 WHERE english_title = "Time Out"
|
35,110 |
<question>: How many english titles were directed by carlos moreno? <context>: CREATE TABLE table_22102732_1 (english_title VARCHAR, director VARCHAR)
|
SELECT COUNT(english_title) FROM table_22102732_1 WHERE director = "Carlos Moreno"
|
35,111 |
<question>: What is the rank # of kelli miller the winning pitcher? <context>: CREATE TABLE table_22098274_1 (rank_number VARCHAR, winning_pitcher VARCHAR)
|
SELECT rank_number FROM table_22098274_1 WHERE winning_pitcher = "Kelli Miller"
|
35,112 |
<question>: How many number of site have May 1, 2004 as the date? <context>: CREATE TABLE table_22098274_1 (site VARCHAR, date VARCHAR)
|
SELECT COUNT(site) FROM table_22098274_1 WHERE date = "May 1, 2004"
|
35,113 |
<question>: At what time is the site usf softball field • tampa, fl and w4-0 is the result? <context>: CREATE TABLE table_22098274_1 (time VARCHAR, site VARCHAR, result VARCHAR)
|
SELECT time FROM table_22098274_1 WHERE site = "USF Softball Field • Tampa, FL" AND result = "W4-0"
|
35,114 |
<question>: What was the result for the film with the English name of Morning Undersea? <context>: CREATE TABLE table_22118197_1 (result VARCHAR, english_title VARCHAR)
|
SELECT result FROM table_22118197_1 WHERE english_title = "Morning Undersea"
|
35,115 |
<question>: What was the result of the film with the Portuguese title, Um Filme Falado? <context>: CREATE TABLE table_22118197_1 (result VARCHAR, portuguese_title VARCHAR)
|
SELECT result FROM table_22118197_1 WHERE portuguese_title = "Um Filme Falado"
|
35,116 |
<question>: What is the Portuguese name of the film who's English title is, Belle Toujours? <context>: CREATE TABLE table_22118197_1 (portuguese_title VARCHAR, english_title VARCHAR)
|
SELECT portuguese_title FROM table_22118197_1 WHERE english_title = "Belle Toujours"
|
35,117 |
<question>: What is every result for the ceremony year of 2007 (80th)? <context>: CREATE TABLE table_22128871_1 (result VARCHAR, year__ceremony_ VARCHAR)
|
SELECT result FROM table_22128871_1 WHERE year__ceremony_ = "2007 (80th)"
|
35,118 |
<question>: What is every English title for the result of nominee? <context>: CREATE TABLE table_22128871_1 (english_title VARCHAR, result VARCHAR)
|
SELECT english_title FROM table_22128871_1 WHERE result = "Nominee"
|
35,119 |
<question>: How many directors have vietnamese titles of Gate, Gate, Paragate? <context>: CREATE TABLE table_22128871_1 (director VARCHAR, vietnamese_title VARCHAR)
|
SELECT COUNT(director) FROM table_22128871_1 WHERE vietnamese_title = "Gate, gate, paragate"
|
35,120 |
<question>: What is every ceremony year for the result of nominee? <context>: CREATE TABLE table_22128871_1 (year__ceremony_ VARCHAR, result VARCHAR)
|
SELECT year__ceremony_ FROM table_22128871_1 WHERE result = "Nominee"
|
35,121 |
<question>: Who was the pilot of max altitude of 55.9 miles? <context>: CREATE TABLE table_221315_3 (pilot VARCHAR, max_altitude__miles_ VARCHAR)
|
SELECT pilot FROM table_221315_3 WHERE max_altitude__miles_ = "55.9"
|
35,122 |
<question>: What is the highest number of fai space flights when max mach is 5.65? <context>: CREATE TABLE table_221315_3 (fai_space_flights INTEGER, max_mach VARCHAR)
|
SELECT MAX(fai_space_flights) FROM table_221315_3 WHERE max_mach = "5.65"
|
35,123 |
<question>: What was the maximum altitude for Neil Armstrong? <context>: CREATE TABLE table_221315_3 (max_altitude__miles_ VARCHAR, pilot VARCHAR)
|
SELECT max_altitude__miles_ FROM table_221315_3 WHERE pilot = "Neil Armstrong"
|
35,124 |
<question>: How many numbers were recorded under max speed for 1 USAF space flight and total flights 34? <context>: CREATE TABLE table_221315_3 (max_speed__mph_ VARCHAR, usaf_space_flights VARCHAR, total_flights VARCHAR)
|
SELECT COUNT(max_speed__mph_) FROM table_221315_3 WHERE usaf_space_flights = 1 AND total_flights = 34
|
35,125 |
<question>: What were all USAF space flights when the aximum speed was 3822? <context>: CREATE TABLE table_221315_3 (usaf_space_flights VARCHAR, max_speed__mph_ VARCHAR)
|
SELECT usaf_space_flights FROM table_221315_3 WHERE max_speed__mph_ = 3822
|
35,126 |
<question>: What was the max mach when the maximum speed was 3887? <context>: CREATE TABLE table_221315_3 (max_mach VARCHAR, max_speed__mph_ VARCHAR)
|
SELECT max_mach FROM table_221315_3 WHERE max_speed__mph_ = 3887
|
35,127 |
<question>: What is the record for the away leg in round 1 and aggregate 2-0? <context>: CREATE TABLE table_2214582_1 (away_leg VARCHAR, round VARCHAR, aggregate VARCHAR)
|
SELECT away_leg FROM table_2214582_1 WHERE round = 1 AND aggregate = "2-0"
|
35,128 |
<question>: Name the parishes for beira baixa province <context>: CREATE TABLE table_221375_1 (parishes VARCHAR, province_of_1936 VARCHAR)
|
SELECT COUNT(parishes) FROM table_221375_1 WHERE province_of_1936 = "Beira Baixa Province"
|
35,129 |
<question>: Name the most municipalities for alto alentejo province (partly ribatejo) <context>: CREATE TABLE table_221375_1 (municipalities INTEGER, province_of_1936 VARCHAR)
|
SELECT MAX(municipalities) FROM table_221375_1 WHERE province_of_1936 = "Alto Alentejo Province (partly Ribatejo)"
|
35,130 |
<question>: Name province of 1936 viana do castelo <context>: CREATE TABLE table_221375_1 (province_of_1936 VARCHAR, district VARCHAR)
|
SELECT province_of_1936 FROM table_221375_1 WHERE district = "Viana do Castelo"
|
35,131 |
<question>: What was the score when the partner is Rafael Osuna? <context>: CREATE TABLE table_2215159_2 (score VARCHAR, partner VARCHAR)
|
SELECT score FROM table_2215159_2 WHERE partner = "Rafael Osuna"
|
35,132 |
<question>: What was the outcome of the game when the partner is Rafael Osuna? <context>: CREATE TABLE table_2215159_2 (outcome VARCHAR, partner VARCHAR)
|
SELECT outcome FROM table_2215159_2 WHERE partner = "Rafael Osuna"
|
35,133 |
<question>: What is the surface of the French Championships? <context>: CREATE TABLE table_2215159_2 (surface VARCHAR, championship VARCHAR)
|
SELECT surface FROM table_2215159_2 WHERE championship = "French championships"
|
35,134 |
<question>: How many outcomes were there for matches played with Chuck McKinley on grass in 1962? <context>: CREATE TABLE table_2215159_2 (outcome VARCHAR, year VARCHAR, surface VARCHAR, partner VARCHAR)
|
SELECT COUNT(outcome) FROM table_2215159_2 WHERE surface = "Grass" AND partner = "Chuck McKinley" AND year = 1962
|
35,135 |
<question>: What was the home leg score against partizani tirana? <context>: CREATE TABLE table_2214582_3 (home_leg VARCHAR, opponents VARCHAR)
|
SELECT home_leg FROM table_2214582_3 WHERE opponents = "Partizani Tirana"
|
35,136 |
<question>: What round did they face fc st. gallen? <context>: CREATE TABLE table_2214582_3 (round VARCHAR, opponents VARCHAR)
|
SELECT COUNT(round) FROM table_2214582_3 WHERE opponents = "FC St. Gallen"
|
35,137 |
<question>: What was the home leg score against fc schalke 04? <context>: CREATE TABLE table_2214582_3 (home_leg VARCHAR, opponents VARCHAR)
|
SELECT home_leg FROM table_2214582_3 WHERE opponents = "FC Schalke 04"
|
35,138 |
<question>: How many dfb-pokal did kevin-prince boateng have? <context>: CREATE TABLE table_22167196_1 (dfb_pokal VARCHAR, player VARCHAR)
|
SELECT COUNT(dfb_pokal) FROM table_22167196_1 WHERE player = "Kevin-Prince Boateng"
|
35,139 |
<question>: Who is the head coach when Miami University is the championship game opponent? <context>: CREATE TABLE table_22165661_3 (head_coach VARCHAR, championship_game_opponent VARCHAR)
|
SELECT head_coach FROM table_22165661_3 WHERE championship_game_opponent = "Miami University"
|
35,140 |
<question>: What is the location when 2-1 is the score? <context>: CREATE TABLE table_22165661_3 (location VARCHAR, score VARCHAR)
|
SELECT location FROM table_22165661_3 WHERE score = "2-1"
|
35,141 |
<question>: What is the conference when Ferris State is the championship game opponent? <context>: CREATE TABLE table_22165661_3 (conference VARCHAR, championship_game_opponent VARCHAR)
|
SELECT conference FROM table_22165661_3 WHERE championship_game_opponent = "Ferris State"
|
35,142 |
<question>: What is the location of the 1999 tournament? <context>: CREATE TABLE table_22165661_3 (location VARCHAR, tournament VARCHAR)
|
SELECT location FROM table_22165661_3 WHERE tournament = 1999
|
35,143 |
<question>: How many scores are there when the championship game opponent is Miami University? <context>: CREATE TABLE table_22165661_3 (score VARCHAR, championship_game_opponent VARCHAR)
|
SELECT COUNT(score) FROM table_22165661_3 WHERE championship_game_opponent = "Miami University"
|
35,144 |
<question>: Who is the head coach for the score of 4-3? <context>: CREATE TABLE table_22165661_3 (head_coach VARCHAR, score VARCHAR)
|
SELECT head_coach FROM table_22165661_3 WHERE score = "4-3"
|
35,145 |
<question>: What is the bleeding time when the platelet count is decreased or unaffected? <context>: CREATE TABLE table_221653_1 (bleeding_time VARCHAR, platelet_count VARCHAR)
|
SELECT bleeding_time FROM table_221653_1 WHERE platelet_count = "Decreased or unaffected"
|
35,146 |
<question>: What is the partial thromboplastin time when the condition factor x deficiency as seen in amyloid purpura? <context>: CREATE TABLE table_221653_1 (partial_thromboplastin_time VARCHAR, condition VARCHAR)
|
SELECT partial_thromboplastin_time FROM table_221653_1 WHERE condition = "Factor X deficiency as seen in amyloid purpura"
|
35,147 |
<question>: How many time does the platelet count occur when prothrombin time and bleeding time are prolonged? <context>: CREATE TABLE table_221653_1 (platelet_count VARCHAR, prothrombin_time VARCHAR, bleeding_time VARCHAR)
|
SELECT COUNT(platelet_count) FROM table_221653_1 WHERE prothrombin_time = "Prolonged" AND bleeding_time = "Prolonged"
|
35,148 |
<question>: What is the bleeding time for the disseminated intravascular coagulation condition? <context>: CREATE TABLE table_221653_1 (bleeding_time VARCHAR, condition VARCHAR)
|
SELECT COUNT(bleeding_time) FROM table_221653_1 WHERE condition = "Disseminated intravascular coagulation"
|
35,149 |
<question>: What is the result for partial thromboplastin time when prothrombin time and bleeding time are prolonged? <context>: CREATE TABLE table_221653_1 (partial_thromboplastin_time VARCHAR, prothrombin_time VARCHAR, bleeding_time VARCHAR)
|
SELECT partial_thromboplastin_time FROM table_221653_1 WHERE prothrombin_time = "Prolonged" AND bleeding_time = "Prolonged"
|
35,150 |
<question>: What is the platelet count when partial thromboplastin time and bleeding time are unaffected? <context>: CREATE TABLE table_221653_1 (platelet_count VARCHAR, partial_thromboplastin_time VARCHAR, bleeding_time VARCHAR)
|
SELECT platelet_count FROM table_221653_1 WHERE partial_thromboplastin_time = "Unaffected" AND bleeding_time = "Unaffected"
|
35,151 |
<question>: What is the lowest top 50 ranking that the episode titled "the god-why-don't-you-love-me blues" received? <context>: CREATE TABLE table_22170495_7 (top_50_ranking INTEGER, title VARCHAR)
|
SELECT MIN(top_50_ranking) FROM table_22170495_7 WHERE title = "The God-Why-Don't-You-Love-Me Blues"
|
35,152 |
<question>: Which episodes originally aired on April 19, 2010? <context>: CREATE TABLE table_22170495_7 (title VARCHAR, original_airing VARCHAR)
|
SELECT title FROM table_22170495_7 WHERE original_airing = "April 19, 2010"
|
35,153 |
<question>: The episode titled "Epiphany" received what scripted show ranking? <context>: CREATE TABLE table_22170495_7 (scripted_show_ranking INTEGER, title VARCHAR)
|
SELECT MIN(scripted_show_ranking) FROM table_22170495_7 WHERE title = "Epiphany"
|
35,154 |
<question>: How many of the episodes in the top 50 rankings were originally aired on June 28, 2010? <context>: CREATE TABLE table_22170495_7 (top_50_ranking VARCHAR, original_airing VARCHAR)
|
SELECT COUNT(top_50_ranking) FROM table_22170495_7 WHERE original_airing = "June 28, 2010"
|
35,155 |
<question>: For the location of quezon city , metro manila what is the athletic nickname? <context>: CREATE TABLE table_22171978_1 (athletic_nickname VARCHAR, location VARCHAR)
|
SELECT athletic_nickname FROM table_22171978_1 WHERE location = "Quezon City , Metro Manila"
|
35,156 |
<question>: How many locations are there for the athletic nickname is blue crusaders? <context>: CREATE TABLE table_22171978_1 (location VARCHAR, athletic_nickname VARCHAR)
|
SELECT COUNT(location) FROM table_22171978_1 WHERE athletic_nickname = "Blue Crusaders"
|
35,157 |
<question>: How many entries are shown for school colors for the location of naga , camarines sur? <context>: CREATE TABLE table_22171978_1 (school_colors VARCHAR, location VARCHAR)
|
SELECT COUNT(school_colors) FROM table_22171978_1 WHERE location = "Naga , Camarines Sur"
|
35,158 |
<question>: For the athletic nickname of golden knights how many entries are shown for enrollment? <context>: CREATE TABLE table_22171978_1 (enrollment VARCHAR, athletic_nickname VARCHAR)
|
SELECT COUNT(enrollment) FROM table_22171978_1 WHERE athletic_nickname = "Golden Knights"
|
35,159 |
<question>: What year was the ateneo de manila university founded? <context>: CREATE TABLE table_22171978_1 (founded VARCHAR, institution VARCHAR)
|
SELECT founded FROM table_22171978_1 WHERE institution = "Ateneo de Manila University"
|
35,160 |
<question>: What year was the athletic nickname blue crusaders founded? <context>: CREATE TABLE table_22171978_1 (founded VARCHAR, athletic_nickname VARCHAR)
|
SELECT founded FROM table_22171978_1 WHERE athletic_nickname = "Blue Crusaders"
|
35,161 |
<question>: How many original airdates did season 20 have? <context>: CREATE TABLE table_22181917_2 (original_air_date VARCHAR, season__number VARCHAR)
|
SELECT COUNT(original_air_date) FROM table_22181917_2 WHERE season__number = 20
|
35,162 |
<question>: Who directed the episode that was watched by 6.62 million U.S. viewers? <context>: CREATE TABLE table_22181917_2 (directed_by VARCHAR, us_viewers__millions_ VARCHAR)
|
SELECT directed_by FROM table_22181917_2 WHERE us_viewers__millions_ = "6.62"
|
35,163 |
<question>: What is the production code for the episode with 8.56 million U.S. viewers? <context>: CREATE TABLE table_22181917_2 (production_code VARCHAR, us_viewers__millions_ VARCHAR)
|
SELECT production_code FROM table_22181917_2 WHERE us_viewers__millions_ = "8.56"
|
35,164 |
<question>: What is the title of the episode that had 9.76 million U.S. viewers? <context>: CREATE TABLE table_22181917_2 (title VARCHAR, us_viewers__millions_ VARCHAR)
|
SELECT title FROM table_22181917_2 WHERE us_viewers__millions_ = "9.76"
|
35,165 |
<question>: What is the title of the original airing on e4 May 2, 2010? <context>: CREATE TABLE table_22170495_6 (title VARCHAR, original_airing_on_e4 VARCHAR)
|
SELECT title FROM table_22170495_6 WHERE original_airing_on_e4 = "May 2, 2010"
|
35,166 |
<question>: How many total viewers have April 21, 2010 as the original airing on channel 4? <context>: CREATE TABLE table_22170495_6 (total_viewers VARCHAR, original_airing_on_channel_4 VARCHAR)
|
SELECT COUNT(total_viewers) FROM table_22170495_6 WHERE original_airing_on_channel_4 = "April 21, 2010"
|
35,167 |
<question>: What is the position in e4s ratings b when June 30, 2010 is the original airing on channel 4? <context>: CREATE TABLE table_22170495_6 (position_in_e4s_ratings_b VARCHAR, original_airing_on_channel_4 VARCHAR)
|
SELECT position_in_e4s_ratings_b FROM table_22170495_6 WHERE original_airing_on_channel_4 = "June 30, 2010"
|
35,168 |
<question>: When is the original airing on channel 4 with being alive as the title? <context>: CREATE TABLE table_22170495_6 (original_airing_on_channel_4 VARCHAR, title VARCHAR)
|
SELECT original_airing_on_channel_4 FROM table_22170495_6 WHERE title = "Being Alive"
|
35,169 |
<question>: How many position in channel 4s ratings a have February 24, 2010 as the original airing on channel 4? <context>: CREATE TABLE table_22170495_6 (position_in_channel_4s_ratings_a VARCHAR, original_airing_on_channel_4 VARCHAR)
|
SELECT COUNT(position_in_channel_4s_ratings_a) FROM table_22170495_6 WHERE original_airing_on_channel_4 = "February 24, 2010"
|
35,170 |
<question>: What are all types where registration is HB-OPU? <context>: CREATE TABLE table_22180353_1 (type VARCHAR, registration VARCHAR)
|
SELECT type FROM table_22180353_1 WHERE registration = "HB-OPU"
|
35,171 |
<question>: What is every registration for the type of T 6 G? <context>: CREATE TABLE table_22180353_1 (registration VARCHAR, type VARCHAR)
|
SELECT registration FROM table_22180353_1 WHERE type = "T 6 G"
|
35,172 |
<question>: What is every construction date for the registration of HB-HOS? <context>: CREATE TABLE table_22180353_1 (construction VARCHAR, registration VARCHAR)
|
SELECT construction AS date FROM table_22180353_1 WHERE registration = "HB-HOS"
|
35,173 |
<question>: What is every conformity to original design if registration is HB-DAI? <context>: CREATE TABLE table_22180353_1 (conformity_to_original_design VARCHAR, registration VARCHAR)
|
SELECT conformity_to_original_design FROM table_22180353_1 WHERE registration = "HB-DAI"
|
35,174 |
<question>: What is the latest season number that Eric Tuchman directed? <context>: CREATE TABLE table_2219961_2 (season__number INTEGER, director VARCHAR)
|
SELECT MAX(season__number) FROM table_2219961_2 WHERE director = "Eric Tuchman"
|
35,175 |
<question>: How man seasons have the air date of October 2, 2001? <context>: CREATE TABLE table_2219961_2 (season__number VARCHAR, nbc_airdate VARCHAR)
|
SELECT COUNT(season__number) FROM table_2219961_2 WHERE nbc_airdate = "October 2, 2001"
|
35,176 |
<question>: What was the report in the race where the winning team was Roush Fenway Racing? <context>: CREATE TABLE table_2220432_1 (report VARCHAR, team VARCHAR)
|
SELECT report FROM table_2220432_1 WHERE team = "Roush Fenway Racing"
|
35,177 |
<question>: What was the miles (km) for the race that had an average speed of 136.117 MPH? <context>: CREATE TABLE table_2220432_1 (miles__km_ VARCHAR, average_speed__mph_ VARCHAR)
|
SELECT miles__km_ FROM table_2220432_1 WHERE average_speed__mph_ = "136.117"
|
35,178 |
<question>: What are the miles when February 25 is the date? <context>: CREATE TABLE table_2226343_1 (miles__km_ VARCHAR, date VARCHAR)
|
SELECT miles__km_ FROM table_2226343_1 WHERE date = "February 25"
|
35,179 |
<question>: How many laps have an average speed of 141.911? <context>: CREATE TABLE table_2226343_1 (laps VARCHAR, average_speed__mph_ VARCHAR)
|
SELECT laps FROM table_2226343_1 WHERE average_speed__mph_ = "141.911"
|
35,180 |
<question>: Who is the manufacturer when 150.088 is the average speed (mph)? <context>: CREATE TABLE table_2226343_1 (manufacturer VARCHAR, average_speed__mph_ VARCHAR)
|
SELECT manufacturer FROM table_2226343_1 WHERE average_speed__mph_ = "150.088"
|
35,181 |
<question>: Who is the manufacturer for the date of June 22? <context>: CREATE TABLE table_2226343_1 (manufacturer VARCHAR, date VARCHAR)
|
SELECT manufacturer FROM table_2226343_1 WHERE date = "June 22"
|
35,182 |
<question>: How many laps have a race time of 3:31:24? <context>: CREATE TABLE table_2226343_1 (laps VARCHAR, race_time VARCHAR)
|
SELECT laps FROM table_2226343_1 WHERE race_time = "3:31:24"
|
35,183 |
<question>: How many laps have an average speed (mph) of 140.22? <context>: CREATE TABLE table_2226343_1 (laps VARCHAR, average_speed__mph_ VARCHAR)
|
SELECT laps FROM table_2226343_1 WHERE average_speed__mph_ = "140.22"
|
35,184 |
<question>: Who directed the film with the original title of три летња дана? <context>: CREATE TABLE table_22265716_1 (director VARCHAR, original_title VARCHAR)
|
SELECT director FROM table_22265716_1 WHERE original_title = "Три летња дана"
|
35,185 |
<question>: Who directed the film with the title three summer days? <context>: CREATE TABLE table_22265716_1 (director VARCHAR, film_title_used_in_nomination VARCHAR)
|
SELECT director FROM table_22265716_1 WHERE film_title_used_in_nomination = "Three Summer Days"
|
35,186 |
<question>: Who is the director of the film with the title лепа села лепо горе? <context>: CREATE TABLE table_22265716_1 (director VARCHAR, original_title VARCHAR)
|
SELECT director FROM table_22265716_1 WHERE original_title = "Лепа села лепо горе"
|
35,187 |
<question>: How many viewers in millions watched the episode with the production code 6acx16? <context>: CREATE TABLE table_22261877_1 (us_viewers__million_ VARCHAR, production_code VARCHAR)
|
SELECT us_viewers__million_ FROM table_22261877_1 WHERE production_code = "6ACX16"
|
35,188 |
<question>: What is the air date of the episode with the production code 6acx19? <context>: CREATE TABLE table_22261877_1 (original_air_date VARCHAR, production_code VARCHAR)
|
SELECT original_air_date FROM table_22261877_1 WHERE production_code = "6ACX19"
|
35,189 |
<question>: What is the original air date for the production code of 1.12? <context>: CREATE TABLE table_2226817_2 (original_air_date VARCHAR, production_code VARCHAR)
|
SELECT original_air_date FROM table_2226817_2 WHERE production_code = "1.12"
|
35,190 |
<question>: How many number of series have a production code of 1.11? <context>: CREATE TABLE table_2226817_2 (no_in_series VARCHAR, production_code VARCHAR)
|
SELECT no_in_series FROM table_2226817_2 WHERE production_code = "1.11"
|
35,191 |
<question>: How many number of series have the production code of 1.11? <context>: CREATE TABLE table_2226817_2 (no_in_series INTEGER, production_code VARCHAR)
|
SELECT MAX(no_in_series) FROM table_2226817_2 WHERE production_code = "1.11"
|
35,192 |
<question>: Who wrote when the original airdate is April 5, 1987? <context>: CREATE TABLE table_2226817_2 (written_by VARCHAR, original_air_date VARCHAR)
|
SELECT written_by FROM table_2226817_2 WHERE original_air_date = "April 5, 1987"
|
35,193 |
<question>: Who directed when the production code is 1.02? <context>: CREATE TABLE table_2226817_2 (directed_by VARCHAR, production_code VARCHAR)
|
SELECT directed_by FROM table_2226817_2 WHERE production_code = "1.02"
|
35,194 |
<question>: Name the production code for november 27, 1988 <context>: CREATE TABLE table_2226817_4 (production_code VARCHAR, original_air_date VARCHAR)
|
SELECT production_code FROM table_2226817_4 WHERE original_air_date = "November 27, 1988"
|
35,195 |
<question>: Name the original air date for 3.04 production code <context>: CREATE TABLE table_2226817_4 (original_air_date VARCHAR, production_code VARCHAR)
|
SELECT original_air_date FROM table_2226817_4 WHERE production_code = "3.04"
|
35,196 |
<question>: Name who wrote the episode that aired april 9, 1989 <context>: CREATE TABLE table_2226817_4 (written_by VARCHAR, original_air_date VARCHAR)
|
SELECT written_by FROM table_2226817_4 WHERE original_air_date = "April 9, 1989"
|
35,197 |
<question>: Name the number of number in season for 3.09 <context>: CREATE TABLE table_2226817_4 (no_in_season VARCHAR, production_code VARCHAR)
|
SELECT COUNT(no_in_season) FROM table_2226817_4 WHERE production_code = "3.09"
|
35,198 |
<question>: when was the episode premiere if the production code is 11.19? <context>: CREATE TABLE table_2226817_12 (original_air_date VARCHAR, production_code VARCHAR)
|
SELECT COUNT(original_air_date) FROM table_2226817_12 WHERE production_code = "11.19"
|
35,199 |
<question>: what is the name of the episode whose premiere was in march 2, 1997? <context>: CREATE TABLE table_2226817_12 (title VARCHAR, original_air_date VARCHAR)
|
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.