question
stringlengths 12
244
| create_table_statement
stringlengths 97
895
| sql_query
stringlengths 27
479
| wiki_sql_table_id
stringlengths 8
14
|
---|---|---|---|
How many production codes have the title "the better man"? | CREATE TABLE "table1_18424435_5" (
"no" real,
"num" real,
"title" text,
"directed_by" text,
"written_by" text,
"canadian_air_date" text,
"u_s_air_date" text,
"production_code" real,
"canadian_viewers_million" text
); | SELECT COUNT("production_code") FROM "table1_18424435_5" WHERE "title"='\"The Better Man\"'; | 1-18424435-5 |
Who directed the episode that aired on July 29, 2011? | CREATE TABLE "table1_18424435_5" (
"no" real,
"num" real,
"title" text,
"directed_by" text,
"written_by" text,
"canadian_air_date" text,
"u_s_air_date" text,
"production_code" real,
"canadian_viewers_million" text
); | SELECT "directed_by" FROM "table1_18424435_5" WHERE "u_s_air_date"='July 29, 2011'; | 1-18424435-5 |
How many air dates where directed by jim donovan? | CREATE TABLE "table1_18424435_5" (
"no" real,
"num" real,
"title" text,
"directed_by" text,
"written_by" text,
"canadian_air_date" text,
"u_s_air_date" text,
"production_code" real,
"canadian_viewers_million" text
); | SELECT COUNT("u_s_air_date") FROM "table1_18424435_5" WHERE "directed_by"='Jim Donovan'; | 1-18424435-5 |
What is the smallest number? | CREATE TABLE "table1_18424435_5" (
"no" real,
"num" real,
"title" text,
"directed_by" text,
"written_by" text,
"canadian_air_date" text,
"u_s_air_date" text,
"production_code" real,
"canadian_viewers_million" text
); | SELECT MIN("num") FROM "table1_18424435_5"; | 1-18424435-5 |
Which air dates have 1.229 canadian viewers (millions)? | CREATE TABLE "table1_18424435_5" (
"no" real,
"num" real,
"title" text,
"directed_by" text,
"written_by" text,
"canadian_air_date" text,
"u_s_air_date" text,
"production_code" real,
"canadian_viewers_million" text
); | SELECT "u_s_air_date" FROM "table1_18424435_5" WHERE "canadian_viewers_million"='1.229'; | 1-18424435-5 |
In what district is the city listed in Serial number 9? | CREATE TABLE "punjab" (
"serial_no" real,
"district" text,
"headquartered_city" text,
"city_population_2009" real,
"city_area_km_2" real
); | SELECT COUNT("district") FROM "punjab" WHERE "serial_no"=9; | 1-18425346-2 |
What is the area of the city in the Sargodha district? | CREATE TABLE "punjab" (
"serial_no" real,
"district" text,
"headquartered_city" text,
"city_population_2009" real,
"city_area_km_2" real
); | SELECT COUNT("city_area_km_2") FROM "punjab" WHERE "district"='Sargodha District'; | 1-18425346-2 |
What is the smallest city area? | CREATE TABLE "punjab" (
"serial_no" real,
"district" text,
"headquartered_city" text,
"city_population_2009" real,
"city_area_km_2" real
); | SELECT MIN("city_area_km_2") FROM "punjab"; | 1-18425346-2 |
If Di Drew is the director, what was the original air date for episode A Whole Lot to Lose? | CREATE TABLE "episodes" (
"no_in_series" real,
"no_in_season" real,
"title" text,
"directed_by" text,
"written_by" text,
"original_air_date" text
); | SELECT "original_air_date" FROM "episodes" WHERE "directed_by"='Di Drew'; | 1-18427769-1 |
What is the population (2010 census) if s barangay is 51? | CREATE TABLE "administrative_districts" (
"district" text,
"s_barangay" real,
"population_2010_census" real,
"area_has" text,
"pop_density_per_km2" text
); | SELECT COUNT("population_2010_census") FROM "administrative_districts" WHERE "s_barangay"=51; | 1-184334-2 |
What is the population (2010 census) if the area is 66.11? | CREATE TABLE "administrative_districts" (
"district" text,
"s_barangay" real,
"population_2010_census" real,
"area_has" text,
"pop_density_per_km2" text
); | SELECT MIN("population_2010_census") FROM "administrative_districts" WHERE "area_has"='66.11'; | 1-184334-2 |
How many entered the match with a time of 14:42? | CREATE TABLE "elimination_chamber_entrances_and_elimin" (
"eliminated" real,
"wrestler" text,
"entered" real,
"eliminated_by" text,
"method_of_elimination" text,
"time" text
); | SELECT "entered" FROM "elimination_chamber_entrances_and_elimin" WHERE "time"='14:42'; | 1-18438494-3 |
What was the time for the match with Cena? | CREATE TABLE "elimination_chamber_entrances_and_elimin" (
"eliminated" real,
"wrestler" text,
"entered" real,
"eliminated_by" text,
"method_of_elimination" text,
"time" text
); | SELECT "time" FROM "elimination_chamber_entrances_and_elimin" WHERE "wrestler"='Cena'; | 1-18438494-3 |
What was the time of the match where Chris Jericho eliminated the wrestler? | CREATE TABLE "elimination_chamber_entrances_and_elimin" (
"eliminated" real,
"wrestler" text,
"entered" real,
"eliminated_by" text,
"method_of_elimination" text,
"time" text
); | SELECT "time" FROM "elimination_chamber_entrances_and_elimin" WHERE "eliminated_by"='Chris Jericho'; | 1-18438494-3 |
What are all the stations with a license in Cincinnati? | CREATE TABLE "television_stations" (
"city_of_license_market" text,
"station" text,
"channel_tv_rf" text,
"owned_since" real,
"affiliation" text
); | SELECT "station" FROM "television_stations" WHERE "city_of_license_market"='Cincinnati'; | 1-1847523-2 |
What station is affiliated with kmgh-tv? | CREATE TABLE "television_stations" (
"city_of_license_market" text,
"station" text,
"channel_tv_rf" text,
"owned_since" real,
"affiliation" text
); | SELECT "affiliation" FROM "television_stations" WHERE "station"='KMGH-TV'; | 1-1847523-2 |
How many stations have been owned since wfts-tv? | CREATE TABLE "television_stations" (
"city_of_license_market" text,
"station" text,
"channel_tv_rf" text,
"owned_since" real,
"affiliation" text
); | SELECT "owned_since" FROM "television_stations" WHERE "station"='WFTS-TV'; | 1-1847523-2 |
What city of license/market has the channel of 41? | CREATE TABLE "television_stations" (
"city_of_license_market" text,
"station" text,
"channel_tv_rf" text,
"owned_since" real,
"affiliation" text
); | SELECT "city_of_license_market" FROM "television_stations" WHERE "channel_tv_rf"='41'; | 1-1847523-2 |
What is the minimum stations owned since kero-tv? | CREATE TABLE "television_stations" (
"city_of_license_market" text,
"station" text,
"channel_tv_rf" text,
"owned_since" real,
"affiliation" text
); | SELECT MIN("owned_since") FROM "television_stations" WHERE "station"='KERO-TV'; | 1-1847523-2 |
What is the lyric fm for rnag 93.2? | CREATE TABLE "main_sites" (
"transmitter" text,
"service_area" text,
"radio_1_m_hz" text,
"2_fm_m_hz" text,
"rna_g_m_hz" text,
"lyric_fm_m_hz" text,
"erp_k_w" text
); | SELECT "lyric_fm_m_hz" FROM "main_sites" WHERE "rna_g_m_hz"='93.2'; | 1-18475946-2 |
What are the 2fm's for erp 16? | CREATE TABLE "main_sites" (
"transmitter" text,
"service_area" text,
"radio_1_m_hz" text,
"2_fm_m_hz" text,
"rna_g_m_hz" text,
"lyric_fm_m_hz" text,
"erp_k_w" text
); | SELECT "2_fm_m_hz" FROM "main_sites" WHERE "erp_k_w"='16'; | 1-18475946-2 |
What is the rnag for kippure transmitter? | CREATE TABLE "main_sites" (
"transmitter" text,
"service_area" text,
"radio_1_m_hz" text,
"2_fm_m_hz" text,
"rna_g_m_hz" text,
"lyric_fm_m_hz" text,
"erp_k_w" text
); | SELECT "rna_g_m_hz" FROM "main_sites" WHERE "transmitter"='Kippure'; | 1-18475946-2 |
What is the rnag for lyric fm 98.7? | CREATE TABLE "main_sites" (
"transmitter" text,
"service_area" text,
"radio_1_m_hz" text,
"2_fm_m_hz" text,
"rna_g_m_hz" text,
"lyric_fm_m_hz" text,
"erp_k_w" text
); | SELECT "rna_g_m_hz" FROM "main_sites" WHERE "lyric_fm_m_hz"='98.7'; | 1-18475946-2 |
What is the 2fm for rnag 94.4? | CREATE TABLE "main_sites" (
"transmitter" text,
"service_area" text,
"radio_1_m_hz" text,
"2_fm_m_hz" text,
"rna_g_m_hz" text,
"lyric_fm_m_hz" text,
"erp_k_w" text
); | SELECT "2_fm_m_hz" FROM "main_sites" WHERE "rna_g_m_hz"='94.4'; | 1-18475946-2 |
How many reasons were given when A. Willis Robertson (D) resigned? | CREATE TABLE "senate" (
"state_class" text,
"vacator" text,
"reason_for_change" text,
"successor" text,
"date_of_successors_formal_installation" text
); | SELECT COUNT("reason_for_change") FROM "senate" WHERE "vacator"='A. Willis Robertson (D)'; | 1-1847180-3 |
Who vacated his post when his successor was formally installed on May 11, 1966? | CREATE TABLE "senate" (
"state_class" text,
"vacator" text,
"reason_for_change" text,
"successor" text,
"date_of_successors_formal_installation" text
); | SELECT "vacator" FROM "senate" WHERE "date_of_successors_formal_installation"='May 11, 1966'; | 1-1847180-3 |
What was the state (class) where the new successor was formally installed on May 11, 1966? | CREATE TABLE "senate" (
"state_class" text,
"vacator" text,
"reason_for_change" text,
"successor" text,
"date_of_successors_formal_installation" text
); | SELECT "state_class" FROM "senate" WHERE "date_of_successors_formal_installation"='May 11, 1966'; | 1-1847180-3 |
When abba is the artist what is the album? | CREATE TABLE "best_selling_albums_in_the_uk" (
"no" real,
"album" text,
"artist" text,
"record_label" text,
"released" text,
"chart_peak" real,
"number_of_times_certified_platinum" text
); | SELECT "album" FROM "best_selling_albums_in_the_uk" WHERE "artist"='ABBA'; | 1-18442691-2 |
When 35 is the number what is the album? | CREATE TABLE "best_selling_albums_in_the_uk" (
"no" real,
"album" text,
"artist" text,
"record_label" text,
"released" text,
"chart_peak" real,
"number_of_times_certified_platinum" text
); | SELECT "album" FROM "best_selling_albums_in_the_uk" WHERE "no"=35; | 1-18442691-2 |
When bat out of hell is the album what is the lowest number? | CREATE TABLE "best_selling_albums_in_the_uk" (
"no" real,
"album" text,
"artist" text,
"record_label" text,
"released" text,
"chart_peak" real,
"number_of_times_certified_platinum" text
); | SELECT MIN("no") FROM "best_selling_albums_in_the_uk" WHERE "album"='Bat Out of Hell'; | 1-18442691-2 |
When cannot handle non-empty timestamp argument! 2007 is released what is the no.? | CREATE TABLE "best_selling_albums_in_the_uk" (
"no" real,
"album" text,
"artist" text,
"record_label" text,
"released" text,
"chart_peak" real,
"number_of_times_certified_platinum" text
); | SELECT "no" FROM "best_selling_albums_in_the_uk" WHERE "released"='Cannot handle non-empty timestamp argument! 2007'; | 1-18442691-2 |
Which district did Ralph Harvey (r) vacated when he resigned? | CREATE TABLE "table1_1847180_4" (
"district" text,
"vacator" text,
"reason_for_change" text,
"successor" text,
"date_successor_seated" text
); | SELECT "district" FROM "table1_1847180_4" WHERE "vacator"='Ralph Harvey (R)'; | 1-1847180-4 |
Who did Walter B. Jones, Sr. (d) succeeded in office? | CREATE TABLE "table1_1847180_4" (
"district" text,
"vacator" text,
"reason_for_change" text,
"successor" text,
"date_successor_seated" text
); | SELECT "vacator" FROM "table1_1847180_4" WHERE "successor"='Walter B. Jones, Sr. (D)'; | 1-1847180-4 |
What number episode in the series was titled "Never the Bride"? | CREATE TABLE "table1_18481791_2" (
"no_in_series" real,
"title" text,
"directed_by" text,
"written_by" text,
"original_air_date" text,
"u_s_viewers_in_millions" text
); | SELECT "no_in_series" FROM "table1_18481791_2" WHERE "title"='\"Never the Bride\"'; | 1-18481791-2 |
Who wrote the episode titled "Trojan Horst"? | CREATE TABLE "table1_18481791_2" (
"no_in_series" real,
"title" text,
"directed_by" text,
"written_by" text,
"original_air_date" text,
"u_s_viewers_in_millions" text
); | SELECT "written_by" FROM "table1_18481791_2" WHERE "title"='\"Trojan Horst\"'; | 1-18481791-2 |
What was the title of the episode directed by John T. Kretchmer? | CREATE TABLE "table1_18481791_2" (
"no_in_series" real,
"title" text,
"directed_by" text,
"written_by" text,
"original_air_date" text,
"u_s_viewers_in_millions" text
); | SELECT "title" FROM "table1_18481791_2" WHERE "directed_by"='John T. Kretchmer'; | 1-18481791-2 |
How many seasons were directed by Bryan Spicer? | CREATE TABLE "table1_18481791_3" (
"no_in_series" real,
"no_in_season" real,
"title" text,
"directed_by" text,
"written_by" text,
"original_air_date" text,
"u_s_viewers_in_millions" text
); | SELECT MIN("no_in_season") FROM "table1_18481791_3" WHERE "directed_by"='Bryan Spicer'; | 1-18481791-3 |
What is the title of series 23? | CREATE TABLE "table1_18481791_3" (
"no_in_series" real,
"no_in_season" real,
"title" text,
"directed_by" text,
"written_by" text,
"original_air_date" text,
"u_s_viewers_in_millions" text
); | SELECT "title" FROM "table1_18481791_3" WHERE "no_in_series"=23; | 1-18481791-3 |
When did the title "training video" originally air? | CREATE TABLE "table1_18481791_3" (
"no_in_series" real,
"no_in_season" real,
"title" text,
"directed_by" text,
"written_by" text,
"original_air_date" text,
"u_s_viewers_in_millions" text
); | SELECT "original_air_date" FROM "table1_18481791_3" WHERE "title"='\"Training Video\"'; | 1-18481791-3 |
Who directed season 1? | CREATE TABLE "table1_18481791_3" (
"no_in_series" real,
"no_in_season" real,
"title" text,
"directed_by" text,
"written_by" text,
"original_air_date" text,
"u_s_viewers_in_millions" text
); | SELECT "directed_by" FROM "table1_18481791_3" WHERE "no_in_season"=1; | 1-18481791-3 |
What is the title when u.s. viewers (millions) is 3.97? | CREATE TABLE "table1_18481791_3" (
"no_in_series" real,
"no_in_season" real,
"title" text,
"directed_by" text,
"written_by" text,
"original_air_date" text,
"u_s_viewers_in_millions" text
); | SELECT "title" FROM "table1_18481791_3" WHERE "u_s_viewers_in_millions"='3.97'; | 1-18481791-3 |
how many people commentated where broadcaster is orf | CREATE TABLE "table1_184803_4" (
"voting_order" real,
"country" text,
"spokespersons" text,
"commentator" text,
"broadcaster" text
); | SELECT COUNT("commentator") FROM "table1_184803_4" WHERE "broadcaster"='ORF'; | 1-184803-4 |
list the spokespersons where voting order is 9 | CREATE TABLE "table1_184803_4" (
"voting_order" real,
"country" text,
"spokespersons" text,
"commentator" text,
"broadcaster" text
); | SELECT "spokespersons" FROM "table1_184803_4" WHERE "voting_order"=9; | 1-184803-4 |
which countries were commentated on by gordana bonetti | CREATE TABLE "table1_184803_4" (
"voting_order" real,
"country" text,
"spokespersons" text,
"commentator" text,
"broadcaster" text
); | SELECT "country" FROM "table1_184803_4" WHERE "commentator"='Gordana Bonetti'; | 1-184803-4 |
wich spokesperson talked on luxembourg | CREATE TABLE "table1_184803_4" (
"voting_order" real,
"country" text,
"spokespersons" text,
"commentator" text,
"broadcaster" text
); | SELECT "spokespersons" FROM "table1_184803_4" WHERE "country"='Luxembourg'; | 1-184803-4 |
who was the commentator when spokesperson was claude darget | CREATE TABLE "table1_184803_4" (
"voting_order" real,
"country" text,
"spokespersons" text,
"commentator" text,
"broadcaster" text
); | SELECT "commentator" FROM "table1_184803_4" WHERE "spokespersons"='Claude Darget'; | 1-184803-4 |
List all institutions with a team name of the Cardinals. | CREATE TABLE "membership" (
"institution" text,
"location" text,
"founded" real,
"years_in_iiac_approx" text,
"team_nickname" text
); | SELECT "institution" FROM "membership" WHERE "team_nickname"='Cardinals'; | 1-18483171-1 |
List the total number of institutions founded in Rock Island, Illinois. | CREATE TABLE "membership" (
"institution" text,
"location" text,
"founded" real,
"years_in_iiac_approx" text,
"team_nickname" text
); | SELECT COUNT("founded") FROM "membership" WHERE "location"='Rock Island, Illinois'; | 1-18483171-1 |
How many viewers in millions watched the episode 23:55 minutes long? | CREATE TABLE "table1_1849243_1" (
"episode" text,
"broadcast_date" text,
"run_time" text,
"viewers_in_millions" text,
"archive" text
); | SELECT "viewers_in_millions" FROM "table1_1849243_1" WHERE "run_time"='23:55'; | 1-1849243-1 |
What is the broadcast date of the 16mm t/r episode? | CREATE TABLE "table1_1849243_1" (
"episode" text,
"broadcast_date" text,
"run_time" text,
"viewers_in_millions" text,
"archive" text
); | SELECT "broadcast_date" FROM "table1_1849243_1" WHERE "archive"='16mm t/r'; | 1-1849243-1 |
How many viewers watched the 16mm t/r episode? | CREATE TABLE "table1_1849243_1" (
"episode" text,
"broadcast_date" text,
"run_time" text,
"viewers_in_millions" text,
"archive" text
); | SELECT "viewers_in_millions" FROM "table1_1849243_1" WHERE "archive"='16mm t/r'; | 1-1849243-1 |
state el canal de las estrellas where october 20, 2008 stat is june 5, 2009 | CREATE TABLE "broadcasters" (
"mexico" text,
"ma_ana_es_para_siempre" text,
"el_canal_de_las_estrellas" text,
"october_20_2008" text,
"june_14_2009" text,
"monday_to_friday" text
); | SELECT "el_canal_de_las_estrellas" FROM "broadcasters" WHERE "october_20_2008"='June 5, 2009'; | 1-18498743-1 |
state el canal de las estrellas where mañana es para siempre is impreuna pentru totdeauna | CREATE TABLE "broadcasters" (
"mexico" text,
"ma_ana_es_para_siempre" text,
"el_canal_de_las_estrellas" text,
"october_20_2008" text,
"june_14_2009" text,
"monday_to_friday" text
); | SELECT "el_canal_de_las_estrellas" FROM "broadcasters" WHERE "ma_ana_es_para_siempre"='Impreuna pentru totdeauna'; | 1-18498743-1 |
what is the june 14, 2009 stat where october 20, 2008 stat is november 15, 2010 | CREATE TABLE "broadcasters" (
"mexico" text,
"ma_ana_es_para_siempre" text,
"el_canal_de_las_estrellas" text,
"october_20_2008" text,
"june_14_2009" text,
"monday_to_friday" text
); | SELECT "june_14_2009" FROM "broadcasters" WHERE "october_20_2008"='November 15, 2010'; | 1-18498743-1 |
what is the mexico stat where mañana es para siempre is love never dies | CREATE TABLE "broadcasters" (
"mexico" text,
"ma_ana_es_para_siempre" text,
"el_canal_de_las_estrellas" text,
"october_20_2008" text,
"june_14_2009" text,
"monday_to_friday" text
); | SELECT "mexico" FROM "broadcasters" WHERE "ma_ana_es_para_siempre"='Love Never Dies'; | 1-18498743-1 |
state el canal de las estrellas where october 20, 2008 stat is june 5, 2009 | CREATE TABLE "broadcasters" (
"mexico" text,
"ma_ana_es_para_siempre" text,
"el_canal_de_las_estrellas" text,
"october_20_2008" text,
"june_14_2009" text,
"monday_to_friday" text
); | SELECT "el_canal_de_las_estrellas" FROM "broadcasters" WHERE "october_20_2008"='June 5, 2009'; | 1-18498743-1 |
what is the october 20, 2008 stat where mexico stat is romania | CREATE TABLE "broadcasters" (
"mexico" text,
"ma_ana_es_para_siempre" text,
"el_canal_de_las_estrellas" text,
"october_20_2008" text,
"june_14_2009" text,
"monday_to_friday" text
); | SELECT "october_20_2008" FROM "broadcasters" WHERE "mexico"='Romania'; | 1-18498743-1 |
Name the other for chironius multiventris septentrionalis | CREATE TABLE "table1_1850282_7" (
"species" text,
"common_name" text,
"trinidad" text,
"tobago" text,
"bocas_is" text,
"other" text
); | SELECT "other" FROM "table1_1850282_7" WHERE "species"='Chironius multiventris septentrionalis'; | 1-1850282-7 |
Name the trinidad for yellow-bellied puffing snake | CREATE TABLE "table1_1850282_7" (
"species" text,
"common_name" text,
"trinidad" text,
"tobago" text,
"bocas_is" text,
"other" text
); | SELECT "trinidad" FROM "table1_1850282_7" WHERE "common_name"='Yellow-bellied puffing snake'; | 1-1850282-7 |
Name the bocas for chironius multiventris septentrionalis | CREATE TABLE "table1_1850282_7" (
"species" text,
"common_name" text,
"trinidad" text,
"tobago" text,
"bocas_is" text,
"other" text
); | SELECT "bocas_is" FROM "table1_1850282_7" WHERE "species"='Chironius multiventris septentrionalis'; | 1-1850282-7 |
Name the trindad for yellow-bellied puffing snake | CREATE TABLE "table1_1850282_7" (
"species" text,
"common_name" text,
"trinidad" text,
"tobago" text,
"bocas_is" text,
"other" text
); | SELECT "trinidad" FROM "table1_1850282_7" WHERE "common_name"='Yellow-bellied puffing snake'; | 1-1850282-7 |
Name the common name for chironius multiventris septentrionalis | CREATE TABLE "table1_1850282_7" (
"species" text,
"common_name" text,
"trinidad" text,
"tobago" text,
"bocas_is" text,
"other" text
); | SELECT "common_name" FROM "table1_1850282_7" WHERE "species"='Chironius multiventris septentrionalis'; | 1-1850282-7 |
What contestant was premiered on July 25? | CREATE TABLE "season_2" (
"contestant_name" text,
"episode_num" real,
"date_premiered_2009" text,
"winning_amount" text,
"eliminated_contestant" text
); | SELECT "contestant_name" FROM "season_2" WHERE "date_premiered_2009"='July 25'; | 1-18513028-3 |
What's the Air Force - Navy score in the 2018 season? | CREATE TABLE "table1_1850339_2" (
"season" real,
"trophy_winner" text,
"air_force_navy_score" text,
"air_force_army_score" text,
"army_navy_score" text
); | SELECT "air_force_navy_score" FROM "table1_1850339_2" WHERE "season"=2018; | 1-1850339-2 |
What was the Air Force - Navy score in the 1983 season? | CREATE TABLE "table1_1850339_2" (
"season" real,
"trophy_winner" text,
"air_force_navy_score" text,
"air_force_army_score" text,
"army_navy_score" text
); | SELECT "air_force_navy_score" FROM "table1_1850339_2" WHERE "season"=1983; | 1-1850339-2 |
How many different season have an Army - Navy score of 10 dec. 2016 at Baltimore, MD (M&T Bank Stadium)? | CREATE TABLE "table1_1850339_2" (
"season" real,
"trophy_winner" text,
"air_force_navy_score" text,
"air_force_army_score" text,
"army_navy_score" text
); | SELECT COUNT("season") FROM "table1_1850339_2" WHERE "army_navy_score"='10 Dec. 2016 at Baltimore, MD (M&T Bank Stadium)'; | 1-1850339-2 |
In the first episode of Garfield titled Robodie II, what is the title of the U.S. Acres Episode? | CREATE TABLE "table1_1852270_5" (
"episode" text,
"garfield_episode_1" text,
"u_s_acres_episode" text,
"garfield_episode_2" text,
"original_airdate" text
); | SELECT "u_s_acres_episode" FROM "table1_1852270_5" WHERE "garfield_episode_1"='Robodie II'; | 1-1852270-5 |
What is the title of the first episode of Garfield that is followed by the second episode of Garfield titled Mamma Manicotti? | CREATE TABLE "table1_1852270_5" (
"episode" text,
"garfield_episode_1" text,
"u_s_acres_episode" text,
"garfield_episode_2" text,
"original_airdate" text
); | SELECT "garfield_episode_1" FROM "table1_1852270_5" WHERE "garfield_episode_2"='Mamma Manicotti'; | 1-1852270-5 |
What is the name of the US Acres episode following the Garfield episode titled Robodie II? | CREATE TABLE "table1_1852270_5" (
"episode" text,
"garfield_episode_1" text,
"u_s_acres_episode" text,
"garfield_episode_2" text,
"original_airdate" text
); | SELECT "u_s_acres_episode" FROM "table1_1852270_5" WHERE "garfield_episode_1"='Robodie II'; | 1-1852270-5 |
what is the 2nd garfield episode for garfield episode 1 twice told tale | CREATE TABLE "table1_1852270_4" (
"episode" text,
"garfield_episode_1" text,
"u_s_acres_episode" text,
"garfield_episode_2" text,
"original_airdate" text
); | SELECT "garfield_episode_2" FROM "table1_1852270_4" WHERE "garfield_episode_1"='Twice Told Tale'; | 1-1852270-4 |
what is the 2nd garfield episode where u.s. acres episode is the orson awards | CREATE TABLE "table1_1852270_4" (
"episode" text,
"garfield_episode_1" text,
"u_s_acres_episode" text,
"garfield_episode_2" text,
"original_airdate" text
); | SELECT "garfield_episode_1" FROM "table1_1852270_4" WHERE "u_s_acres_episode"='The Orson Awards'; | 1-1852270-4 |
how many 2nd episodes for u.s. acres episode the orson awards | CREATE TABLE "table1_1852270_4" (
"episode" text,
"garfield_episode_1" text,
"u_s_acres_episode" text,
"garfield_episode_2" text,
"original_airdate" text
); | SELECT COUNT("garfield_episode_2") FROM "table1_1852270_4" WHERE "u_s_acres_episode"='The Orson Awards'; | 1-1852270-4 |
what is the original airdate for garfield episode 2 the wise man | CREATE TABLE "table1_1852270_4" (
"episode" text,
"garfield_episode_1" text,
"u_s_acres_episode" text,
"garfield_episode_2" text,
"original_airdate" text
); | SELECT "original_airdate" FROM "table1_1852270_4" WHERE "garfield_episode_2"='The Wise Man'; | 1-1852270-4 |
what is the 2nd garfield episode where u.s. acres episode is the bunny rabbits is coming! | CREATE TABLE "table1_1852270_4" (
"episode" text,
"garfield_episode_1" text,
"u_s_acres_episode" text,
"garfield_episode_2" text,
"original_airdate" text
); | SELECT "garfield_episode_2" FROM "table1_1852270_4" WHERE "u_s_acres_episode"='The Bunny Rabbits is Coming!'; | 1-1852270-4 |
which episode had garfield episode 1 ship shape | CREATE TABLE "table1_1852270_4" (
"episode" text,
"garfield_episode_1" text,
"u_s_acres_episode" text,
"garfield_episode_2" text,
"original_airdate" text
); | SELECT "episode" FROM "table1_1852270_4" WHERE "garfield_episode_1"='Ship Shape'; | 1-1852270-4 |
Which Garfield episode 2 has Garfield episode 1 as the first annual Garfield watchers test? | CREATE TABLE "table1_1852270_6" (
"episode" text,
"garfield_episode_1" text,
"u_s_acres_episode" text,
"garfield_episode_2" text,
"original_airdate" text
); | SELECT "garfield_episode_2" FROM "table1_1852270_6" WHERE "garfield_episode_1"='The First Annual Garfield Watchers Test'; | 1-1852270-6 |
What is the original air date of the u.s. acres episode who done it? | CREATE TABLE "table1_1852270_6" (
"episode" text,
"garfield_episode_1" text,
"u_s_acres_episode" text,
"garfield_episode_2" text,
"original_airdate" text
); | SELECT "original_airdate" FROM "table1_1852270_6" WHERE "u_s_acres_episode"='Who Done It?'; | 1-1852270-6 |
Which episode in Garfield episode 1 is the worst pizza in the history of mankind? | CREATE TABLE "table1_1852270_6" (
"episode" text,
"garfield_episode_1" text,
"u_s_acres_episode" text,
"garfield_episode_2" text,
"original_airdate" text
); | SELECT "episode" FROM "table1_1852270_6" WHERE "garfield_episode_1"='The Worst Pizza in the History of Mankind'; | 1-1852270-6 |
How many original airdates is Garfield episode 1 is cute for loot? | CREATE TABLE "table1_1852270_6" (
"episode" text,
"garfield_episode_1" text,
"u_s_acres_episode" text,
"garfield_episode_2" text,
"original_airdate" text
); | SELECT COUNT("original_airdate") FROM "table1_1852270_6" WHERE "garfield_episode_1"='Cute for Loot'; | 1-1852270-6 |
Which u.s.acres episode has "show 79" as the episode? | CREATE TABLE "table1_1852270_6" (
"episode" text,
"garfield_episode_1" text,
"u_s_acres_episode" text,
"garfield_episode_2" text,
"original_airdate" text
); | SELECT "u_s_acres_episode" FROM "table1_1852270_6" WHERE "episode"='\"Show 79\"'; | 1-1852270-6 |
How many u.s. episodes have Garfield episode 2 the picnic panic? | CREATE TABLE "table1_1852270_6" (
"episode" text,
"garfield_episode_1" text,
"u_s_acres_episode" text,
"garfield_episode_2" text,
"original_airdate" text
); | SELECT COUNT("u_s_acres_episode") FROM "table1_1852270_6" WHERE "garfield_episode_2"='The Picnic Panic'; | 1-1852270-6 |
what is the garfield episode where us acres episode is banana nose? | CREATE TABLE "table1_1852270_2" (
"episode" text,
"garfield_episode_1" text,
"u_s_acres_episode" text,
"garfield_episode_2" text,
"original_airdate" text
); | SELECT "garfield_episode_2" FROM "table1_1852270_2" WHERE "u_s_acres_episode"='Banana Nose'; | 1-1852270-2 |
what is the original airdate for shell shocked sheldon? | CREATE TABLE "table1_1852270_2" (
"episode" text,
"garfield_episode_1" text,
"u_s_acres_episode" text,
"garfield_episode_2" text,
"original_airdate" text
); | SELECT "original_airdate" FROM "table1_1852270_2" WHERE "u_s_acres_episode"='Shell Shocked Sheldon'; | 1-1852270-2 |
What is episode 2 for Robodie? | CREATE TABLE "table1_1852270_3" (
"episode" text,
"garfield_episode_1" text,
"u_s_acres_episode" text,
"garfield_episode_2" text,
"original_airdate" text
); | SELECT "garfield_episode_2" FROM "table1_1852270_3" WHERE "garfield_episode_1"='Robodie'; | 1-1852270-3 |
What are the episodes for "Crime and Nourishment"? | CREATE TABLE "table1_1852270_3" (
"episode" text,
"garfield_episode_1" text,
"u_s_acres_episode" text,
"garfield_episode_2" text,
"original_airdate" text
); | SELECT "episode" FROM "table1_1852270_3" WHERE "garfield_episode_2"='Crime and Nourishment'; | 1-1852270-3 |
What is the garfield episode 2 when episode 1 is "change of mind"? | CREATE TABLE "table1_1852270_8" (
"episode" text,
"garfield_episode_1" text,
"u_s_acres_episode" text,
"garfield_episode_2" text,
"original_airdate" text
); | SELECT "garfield_episode_2" FROM "table1_1852270_8" WHERE "garfield_episode_1"='Change Of Mind'; | 1-1852270-8 |
What is the title of garfield episode 2 when "the horror hostess (part 1)" is episode 1? | CREATE TABLE "table1_1852270_8" (
"episode" text,
"garfield_episode_1" text,
"u_s_acres_episode" text,
"garfield_episode_2" text,
"original_airdate" text
); | SELECT "garfield_episode_2" FROM "table1_1852270_8" WHERE "garfield_episode_1"='The Horror Hostess (Part 1)'; | 1-1852270-8 |
What is the name of episode 2 for garfield when episode 1 is "suburban jungle"? | CREATE TABLE "table1_1852270_8" (
"episode" text,
"garfield_episode_1" text,
"u_s_acres_episode" text,
"garfield_episode_2" text,
"original_airdate" text
); | SELECT "garfield_episode_2" FROM "table1_1852270_8" WHERE "garfield_episode_1"='Suburban Jungle'; | 1-1852270-8 |
What is episode 2 of garfield when episode 1 is "the horror hostess (part 1)"? | CREATE TABLE "table1_1852270_8" (
"episode" text,
"garfield_episode_1" text,
"u_s_acres_episode" text,
"garfield_episode_2" text,
"original_airdate" text
); | SELECT "garfield_episode_2" FROM "table1_1852270_8" WHERE "garfield_episode_1"='The Horror Hostess (Part 1)'; | 1-1852270-8 |
Name the tourism receipts 2003 for tourism competitiveness 3.26 | CREATE TABLE "performance_indicators_for_international" (
"country" text,
"tourist_arrivals_2011_millions" text,
"tourism_receipts_2011_millions_of_us" real,
"tourism_receipts_2011_us_per_arrival" real,
"tourism_receipts_2011_us_per_capita" real,
"tourism_receipts_2003_as_pct_of_gdp" text,
"tourism_receipts_2003_as_pct_of_exports" text,
"direct_and_indirect_employment_in_tourism_2005_pct" text,
"tourism_competitiveness_2011_ttci" text
); | SELECT COUNT("tourism_receipts_2003_as_pct_of_exports") FROM "performance_indicators_for_international" WHERE "tourism_competitiveness_2011_ttci"='3.26'; | 1-18524-6 |
Name the tourism receipts 2003 for colombia | CREATE TABLE "performance_indicators_for_international" (
"country" text,
"tourist_arrivals_2011_millions" text,
"tourism_receipts_2011_millions_of_us" real,
"tourism_receipts_2011_us_per_arrival" real,
"tourism_receipts_2011_us_per_capita" real,
"tourism_receipts_2003_as_pct_of_gdp" text,
"tourism_receipts_2003_as_pct_of_exports" text,
"direct_and_indirect_employment_in_tourism_2005_pct" text,
"tourism_competitiveness_2011_ttci" text
); | SELECT "tourism_receipts_2003_as_pct_of_gdp" FROM "performance_indicators_for_international" WHERE "country"='Colombia'; | 1-18524-6 |
Name the total number of tourism receipts 2011 where tourism receipts 2003 13.5 | CREATE TABLE "performance_indicators_for_international" (
"country" text,
"tourist_arrivals_2011_millions" text,
"tourism_receipts_2011_millions_of_us" real,
"tourism_receipts_2011_us_per_arrival" real,
"tourism_receipts_2011_us_per_capita" real,
"tourism_receipts_2003_as_pct_of_gdp" text,
"tourism_receipts_2003_as_pct_of_exports" text,
"direct_and_indirect_employment_in_tourism_2005_pct" text,
"tourism_competitiveness_2011_ttci" text
); | SELECT COUNT("tourism_receipts_2011_us_per_capita") FROM "performance_indicators_for_international" WHERE "tourism_receipts_2003_as_pct_of_gdp"='13.5'; | 1-18524-6 |
When classic hits 102.1 cjcy is the branding who is the owner? | CREATE TABLE "radio" (
"frequency" text,
"call_sign" text,
"branding" text,
"format" text,
"owner" text,
"language_rebroadcast" text
); | SELECT "owner" FROM "radio" WHERE "branding"='Classic Hits 102.1 CJCY'; | 1-18536769-1 |
When hot adult contemporary is the format what is the call sign? | CREATE TABLE "radio" (
"frequency" text,
"call_sign" text,
"branding" text,
"format" text,
"owner" text,
"language_rebroadcast" text
); | SELECT "call_sign" FROM "radio" WHERE "format"='hot adult contemporary'; | 1-18536769-1 |
When vista radio is the owner how many call signs are there? | CREATE TABLE "radio" (
"frequency" text,
"call_sign" text,
"branding" text,
"format" text,
"owner" text,
"language_rebroadcast" text
); | SELECT COUNT("call_sign") FROM "radio" WHERE "owner"='Vista Radio'; | 1-18536769-1 |
When fm 97.3 is the frequency how many formats are there? | CREATE TABLE "radio" (
"frequency" text,
"call_sign" text,
"branding" text,
"format" text,
"owner" text,
"language_rebroadcast" text
); | SELECT COUNT("format") FROM "radio" WHERE "frequency"='FM 97.3'; | 1-18536769-1 |
When vista radio is the owner what is the frequency? | CREATE TABLE "radio" (
"frequency" text,
"call_sign" text,
"branding" text,
"format" text,
"owner" text,
"language_rebroadcast" text
); | SELECT "frequency" FROM "radio" WHERE "owner"='Vista Radio'; | 1-18536769-1 |
Name the team for 5 september 2008 for date of vacancy for 30 august 2008 | CREATE TABLE "managerial_changes" (
"team" text,
"outgoing_manager" text,
"manner_of_departure" text,
"date_of_vacancy" text,
"replaced_by" text,
"date_of_appointment" text,
"position_in_table" text
); | SELECT "team" FROM "managerial_changes" WHERE "date_of_appointment"='5 September 2008' AND "date_of_vacancy"='30 August 2008'; | 1-18522916-5 |
Name the date of vacancy for daniel uberti | CREATE TABLE "managerial_changes" (
"team" text,
"outgoing_manager" text,
"manner_of_departure" text,
"date_of_vacancy" text,
"replaced_by" text,
"date_of_appointment" text,
"position_in_table" text
); | SELECT "date_of_vacancy" FROM "managerial_changes" WHERE "outgoing_manager"='Daniel Uberti'; | 1-18522916-5 |
Name the manner of departure for date of vacancy 25 august 2008 | CREATE TABLE "managerial_changes" (
"team" text,
"outgoing_manager" text,
"manner_of_departure" text,
"date_of_vacancy" text,
"replaced_by" text,
"date_of_appointment" text,
"position_in_table" text
); | SELECT "manner_of_departure" FROM "managerial_changes" WHERE "date_of_vacancy"='25 August 2008'; | 1-18522916-5 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.