question stringlengths 12 244 | create_table_statement stringlengths 97 895 | sql_query stringlengths 27 479 | wiki_sql_table_id stringlengths 8 14 |
|---|---|---|---|
What was the record for the Argonauts on September 7? | CREATE TABLE "schedule" (
"week" real,
"date" text,
"opponent" text,
"location" text,
"final_score" text,
"attendance" real,
"record" text
); | SELECT "record" FROM "schedule" WHERE "date"='September 7'; | 1-24136814-3 |
What is he smallest numbered week? | CREATE TABLE "schedule" (
"week" real,
"date" text,
"opponent" text,
"location" text,
"final_score" text,
"attendance" real,
"record" text
); | SELECT MIN("week") FROM "schedule"; | 1-24136814-3 |
How many violines are suggested in the "Arranged by Nelson Riddle" reference with section size of 12 players? | CREATE TABLE "suggested_string_section_sizes" (
"reference" text,
"author" text,
"section_size" text,
"violins" real,
"violas" real,
"celli" real,
"basses" real
); | SELECT "violins" FROM "suggested_string_section_sizes" WHERE "reference"='\"Arranged By Nelson Riddle\"' AND "section_size"='12 players'; | 1-2414-1 |
How many cellos are suggested in the reference with section size for 20 players? | CREATE TABLE "suggested_string_section_sizes" (
"reference" text,
"author" text,
"section_size" text,
"violins" real,
"violas" real,
"celli" real,
"basses" real
); | SELECT "celli" FROM "suggested_string_section_sizes" WHERE "section_size"='20 players'; | 1-2414-1 |
What reference, written by Nelson Riddle, suggests 2 violas? | CREATE TABLE "suggested_string_section_sizes" (
"reference" text,
"author" text,
"section_size" text,
"violins" real,
"violas" real,
"celli" real,
"basses" real
); | SELECT "reference" FROM "suggested_string_section_sizes" WHERE "violas"=2 AND "author"='Nelson Riddle'; | 1-2414-1 |
What is the biggest number of basses suggested in either one of the references? | CREATE TABLE "suggested_string_section_sizes" (
"reference" text,
"author" text,
"section_size" text,
"violins" real,
"violas" real,
"celli" real,
"basses" real
); | SELECT MAX("basses") FROM "suggested_string_section_sizes"; | 1-2414-1 |
What is Stella Farentino's current relationship status? | CREATE TABLE "television" (
"name" text,
"deceased_spouse" text,
"cause_of_death" text,
"date_of_spouses_death" text,
"length_of_marriage" text,
"children_together" text,
"current_marital_status" text
); | SELECT "current_marital_status" FROM "television" WHERE "name"='Stella Farentino'; | 1-24143253-2 |
How many children did Dennis Hawley have at his time of death? | CREATE TABLE "television" (
"name" text,
"deceased_spouse" text,
"cause_of_death" text,
"date_of_spouses_death" text,
"length_of_marriage" text,
"children_together" text,
"current_marital_status" text
); | SELECT "children_together" FROM "television" WHERE "deceased_spouse"='Dennis Hawley'; | 1-24143253-2 |
How did Stella Farentino die? | CREATE TABLE "television" (
"name" text,
"deceased_spouse" text,
"cause_of_death" text,
"date_of_spouses_death" text,
"length_of_marriage" text,
"children_together" text,
"current_marital_status" text
); | SELECT "cause_of_death" FROM "television" WHERE "name"='Stella Farentino'; | 1-24143253-2 |
What was the cause of death in the marriage that lasted 28 years? | CREATE TABLE "literature" (
"name" text,
"deceased_spouse" text,
"cause_of_death" text,
"date_of_spouses_death" text,
"length_of_marriage" text,
"children_together" text,
"current_marital_status" text
); | SELECT "cause_of_death" FROM "literature" WHERE "length_of_marriage"='28 years'; | 1-24143253-4 |
How long were Ray Bradbury and his wife married? | CREATE TABLE "literature" (
"name" text,
"deceased_spouse" text,
"cause_of_death" text,
"date_of_spouses_death" text,
"length_of_marriage" text,
"children_together" text,
"current_marital_status" text
); | SELECT "length_of_marriage" FROM "literature" WHERE "name"='Ray Bradbury'; | 1-24143253-4 |
Name the name for deceased spouse being louis malle | CREATE TABLE "film" (
"name" text,
"deceased_spouse" text,
"cause_of_death" text,
"date_of_spouses_death" text,
"length_of_marriage" text,
"children_together" text,
"current_marital_status" text
); | SELECT "name" FROM "film" WHERE "deceased_spouse"='Louis Malle'; | 1-24143253-1 |
Name the deceased spouse for length of marriage being 24 years | CREATE TABLE "film" (
"name" text,
"deceased_spouse" text,
"cause_of_death" text,
"date_of_spouses_death" text,
"length_of_marriage" text,
"children_together" text,
"current_marital_status" text
); | SELECT "deceased_spouse" FROM "film" WHERE "length_of_marriage"='24 years'; | 1-24143253-1 |
Name the decease spouse for carol deluise | CREATE TABLE "film" (
"name" text,
"deceased_spouse" text,
"cause_of_death" text,
"date_of_spouses_death" text,
"length_of_marriage" text,
"children_together" text,
"current_marital_status" text
); | SELECT "deceased_spouse" FROM "film" WHERE "name"='Carol DeLuise'; | 1-24143253-1 |
Name the children together for 9 years of marriage | CREATE TABLE "film" (
"name" text,
"deceased_spouse" text,
"cause_of_death" text,
"date_of_spouses_death" text,
"length_of_marriage" text,
"children_together" text,
"current_marital_status" text
); | SELECT "children_together" FROM "film" WHERE "length_of_marriage"='9 years'; | 1-24143253-1 |
Who was the deceased spouse who was married for 4 years? | CREATE TABLE "u_s_presidents" (
"name" text,
"deceased_spouse" text,
"cause_of_death" text,
"date_of_spouses_death" text,
"length_of_marriage" text,
"children_together" text,
"current_marital_status" text
); | SELECT "deceased_spouse" FROM "u_s_presidents" WHERE "length_of_marriage"='4 years'; | 1-24143253-5 |
Who were the children of Benjamin Harrison? | CREATE TABLE "u_s_presidents" (
"name" text,
"deceased_spouse" text,
"cause_of_death" text,
"date_of_spouses_death" text,
"length_of_marriage" text,
"children_together" text,
"current_marital_status" text
); | SELECT "children_together" FROM "u_s_presidents" WHERE "name"='Benjamin Harrison'; | 1-24143253-5 |
Name the segment 1 for episode # 2/225 | CREATE TABLE "table1_24172078_2" (
"episode_num" text,
"segment_1" text,
"segment_2" text,
"original_airdate" text,
"lessons_taught" text
); | SELECT "segment_1" FROM "table1_24172078_2" WHERE "episode_num"='2/225'; | 1-24172078-2 |
Name the lessons taught for episode # 2/205 | CREATE TABLE "table1_24172078_2" (
"episode_num" text,
"segment_1" text,
"segment_2" text,
"original_airdate" text,
"lessons_taught" text
); | SELECT "lessons_taught" FROM "table1_24172078_2" WHERE "episode_num"='2/205'; | 1-24172078-2 |
What state had william bigler (d) as a successor) | CREATE TABLE "table1_2417308_3" (
"state_class" text,
"vacator" text,
"reason_for_change" text,
"successor" text,
"date_of_successors_formal_installation" text
); | SELECT "state_class" FROM "table1_2417308_3" WHERE "successor"='William Bigler (D)'; | 1-2417308-3 |
Name the date successor seated for successor being vacant | CREATE TABLE "table1_2417330_4" (
"district" text,
"vacator" text,
"reason_for_change" text,
"successor" text,
"date_successor_seated" text
); | SELECT "date_successor_seated" FROM "table1_2417330_4" WHERE "successor"='Vacant'; | 1-2417330-4 |
Name the vacator for kentucky 2nd | CREATE TABLE "table1_2417330_4" (
"district" text,
"vacator" text,
"reason_for_change" text,
"successor" text,
"date_successor_seated" text
); | SELECT "vacator" FROM "table1_2417330_4" WHERE "district"='Kentucky 2nd'; | 1-2417330-4 |
Name the successor for election was successfully contested july 30, 1861 | CREATE TABLE "table1_2417330_4" (
"district" text,
"vacator" text,
"reason_for_change" text,
"successor" text,
"date_successor_seated" text
); | SELECT "successor" FROM "table1_2417330_4" WHERE "reason_for_change"='Election was successfully contested July 30, 1861'; | 1-2417330-4 |
Name the successor for vacant and december 3, 1862 | CREATE TABLE "table1_2417330_4" (
"district" text,
"vacator" text,
"reason_for_change" text,
"successor" text,
"date_successor_seated" text
); | SELECT "successor" FROM "table1_2417330_4" WHERE "reason_for_change"='Vacant' AND "date_successor_seated"='December 3, 1862'; | 1-2417330-4 |
What was the vacator for georgia 2nd? | CREATE TABLE "table1_2417340_4" (
"district" text,
"vacator" text,
"reason_for_change" text,
"successor" text,
"date_successor_seated" text
); | SELECT "vacator" FROM "table1_2417340_4" WHERE "district"='Georgia 2nd'; | 1-2417340-4 |
What was the successor for vacant alabama 3rd? | CREATE TABLE "table1_2417340_4" (
"district" text,
"vacator" text,
"reason_for_change" text,
"successor" text,
"date_successor_seated" text
); | SELECT "successor" FROM "table1_2417340_4" WHERE "vacator"='Vacant' AND "district"='Alabama 3rd'; | 1-2417340-4 |
Who was the successor for vacant louisiana 5th | CREATE TABLE "table1_2417340_4" (
"district" text,
"vacator" text,
"reason_for_change" text,
"successor" text,
"date_successor_seated" text
); | SELECT "successor" FROM "table1_2417340_4" WHERE "vacator"='Vacant' AND "district"='Louisiana 5th'; | 1-2417340-4 |
Who were the successors when the date the successors were installed was February 23, 1870? | CREATE TABLE "table1_2417345_3" (
"state_class" text,
"vacator" text,
"reason_for_change" text,
"successor" text,
"date_of_successors_formal_installation" text
); | SELECT "successor" FROM "table1_2417345_3" WHERE "date_of_successors_formal_installation"='February 23, 1870'; | 1-2417345-3 |
Who was the vacator when the successor was formally installed on February 1, 1871? | CREATE TABLE "table1_2417345_3" (
"state_class" text,
"vacator" text,
"reason_for_change" text,
"successor" text,
"date_of_successors_formal_installation" text
); | SELECT "vacator" FROM "table1_2417345_3" WHERE "date_of_successors_formal_installation"='February 1, 1871'; | 1-2417345-3 |
Who was the successor that was formally installed on March 30, 1870? | CREATE TABLE "table1_2417345_3" (
"state_class" text,
"vacator" text,
"reason_for_change" text,
"successor" text,
"date_of_successors_formal_installation" text
); | SELECT "successor" FROM "table1_2417345_3" WHERE "date_of_successors_formal_installation"='March 30, 1870'; | 1-2417345-3 |
When did Orville H. Browning (r) succeed? | CREATE TABLE "table1_2417330_3" (
"state_class" text,
"vacator" text,
"reason_for_change" text,
"successor" text,
"date_of_successors_formal_installation" text
); | SELECT "date_of_successors_formal_installation" FROM "table1_2417330_3" WHERE "successor"='Orville H. Browning (R)'; | 1-2417330-3 |
List all dates of succession in the state class Missouri (3). | CREATE TABLE "table1_2417330_3" (
"state_class" text,
"vacator" text,
"reason_for_change" text,
"successor" text,
"date_of_successors_formal_installation" text
); | SELECT "date_of_successors_formal_installation" FROM "table1_2417330_3" WHERE "state_class"='Missouri (3)'; | 1-2417330-3 |
List the number of vacators when successors were formally installed on June 22, 1868. | CREATE TABLE "table1_2417340_3" (
"state_class" text,
"vacator" text,
"reason_for_change" text,
"successor" text,
"date_of_successors_formal_installation" text
); | SELECT COUNT("vacator") FROM "table1_2417340_3" WHERE "date_of_successors_formal_installation"='June 22, 1868'; | 1-2417340-3 |
List all state classes when successors were formally installed on June 22, 1868. | CREATE TABLE "table1_2417340_3" (
"state_class" text,
"vacator" text,
"reason_for_change" text,
"successor" text,
"date_of_successors_formal_installation" text
); | SELECT "state_class" FROM "table1_2417340_3" WHERE "date_of_successors_formal_installation"='June 22, 1868'; | 1-2417340-3 |
What was the reason for change to the successor that was seated on December 13, 1880? | CREATE TABLE "table1_2417395_4" (
"district" text,
"vacator" text,
"reason_for_change" text,
"successor" text,
"date_successor_seated" text
); | SELECT "reason_for_change" FROM "table1_2417395_4" WHERE "date_successor_seated"='December 13, 1880'; | 1-2417395-4 |
When the person died May 22, 1895 is the reason for vacancy what is the district? | CREATE TABLE "table1_2417445_4" (
"district" text,
"vacator" text,
"reason_for_vacancy" text,
"successor" text,
"date_of_successors_taking_office" text
); | SELECT "district" FROM "table1_2417445_4" WHERE "reason_for_vacancy"='Died May 22, 1895'; | 1-2417445-4 |
When frederick remann (r) is the vacator what is the reason for vacancy? | CREATE TABLE "table1_2417445_4" (
"district" text,
"vacator" text,
"reason_for_vacancy" text,
"successor" text,
"date_of_successors_taking_office" text
); | SELECT "reason_for_vacancy" FROM "table1_2417445_4" WHERE "vacator"='Frederick Remann (R)'; | 1-2417445-4 |
When rudolph kleberg (d) is the successor is the reason for vacancy? | CREATE TABLE "table1_2417445_4" (
"district" text,
"vacator" text,
"reason_for_vacancy" text,
"successor" text,
"date_of_successors_taking_office" text
); | SELECT "reason_for_vacancy" FROM "table1_2417445_4" WHERE "successor"='Rudolph Kleberg (D)'; | 1-2417445-4 |
When massachusetts 6th is the district what is the reason for vacancy? | CREATE TABLE "table1_2417445_4" (
"district" text,
"vacator" text,
"reason_for_vacancy" text,
"successor" text,
"date_of_successors_taking_office" text
); | SELECT "reason_for_vacancy" FROM "table1_2417445_4" WHERE "district"='Massachusetts 6th'; | 1-2417445-4 |
When rudolph kleberg (d) is the successor what is the date of successors taking office? | CREATE TABLE "table1_2417445_4" (
"district" text,
"vacator" text,
"reason_for_vacancy" text,
"successor" text,
"date_of_successors_taking_office" text
); | SELECT "date_of_successors_taking_office" FROM "table1_2417445_4" WHERE "successor"='Rudolph Kleberg (D)'; | 1-2417445-4 |
What geographical region is the province distrito nacional located in? | CREATE TABLE "delegates" (
"province_community" text,
"contestant" text,
"age" real,
"height" text,
"hometown" text,
"geographical_regions" text
); | SELECT "geographical_regions" FROM "delegates" WHERE "province_community"='Distrito Nacional'; | 1-24192031-2 |
What geographical region is contestant laura jiménez ynoa from? | CREATE TABLE "delegates" (
"province_community" text,
"contestant" text,
"age" real,
"height" text,
"hometown" text,
"geographical_regions" text
); | SELECT "geographical_regions" FROM "delegates" WHERE "contestant"='Laura Jiménez Ynoa'; | 1-24192031-2 |
How many hometowns have a height of m (ft 10 1⁄2 in)? | CREATE TABLE "delegates" (
"province_community" text,
"contestant" text,
"age" real,
"height" text,
"hometown" text,
"geographical_regions" text
); | SELECT COUNT("hometown") FROM "delegates" WHERE "height"='m (ft 10 1⁄2 in)'; | 1-24192031-2 |
Which contestant is from the province of baoruco | CREATE TABLE "delegates" (
"province_community" text,
"contestant" text,
"age" real,
"height" text,
"hometown" text,
"geographical_regions" text
); | SELECT "contestant" FROM "delegates" WHERE "province_community"='Baoruco'; | 1-24192031-2 |
How old is the person with the height of m (ft 3⁄4 in)? | CREATE TABLE "delegates" (
"province_community" text,
"contestant" text,
"age" real,
"height" text,
"hometown" text,
"geographical_regions" text
); | SELECT "age" FROM "delegates" WHERE "height"='m (ft 3⁄4 in)'; | 1-24192031-2 |
What was the number of viewers in millions for the broadcast from 2010? | CREATE TABLE "episodes" (
"episode" real,
"broadcast_date" real,
"bbc_one_presenter_s" text,
"starring" text,
"radio_1_presenter" text,
"viewers_millions" text
); | SELECT "viewers_millions" FROM "episodes" WHERE "broadcast_date"=2010; | 1-24212608-1 |
Who starred in episode 3? | CREATE TABLE "episodes" (
"episode" real,
"broadcast_date" real,
"bbc_one_presenter_s" text,
"starring" text,
"radio_1_presenter" text,
"viewers_millions" text
); | SELECT "starring" FROM "episodes" WHERE "episode"=3; | 1-24212608-1 |
How many episodes were broadcast in 2010? | CREATE TABLE "episodes" (
"episode" real,
"broadcast_date" real,
"bbc_one_presenter_s" text,
"starring" text,
"radio_1_presenter" text,
"viewers_millions" text
); | SELECT COUNT("episode") FROM "episodes" WHERE "broadcast_date"=2010; | 1-24212608-1 |
Who was the radio 1 presenter for the broadcast that had 9.73 million viewers? | CREATE TABLE "episodes" (
"episode" real,
"broadcast_date" real,
"bbc_one_presenter_s" text,
"starring" text,
"radio_1_presenter" text,
"viewers_millions" text
); | SELECT "radio_1_presenter" FROM "episodes" WHERE "viewers_millions"='9.73'; | 1-24212608-1 |
Name the powertrain for kmd and c40lf | CREATE TABLE "current_bus_fleet_roster" (
"order_year" real,
"fleet_series_qty" text,
"manufacturer" text,
"model" text,
"powertrain_engine_transmission" text,
"fuel_or_propulsion" text,
"division" text
); | SELECT "powertrain_engine_transmission" FROM "current_bus_fleet_roster" WHERE "division"='KMD' AND "model"='C40LF'; | 1-24193494-3 |
Name the division for detroit diesel series 50egr allison wb-400r | CREATE TABLE "current_bus_fleet_roster" (
"order_year" real,
"fleet_series_qty" text,
"manufacturer" text,
"model" text,
"powertrain_engine_transmission" text,
"fuel_or_propulsion" text,
"division" text
); | SELECT "division" FROM "current_bus_fleet_roster" WHERE "powertrain_engine_transmission"='Detroit Diesel Series 50EGR Allison WB-400R'; | 1-24193494-3 |
Name the manufacturer for 2011 | CREATE TABLE "current_bus_fleet_roster" (
"order_year" real,
"fleet_series_qty" text,
"manufacturer" text,
"model" text,
"powertrain_engine_transmission" text,
"fuel_or_propulsion" text,
"division" text
); | SELECT "manufacturer" FROM "current_bus_fleet_roster" WHERE "order_year"=2011; | 1-24193494-3 |
List the number of locations for the team known as the billikens. | CREATE TABLE "members" (
"institution" text,
"nickname" text,
"location" text,
"founded" real,
"type" text,
"enrollment" real,
"joined" real,
"left" real
); | SELECT COUNT("location") FROM "members" WHERE "nickname"='Billikens'; | 1-2419754-1 |
How many people are enrolled at the university in milwaukee, wisconsin | CREATE TABLE "members" (
"institution" text,
"nickname" text,
"location" text,
"founded" real,
"type" text,
"enrollment" real,
"joined" real,
"left" real
); | SELECT MIN("enrollment") FROM "members" WHERE "location"='Milwaukee, Wisconsin'; | 1-2419754-1 |
In what year did the teams leave the conference? | CREATE TABLE "members" (
"institution" text,
"nickname" text,
"location" text,
"founded" real,
"type" text,
"enrollment" real,
"joined" real,
"left" real
); | SELECT MAX("left") FROM "members"; | 1-2419754-1 |
What university team is referred to as the tigers? | CREATE TABLE "members" (
"institution" text,
"nickname" text,
"location" text,
"founded" real,
"type" text,
"enrollment" real,
"joined" real,
"left" real
); | SELECT "institution" FROM "members" WHERE "nickname"='Tigers'; | 1-2419754-1 |
When 43.048° n is the latitude what is the magnitude? | CREATE TABLE "list_of_foreshocks_and_aftershocks" (
"date_yyyy_mm_dd" text,
"time_utc" text,
"latitude" text,
"longitude" text,
"depth" text,
"magnitude" text
); | SELECT "magnitude" FROM "list_of_foreshocks_and_aftershocks" WHERE "latitude"='43.048° N'; | 1-24192190-1 |
When 9:47:38 is the time (utc) how many measurements of latitude are there? | CREATE TABLE "list_of_foreshocks_and_aftershocks" (
"date_yyyy_mm_dd" text,
"time_utc" text,
"latitude" text,
"longitude" text,
"depth" text,
"magnitude" text
); | SELECT COUNT("latitude") FROM "list_of_foreshocks_and_aftershocks" WHERE "time_utc"='9:47:38'; | 1-24192190-1 |
When 42.903° n is the latitude how many measurements of longitude are there? | CREATE TABLE "list_of_foreshocks_and_aftershocks" (
"date_yyyy_mm_dd" text,
"time_utc" text,
"latitude" text,
"longitude" text,
"depth" text,
"magnitude" text
); | SELECT COUNT("longitude") FROM "list_of_foreshocks_and_aftershocks" WHERE "latitude"='42.903° N'; | 1-24192190-1 |
When 11:40:26 is the time (utc) what is the depth? | CREATE TABLE "list_of_foreshocks_and_aftershocks" (
"date_yyyy_mm_dd" text,
"time_utc" text,
"latitude" text,
"longitude" text,
"depth" text,
"magnitude" text
); | SELECT "depth" FROM "list_of_foreshocks_and_aftershocks" WHERE "time_utc"='11:40:26'; | 1-24192190-1 |
Who is every main presenter for the year 2011? | CREATE TABLE "list_of_reality_television_show_franchis" (
"region_country" text,
"local_name" text,
"main_presenter" text,
"network" text,
"year_premiered" real
); | SELECT "main_presenter" FROM "list_of_reality_television_show_franchis" WHERE "year_premiered"=2011; | 1-24224647-2 |
Who is every main presenter for the Estonia region/country? | CREATE TABLE "list_of_reality_television_show_franchis" (
"region_country" text,
"local_name" text,
"main_presenter" text,
"network" text,
"year_premiered" real
); | SELECT "main_presenter" FROM "list_of_reality_television_show_franchis" WHERE "region_country"='Estonia'; | 1-24224647-2 |
What is the highest year premiered for the TV2 network when main present is øyvind mund? | CREATE TABLE "list_of_reality_television_show_franchis" (
"region_country" text,
"local_name" text,
"main_presenter" text,
"network" text,
"year_premiered" real
); | SELECT MAX("year_premiered") FROM "list_of_reality_television_show_franchis" WHERE "network"='TV2' AND "main_presenter"='Øyvind Mund'; | 1-24224647-2 |
How many years premiered have Sa Beining as main presenter? | CREATE TABLE "list_of_reality_television_show_franchis" (
"region_country" text,
"local_name" text,
"main_presenter" text,
"network" text,
"year_premiered" real
); | SELECT COUNT("year_premiered") FROM "list_of_reality_television_show_franchis" WHERE "main_presenter"='Sa Beining'; | 1-24224647-2 |
What is every year premiered when Behzat Uighur is main presenter? | CREATE TABLE "list_of_reality_television_show_franchis" (
"region_country" text,
"local_name" text,
"main_presenter" text,
"network" text,
"year_premiered" real
); | SELECT "year_premiered" FROM "list_of_reality_television_show_franchis" WHERE "main_presenter"='Behzat Uighur'; | 1-24224647-2 |
What is the highest year premiered when Benjamin Castaldi is main presenter? | CREATE TABLE "list_of_reality_television_show_franchis" (
"region_country" text,
"local_name" text,
"main_presenter" text,
"network" text,
"year_premiered" real
); | SELECT MAX("year_premiered") FROM "list_of_reality_television_show_franchis" WHERE "main_presenter"='Benjamin Castaldi'; | 1-24224647-2 |
Name the episode number for tasers and mind erasers | CREATE TABLE "united_kingdom" (
"episode_number_production_number" text,
"title" text,
"original_airdate" text,
"time_of_airing" text,
"total_viewers_on_hallmark" real,
"total_viewers_on_hallmark_1" real,
"total_viewers" real,
"rank_on_channel" text
); | SELECT "episode_number_production_number" FROM "united_kingdom" WHERE "title"='Tasers and Mind Erasers'; | 1-24222929-4 |
Name the original air date for 7 1-07 | CREATE TABLE "united_kingdom" (
"episode_number_production_number" text,
"title" text,
"original_airdate" text,
"time_of_airing" text,
"total_viewers_on_hallmark" real,
"total_viewers_on_hallmark_1" real,
"total_viewers" real,
"rank_on_channel" text
); | SELECT "original_airdate" FROM "united_kingdom" WHERE "episode_number_production_number"='7 1-07'; | 1-24222929-4 |
Name the total viewers on hallmark for pilot | CREATE TABLE "united_kingdom" (
"episode_number_production_number" text,
"title" text,
"original_airdate" text,
"time_of_airing" text,
"total_viewers_on_hallmark" real,
"total_viewers_on_hallmark_1" real,
"total_viewers" real,
"rank_on_channel" text
); | SELECT "total_viewers_on_hallmark_1" FROM "united_kingdom" WHERE "title"='Pilot'; | 1-24222929-4 |
Name the rank on channel mooning and crooning | CREATE TABLE "united_kingdom" (
"episode_number_production_number" text,
"title" text,
"original_airdate" text,
"time_of_airing" text,
"total_viewers_on_hallmark" real,
"total_viewers_on_hallmark_1" real,
"total_viewers" real,
"rank_on_channel" text
); | SELECT "rank_on_channel" FROM "united_kingdom" WHERE "title"='Mooning and Crooning'; | 1-24222929-4 |
Name the rank on channel for pilot | CREATE TABLE "united_kingdom" (
"episode_number_production_number" text,
"title" text,
"original_airdate" text,
"time_of_airing" text,
"total_viewers_on_hallmark" real,
"total_viewers_on_hallmark_1" real,
"total_viewers" real,
"rank_on_channel" text
); | SELECT "rank_on_channel" FROM "united_kingdom" WHERE "title"='Pilot'; | 1-24222929-4 |
What is the manner of departure for the team racing santander? | 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 "team"='Racing Santander'; | 1-24231638-3 |
Who replaced on the date of appointment 2 november 2010? | 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 "replaced_by" FROM "managerial_changes" WHERE "date_of_appointment"='2 November 2010'; | 1-24231638-3 |
What is the team for the position in table 19th? | 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 "position_in_table"='19th'; | 1-24231638-3 |
What is the team that the replaced by is miroslav đukić? | 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 "replaced_by"='Miroslav Đukić'; | 1-24231638-3 |
How many times was the date of vacancy 14 february 2011? | 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 COUNT("position_in_table") FROM "managerial_changes" WHERE "date_of_vacancy"='14 February 2011'; | 1-24231638-3 |
what is the date of appointment for the team osasuna? | 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_appointment" FROM "managerial_changes" WHERE "team"='Osasuna'; | 1-24231638-3 |
What is the lowest amount of L in any season? | CREATE TABLE "wilderness_years_1888_1893" (
"season" real,
"pl" real,
"w" real,
"l" real,
"d" real,
"captain" text,
"most_runs" text,
"most_wkts" text,
"wkt_keeper" text
); | SELECT MIN("l") FROM "wilderness_years_1888_1893"; | 1-24224991-2 |
What was the L in the season where Levi Wright had the most runs? | CREATE TABLE "wilderness_years_1888_1893" (
"season" real,
"pl" real,
"w" real,
"l" real,
"d" real,
"captain" text,
"most_runs" text,
"most_wkts" text,
"wkt_keeper" text
); | SELECT "l" FROM "wilderness_years_1888_1893" WHERE "most_runs"='Levi Wright'; | 1-24224991-2 |
Name the total number of votes for 3rd voted out day 9 | CREATE TABLE "table1_24233848_2" (
"episode" real,
"airdate" text,
"reward" text,
"immunity" text,
"eliminated" text,
"vote" text,
"finish" text
); | SELECT COUNT("vote") FROM "table1_24233848_2" WHERE "finish"='3rd Voted Out Day 9'; | 1-24233848-2 |
Name the eliminated 7th voted out day 21 | CREATE TABLE "table1_24233848_2" (
"episode" real,
"airdate" text,
"reward" text,
"immunity" text,
"eliminated" text,
"vote" text,
"finish" text
); | SELECT "eliminated" FROM "table1_24233848_2" WHERE "finish"='7th Voted Out Day 21'; | 1-24233848-2 |
Name the vote for thiago | CREATE TABLE "table1_24233848_2" (
"episode" real,
"airdate" text,
"reward" text,
"immunity" text,
"eliminated" text,
"vote" text,
"finish" text
); | SELECT "vote" FROM "table1_24233848_2" WHERE "eliminated"='Thiago'; | 1-24233848-2 |
Name the vote for 9th voted out day 22 | CREATE TABLE "table1_24233848_2" (
"episode" real,
"airdate" text,
"reward" text,
"immunity" text,
"eliminated" text,
"vote" text,
"finish" text
); | SELECT "vote" FROM "table1_24233848_2" WHERE "finish"='9th Voted Out Day 22'; | 1-24233848-2 |
Name the reward eliminated hilca | CREATE TABLE "table1_24233848_2" (
"episode" real,
"airdate" text,
"reward" text,
"immunity" text,
"eliminated" text,
"vote" text,
"finish" text
); | SELECT "reward" FROM "table1_24233848_2" WHERE "eliminated"='Hilca'; | 1-24233848-2 |
When the country is vest, what were the exports? | CREATE TABLE "development_regions" (
"county" text,
"exports_us_mil" text,
"percent_of_total_exports" text,
"imports_us_mil" text,
"percent_of_total_imports" text
); | SELECT "exports_us_mil" FROM "development_regions" WHERE "county"='Vest'; | 1-24239748-2 |
What was the major version when the webkit version was 528.17? | CREATE TABLE "windows" (
"major_version" text,
"minor_version" text,
"web_kit_version" text,
"operating_system" text,
"release_date" text,
"features" text
); | SELECT "major_version" FROM "windows" WHERE "web_kit_version"='528.17'; | 1-24257833-4 |
List major versions released on May 12, 2009, that had a minor version of 3.2.3. | CREATE TABLE "windows" (
"major_version" text,
"minor_version" text,
"web_kit_version" text,
"operating_system" text,
"release_date" text,
"features" text
); | SELECT "major_version" FROM "windows" WHERE "release_date"='May 12, 2009' AND "minor_version"='3.2.3'; | 1-24257833-4 |
What was the minor version released on April 16, 2008? | CREATE TABLE "windows" (
"major_version" text,
"minor_version" text,
"web_kit_version" text,
"operating_system" text,
"release_date" text,
"features" text
); | SELECT "minor_version" FROM "windows" WHERE "release_date"='April 16, 2008'; | 1-24257833-4 |
List all webkit versions when the major version was Safari 3, and the minor version was 3.1.2. | CREATE TABLE "windows" (
"major_version" text,
"minor_version" text,
"web_kit_version" text,
"operating_system" text,
"release_date" text,
"features" text
); | SELECT "web_kit_version" FROM "windows" WHERE "major_version"='Safari 3' AND "minor_version"='3.1.2'; | 1-24257833-4 |
List all OS's with a webkit version of 525.29.1. | CREATE TABLE "windows" (
"major_version" text,
"minor_version" text,
"web_kit_version" text,
"operating_system" text,
"release_date" text,
"features" text
); | SELECT "operating_system" FROM "windows" WHERE "web_kit_version"='525.29.1'; | 1-24257833-4 |
What is the webkit version when the minor version was 3.1.2.? | CREATE TABLE "windows" (
"major_version" text,
"minor_version" text,
"web_kit_version" text,
"operating_system" text,
"release_date" text,
"features" text
); | SELECT "web_kit_version" FROM "windows" WHERE "minor_version"='3.1.2'; | 1-24257833-4 |
What was the main legion base for the Romans when the notes were "primigenia goddess of fate. xx in batavi revolt"? | CREATE TABLE "table1_242785_3" (
"legion_no_and_title" text,
"main_legion_base" text,
"emblem" text,
"date_founded_founder" text,
"date_disband" text,
"castra_legionaria_legion_bases_main_base_start_date_31_bc_if_unspecified" text,
"notes" text
); | SELECT "main_legion_base" FROM "table1_242785_3" WHERE "notes"='Primigenia goddess of Fate. XX in Batavi revolt'; | 1-242785-3 |
What are the notes during 57 bc caesar? | CREATE TABLE "table1_242785_3" (
"legion_no_and_title" text,
"main_legion_base" text,
"emblem" text,
"date_founded_founder" text,
"date_disband" text,
"castra_legionaria_legion_bases_main_base_start_date_31_bc_if_unspecified" text,
"notes" text
); | SELECT "notes" FROM "table1_242785_3" WHERE "date_founded_founder"='57 BC Caesar'; | 1-242785-3 |
What are the notes when castra legionaria (legion bases) is 39-c.300 moguntiacum * (gs)? | CREATE TABLE "table1_242785_3" (
"legion_no_and_title" text,
"main_legion_base" text,
"emblem" text,
"date_founded_founder" text,
"date_disband" text,
"castra_legionaria_legion_bases_main_base_start_date_31_bc_if_unspecified" text,
"notes" text
); | SELECT "notes" FROM "table1_242785_3" WHERE "castra_legionaria_legion_bases_main_base_start_date_31_bc_if_unspecified"='39-c.300 Moguntiacum * (GS)'; | 1-242785-3 |
What is the date founded/founder when the emblem was Hercules? | CREATE TABLE "table1_242785_3" (
"legion_no_and_title" text,
"main_legion_base" text,
"emblem" text,
"date_founded_founder" text,
"date_disband" text,
"castra_legionaria_legion_bases_main_base_start_date_31_bc_if_unspecified" text,
"notes" text
); | SELECT "date_founded_founder" FROM "table1_242785_3" WHERE "emblem"='Hercules'; | 1-242785-3 |
What is the main legion base that disbanded 70 xx? | CREATE TABLE "table1_242785_3" (
"legion_no_and_title" text,
"main_legion_base" text,
"emblem" text,
"date_founded_founder" text,
"date_disband" text,
"castra_legionaria_legion_bases_main_base_start_date_31_bc_if_unspecified" text,
"notes" text
); | SELECT "main_legion_base" FROM "table1_242785_3" WHERE "date_disband"='70 XX'; | 1-242785-3 |
When did svishtov , bulgaria disband? | CREATE TABLE "table1_242785_1" (
"legion_no_and_title" text,
"main_legionary_base" text,
"emblem" text,
"date_founded_founder" text,
"date_disband" text,
"castra_legionaria_legion_bases_main_base_start_date_31_bc_if_unspecified" text,
"notes" text
); | SELECT "date_disband" FROM "table1_242785_1" WHERE "main_legionary_base"='Svishtov , Bulgaria'; | 1-242785-1 |
when notes are prima italica:raised for aborted caucasus war, when was that founded? | CREATE TABLE "table1_242785_1" (
"legion_no_and_title" text,
"main_legionary_base" text,
"emblem" text,
"date_founded_founder" text,
"date_disband" text,
"castra_legionaria_legion_bases_main_base_start_date_31_bc_if_unspecified" text,
"notes" text
); | SELECT "date_founded_founder" FROM "table1_242785_1" WHERE "notes"='prima Italica:raised for aborted Caucasus war'; | 1-242785-1 |
What are the notes for svishtov , bulgaria? | CREATE TABLE "table1_242785_1" (
"legion_no_and_title" text,
"main_legionary_base" text,
"emblem" text,
"date_founded_founder" text,
"date_disband" text,
"castra_legionaria_legion_bases_main_base_start_date_31_bc_if_unspecified" text,
"notes" text
); | SELECT "notes" FROM "table1_242785_1" WHERE "main_legionary_base"='Svishtov , Bulgaria'; | 1-242785-1 |
Name the team ranked 4 | CREATE TABLE "pitchers" (
"pitcher" text,
"strikeouts" real,
"season" real,
"team" text,
"league" text,
"overall_rank" real
); | SELECT COUNT("team") FROM "pitchers" WHERE "overall_rank"=4; | 1-242813-2 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.