question stringlengths 12 244 | create_table_statement stringlengths 97 895 | sql_query stringlengths 27 479 | wiki_sql_table_id stringlengths 8 14 |
|---|---|---|---|
What week #(s featured sara bareilles as the original artist? | CREATE TABLE "performances_results" (
"week_num" text,
"theme" text,
"song_choice" text,
"original_artist" text,
"order_num" text,
"result" text
); | SELECT "week_num" FROM "performances_results" WHERE "original_artist"='Sara Bareilles'; | 1-21501564-1 |
What week # featured first solo as the theme? | CREATE TABLE "performances_results" (
"week_num" text,
"theme" text,
"song_choice" text,
"original_artist" text,
"order_num" text,
"result" text
); | SELECT "week_num" FROM "performances_results" WHERE "theme"='First Solo'; | 1-21501564-1 |
How many weeks featured duffy as the original artist? | CREATE TABLE "performances_results" (
"week_num" text,
"theme" text,
"song_choice" text,
"original_artist" text,
"order_num" text,
"result" text
); | SELECT COUNT("theme") FROM "performances_results" WHERE "original_artist"='Duffy'; | 1-21501564-1 |
Who was the originally artist when Jasmine Murray was selected? | CREATE TABLE "performances_results" (
"week_num" text,
"theme" text,
"song_choice" text,
"original_artist" text,
"order_num" text,
"result" text
); | SELECT "original_artist" FROM "performances_results" WHERE "result"='Selected'; | 1-21501564-1 |
With theme the Year They Were Born, what is the song of choice? | CREATE TABLE "performances_results" (
"week_num" text,
"theme" text,
"song_choice" text,
"original_artist" text,
"order_num" text,
"result" text
); | SELECT "song_choice" FROM "performances_results" WHERE "theme"='Year They Were Born'; | 1-21501565-1 |
With order number 7 and the theme is Motown, who were the original artists? | CREATE TABLE "performances_results" (
"week_num" text,
"theme" text,
"song_choice" text,
"original_artist" text,
"order_num" text,
"result" text
); | SELECT "original_artist" FROM "performances_results" WHERE "order_num"='7' AND "theme"='Motown'; | 1-21501565-1 |
With an original artist names Bette Midler, what is the order number? | CREATE TABLE "performances_results" (
"week_num" text,
"theme" text,
"song_choice" text,
"original_artist" text,
"order_num" text,
"result" text
); | SELECT COUNT("order_num") FROM "performances_results" WHERE "original_artist"='Bette Midler'; | 1-21501565-1 |
With original artist of Tina Turner, what is the week number? | CREATE TABLE "performances_results" (
"week_num" text,
"theme" text,
"song_choice" text,
"original_artist" text,
"order_num" text,
"result" text
); | SELECT "week_num" FROM "performances_results" WHERE "original_artist"='Tina Turner'; | 1-21501565-1 |
Who is the original artist with a theme of N/A? | CREATE TABLE "performances_results" (
"week_num" text,
"theme" text,
"song_choice" text,
"original_artist" text,
"order_num" text,
"result" text
); | SELECT "original_artist" FROM "performances_results" WHERE "theme"='N/A'; | 1-21501565-1 |
Name the team for june 16 jeff gordon | CREATE TABLE "table1_2150776_1" (
"year" text,
"date" text,
"driver" text,
"team" text,
"manufacturer" text,
"laps" text,
"miles_km" text,
"race_time" text,
"average_speed_mph" text,
"report" text
); | SELECT "team" FROM "table1_2150776_1" WHERE "date"='June 16' AND "driver"='Jeff Gordon'; | 1-2150776-1 |
Name the driver for 200 laps 1997 | CREATE TABLE "table1_2150776_1" (
"year" text,
"date" text,
"driver" text,
"team" text,
"manufacturer" text,
"laps" text,
"miles_km" text,
"race_time" text,
"average_speed_mph" text,
"report" text
); | SELECT "driver" FROM "table1_2150776_1" WHERE "laps"='200' AND "year"='1997'; | 1-2150776-1 |
Name the team for ricky rudd | CREATE TABLE "table1_2150776_1" (
"year" text,
"date" text,
"driver" text,
"team" text,
"manufacturer" text,
"laps" text,
"miles_km" text,
"race_time" text,
"average_speed_mph" text,
"report" text
); | SELECT "team" FROM "table1_2150776_1" WHERE "driver"='Ricky Rudd'; | 1-2150776-1 |
What is the rank when RR2 has 4 points? | CREATE TABLE "round_robin" (
"team_name" text,
"races" real,
"won" real,
"rr1_pts" real,
"rr2_pts" real,
"rr3_pts" real,
"total_pts" real,
"ranking" real
); | SELECT "ranking" FROM "round_robin" WHERE "rr2_pts"=4; | 1-21515673-2 |
How many points does Swedish America's Cup Challenge have for rr1? | CREATE TABLE "round_robin" (
"team_name" text,
"races" real,
"won" real,
"rr1_pts" real,
"rr2_pts" real,
"rr3_pts" real,
"total_pts" real,
"ranking" real
); | SELECT COUNT("rr1_pts") FROM "round_robin" WHERE "team_name"='Swedish America''s Cup Challenge'; | 1-21515673-2 |
Who was the senior US senator in the state whose governor was D. Patrick? | CREATE TABLE "political_party_strength" (
"state" text,
"governor" text,
"senior_u_s_senator" text,
"junior_u_s_senator" text,
"u_s_house_delegation" text,
"upper_house_majority" text,
"lower_house_majority" text
); | SELECT "senior_u_s_senator" FROM "political_party_strength" WHERE "governor"='D. Patrick'; | 1-21531764-2 |
What's the lower house majority in the state whose Senior senator is J. Shaheen? | CREATE TABLE "political_party_strength" (
"state" text,
"governor" text,
"senior_u_s_senator" text,
"junior_u_s_senator" text,
"u_s_house_delegation" text,
"upper_house_majority" text,
"lower_house_majority" text
); | SELECT "lower_house_majority" FROM "political_party_strength" WHERE "senior_u_s_senator"='J. Shaheen'; | 1-21531764-2 |
Who is every name for time(cet) of 09:58? | CREATE TABLE "special_stages" (
"day" text,
"stage" text,
"time_cet" text,
"name" text,
"length" text,
"winner" text,
"time" text,
"avg_spd" text,
"rally_leader" text
); | SELECT "name" FROM "special_stages" WHERE "time_cet"='09:58'; | 1-21536557-2 |
What is every time(cet) for the name of Lillehammer 2? | CREATE TABLE "special_stages" (
"day" text,
"stage" text,
"time_cet" text,
"name" text,
"length" text,
"winner" text,
"time" text,
"avg_spd" text,
"rally_leader" text
); | SELECT "time_cet" FROM "special_stages" WHERE "name"='Lillehammer 2'; | 1-21536557-2 |
Who is every name for time(cet) of 09:03? | CREATE TABLE "special_stages" (
"day" text,
"stage" text,
"time_cet" text,
"name" text,
"length" text,
"winner" text,
"time" text,
"avg_spd" text,
"rally_leader" text
); | SELECT "name" FROM "special_stages" WHERE "time_cet"='09:03'; | 1-21536557-2 |
Which days have a stage of ss11? | CREATE TABLE "special_stages" (
"day" text,
"stage" text,
"time_cet" text,
"name" text,
"length" text,
"winner" text,
"time" text,
"avg_spd" text,
"rally_leader" text
); | SELECT "day" FROM "special_stages" WHERE "stage"='SS11'; | 1-21536557-2 |
What is every time(cet) for a time of 5:04.8? | CREATE TABLE "special_stages" (
"day" text,
"stage" text,
"time_cet" text,
"name" text,
"length" text,
"winner" text,
"time" text,
"avg_spd" text,
"rally_leader" text
); | SELECT "time_cet" FROM "special_stages" WHERE "time"='5:04.8'; | 1-21536557-2 |
How many calibers require the type LB/RN? | CREATE TABLE "euronorm_standard_for_security_glazing" (
"class" text,
"weapon" text,
"caliber" text,
"type" text,
"weight_g" text,
"range_m" text,
"velocity_m_s" text,
"impact_energy" text,
"shots" real
); | SELECT COUNT("caliber") FROM "euronorm_standard_for_security_glazing" WHERE "type"='LB/RN'; | 1-21538523-1 |
Type FJ/RN/SC is associated with what class? | CREATE TABLE "euronorm_standard_for_security_glazing" (
"class" text,
"weapon" text,
"caliber" text,
"type" text,
"weight_g" text,
"range_m" text,
"velocity_m_s" text,
"impact_energy" text,
"shots" real
); | SELECT "class" FROM "euronorm_standard_for_security_glazing" WHERE "type"='FJ/RN/SC'; | 1-21538523-1 |
What type of glazing will stop a .44 magnum? | CREATE TABLE "euronorm_standard_for_security_glazing" (
"class" text,
"weapon" text,
"caliber" text,
"type" text,
"weight_g" text,
"range_m" text,
"velocity_m_s" text,
"impact_energy" text,
"shots" real
); | SELECT "type" FROM "euronorm_standard_for_security_glazing" WHERE "caliber"='.44 Magnum'; | 1-21538523-1 |
What is the fewest shots a glazing can handle? | CREATE TABLE "euronorm_standard_for_security_glazing" (
"class" text,
"weapon" text,
"caliber" text,
"type" text,
"weight_g" text,
"range_m" text,
"velocity_m_s" text,
"impact_energy" text,
"shots" real
); | SELECT MIN("shots") FROM "euronorm_standard_for_security_glazing"; | 1-21538523-1 |
What range does type FJ/PB/SCP work at? | CREATE TABLE "euronorm_standard_for_security_glazing" (
"class" text,
"weapon" text,
"caliber" text,
"type" text,
"weight_g" text,
"range_m" text,
"velocity_m_s" text,
"impact_energy" text,
"shots" real
); | SELECT "range_m" FROM "euronorm_standard_for_security_glazing" WHERE "type"='FJ/PB/SCP'; | 1-21538523-1 |
Name the drivetrain for 2ur-fse | CREATE TABLE "table1_21530474_1" (
"chassis_code" text,
"model_no" text,
"production_years" text,
"drivetrain" text,
"transmission" text,
"engine_type" text,
"engine_code" text,
"region_s" text
); | SELECT "drivetrain" FROM "table1_21530474_1" WHERE "engine_code"='2UR-FSE'; | 1-21530474-1 |
Name the regions for usf45 | CREATE TABLE "table1_21530474_1" (
"chassis_code" text,
"model_no" text,
"production_years" text,
"drivetrain" text,
"transmission" text,
"engine_type" text,
"engine_code" text,
"region_s" text
); | SELECT "region_s" FROM "table1_21530474_1" WHERE "chassis_code"='USF45'; | 1-21530474-1 |
Name the model number for usf46 | CREATE TABLE "table1_21530474_1" (
"chassis_code" text,
"model_no" text,
"production_years" text,
"drivetrain" text,
"transmission" text,
"engine_type" text,
"engine_code" text,
"region_s" text
); | SELECT "model_no" FROM "table1_21530474_1" WHERE "chassis_code"='USF46'; | 1-21530474-1 |
Name the drivetrain for 1ur-fse for usf41 | CREATE TABLE "table1_21530474_1" (
"chassis_code" text,
"model_no" text,
"production_years" text,
"drivetrain" text,
"transmission" text,
"engine_type" text,
"engine_code" text,
"region_s" text
); | SELECT "drivetrain" FROM "table1_21530474_1" WHERE "engine_code"='1UR-FSE' AND "chassis_code"='USF41'; | 1-21530474-1 |
For the area which was 9.1 in October 2010, what is the figure for October 2012? | CREATE TABLE "unemployment_rates_in_new_england" (
"employment_area" text,
"october_2010" text,
"october_2011" text,
"october_2012" text,
"net_change" text
); | SELECT "october_2012" FROM "unemployment_rates_in_new_england" WHERE "october_2010"='9.1'; | 1-21531764-1 |
Where is the rate 5.7 in October 2010? | CREATE TABLE "unemployment_rates_in_new_england" (
"employment_area" text,
"october_2010" text,
"october_2011" text,
"october_2012" text,
"net_change" text
); | SELECT "employment_area" FROM "unemployment_rates_in_new_england" WHERE "october_2010"='5.7'; | 1-21531764-1 |
Name the original air date for 9.16 viewers | CREATE TABLE "table1_21550870_1" (
"no" real,
"num" real,
"title" text,
"directed_by" text,
"written_by" text,
"u_s_viewers_million" text,
"original_air_date" text,
"production_code" real
); | SELECT "original_air_date" FROM "table1_21550870_1" WHERE "u_s_viewers_million"='9.16'; | 1-21550870-1 |
Name the total number of production code for episode by steve cohen & andrew dettman | CREATE TABLE "table1_21550870_1" (
"no" real,
"num" real,
"title" text,
"directed_by" text,
"written_by" text,
"u_s_viewers_million" text,
"original_air_date" text,
"production_code" real
); | SELECT COUNT("production_code") FROM "table1_21550870_1" WHERE "written_by"='Steve Cohen & Andrew Dettman'; | 1-21550870-1 |
What is the population in millions for 2011 where the HDI for 2011 is 0.453 (low)? | CREATE TABLE "members" (
"country" text,
"area_km" text,
"population_millions_2011" text,
"gdp_ppp_usd_per_capita" real,
"gdp_nominal_billions_usd" text,
"hdi_2011" text
); | SELECT "population_millions_2011" FROM "members" WHERE "hdi_2011"='0.453 (low)'; | 1-2155836-1 |
What is the population in millions for 2011 where the GDP (nominal) (billions USD) is 4? | CREATE TABLE "members" (
"country" text,
"area_km" text,
"population_millions_2011" text,
"gdp_ppp_usd_per_capita" real,
"gdp_nominal_billions_usd" text,
"hdi_2011" text
); | SELECT "population_millions_2011" FROM "members" WHERE "gdp_nominal_billions_usd"='4'; | 1-2155836-1 |
What is the HDI for 2011 in Tunisia? | CREATE TABLE "members" (
"country" text,
"area_km" text,
"population_millions_2011" text,
"gdp_ppp_usd_per_capita" real,
"gdp_nominal_billions_usd" text,
"hdi_2011" text
); | SELECT "hdi_2011" FROM "members" WHERE "country"='Tunisia'; | 1-2155836-1 |
What is the area (km2) where the population in millions for 2011 is 37.1? | CREATE TABLE "members" (
"country" text,
"area_km" text,
"population_millions_2011" text,
"gdp_ppp_usd_per_capita" real,
"gdp_nominal_billions_usd" text,
"hdi_2011" text
); | SELECT "area_km" FROM "members" WHERE "population_millions_2011"='37.1'; | 1-2155836-1 |
What is the GDP (PPP) (USD, per capita) for Algeria? | CREATE TABLE "members" (
"country" text,
"area_km" text,
"population_millions_2011" text,
"gdp_ppp_usd_per_capita" real,
"gdp_nominal_billions_usd" text,
"hdi_2011" text
); | SELECT MIN("gdp_ppp_usd_per_capita") FROM "members" WHERE "country"='Algeria'; | 1-2155836-1 |
What is the GDP (nominal) (billions USD) where the population in millions for 2011 is 3.4? | CREATE TABLE "members" (
"country" text,
"area_km" text,
"population_millions_2011" text,
"gdp_ppp_usd_per_capita" real,
"gdp_nominal_billions_usd" text,
"hdi_2011" text
); | SELECT "gdp_nominal_billions_usd" FROM "members" WHERE "population_millions_2011"='3.4'; | 1-2155836-1 |
Name the number of cab size for 4 medium tanker | CREATE TABLE "table1_2155350_2" (
"category" text,
"sub_category" text,
"cab_size" text,
"drive_wheels" text,
"capacity_litres" text
); | SELECT COUNT("cab_size") FROM "table1_2155350_2" WHERE "category"='4 Medium tanker'; | 1-2155350-2 |
Name the category for cab size crew and super tanker | CREATE TABLE "table1_2155350_2" (
"category" text,
"sub_category" text,
"cab_size" text,
"drive_wheels" text,
"capacity_litres" text
); | SELECT "category" FROM "table1_2155350_2" WHERE "cab_size"='Crew' AND "sub_category"='Super tanker'; | 1-2155350-2 |
Name the capacity for single cab size 2 medium tanker | CREATE TABLE "table1_2155350_2" (
"category" text,
"sub_category" text,
"cab_size" text,
"drive_wheels" text,
"capacity_litres" text
); | SELECT "capacity_litres" FROM "table1_2155350_2" WHERE "cab_size"='Single' AND "category"='2 Medium tanker'; | 1-2155350-2 |
What school is in Brechin? | CREATE TABLE "external_links" (
"school" text,
"location" text,
"catchment" text,
"roll" real,
"gender" text,
"external_link" text
); | SELECT "external_link" FROM "external_links" WHERE "location"='Brechin'; | 1-21563298-1 |
How many kids go to Brechin High School? | CREATE TABLE "external_links" (
"school" text,
"location" text,
"catchment" text,
"roll" real,
"gender" text,
"external_link" text
); | SELECT MAX("roll") FROM "external_links" WHERE "school"='Brechin High School'; | 1-21563298-1 |
What year did Negro American League join? | CREATE TABLE "former_teams" (
"team" text,
"sport" text,
"league" text,
"established" real,
"began_in_st_louis" real,
"venue" text,
"championships_in_st_louis" text,
"left_st_louis" real
); | SELECT MIN("began_in_st_louis") FROM "former_teams" WHERE "league"='Negro American League'; | 1-21564794-3 |
What year did the team who played at the Scottrade Center leave the city? | CREATE TABLE "former_teams" (
"team" text,
"sport" text,
"league" text,
"established" real,
"began_in_st_louis" real,
"venue" text,
"championships_in_st_louis" text,
"left_st_louis" real
); | SELECT MIN("left_st_louis") FROM "former_teams" WHERE "venue"='Scottrade Center'; | 1-21564794-3 |
How may championships were won by the team that started in 1950? | CREATE TABLE "former_teams" (
"team" text,
"sport" text,
"league" text,
"established" real,
"began_in_st_louis" real,
"venue" text,
"championships_in_st_louis" text,
"left_st_louis" real
); | SELECT "championships_in_st_louis" FROM "former_teams" WHERE "began_in_st_louis"=1950; | 1-21564794-3 |
How many championships were won for arena football? | CREATE TABLE "former_teams" (
"team" text,
"sport" text,
"league" text,
"established" real,
"began_in_st_louis" real,
"venue" text,
"championships_in_st_louis" text,
"left_st_louis" real
); | SELECT "championships_in_st_louis" FROM "former_teams" WHERE "sport"='Arena Football'; | 1-21564794-3 |
When samai amari is the asian rider classification how many asian team classifications are there? | CREATE TABLE "classification_leadership" (
"stage" real,
"winner" text,
"general_classification" text,
"points_classification" text,
"mountains_classification" text,
"asian_rider_classification" text,
"team_classification" text,
"asian_team_classification" text
); | SELECT COUNT("asian_team_classification") FROM "classification_leadership" WHERE "asian_rider_classification"='Samai Amari'; | 1-21573750-2 |
When 4 is the stage who is the general classification? | CREATE TABLE "classification_leadership" (
"stage" real,
"winner" text,
"general_classification" text,
"points_classification" text,
"mountains_classification" text,
"asian_rider_classification" text,
"team_classification" text,
"asian_team_classification" text
); | SELECT "general_classification" FROM "classification_leadership" WHERE "stage"=4; | 1-21573750-2 |
What is the number in season for the episode written by Chris Mitchell and Erik Wiese? | CREATE TABLE "table1_2156758_4" (
"no_in_series" text,
"no_in_season" text,
"title" text,
"directed_by" text,
"written_by" text,
"original_air_date" text
); | SELECT "no_in_season" FROM "table1_2156758_4" WHERE "written_by"='Chris Mitchell and Erik Wiese'; | 1-2156758-4 |
What is the title for episode number in series of 28? | CREATE TABLE "table1_2156758_4" (
"no_in_series" text,
"no_in_season" text,
"title" text,
"directed_by" text,
"written_by" text,
"original_air_date" text
); | SELECT "title" FROM "table1_2156758_4" WHERE "no_in_series"='28'; | 1-2156758-4 |
Who directed the episode titled "Jack and the Zombies"? | CREATE TABLE "table1_2156758_4" (
"no_in_series" text,
"no_in_season" text,
"title" text,
"directed_by" text,
"written_by" text,
"original_air_date" text
); | SELECT "directed_by" FROM "table1_2156758_4" WHERE "title"='\"Jack and the Zombies\"'; | 1-2156758-4 |
How many titles were written by Don Shank and Genndy Tartakovsky? | CREATE TABLE "table1_2156758_4" (
"no_in_series" text,
"no_in_season" text,
"title" text,
"directed_by" text,
"written_by" text,
"original_air_date" text
); | SELECT COUNT("title") FROM "table1_2156758_4" WHERE "written_by"='Don Shank and Genndy Tartakovsky'; | 1-2156758-4 |
When 3rd, sedgemoor division 1 is the ladies 1st xi what is the mens 3rd xi? | CREATE TABLE "league_finishes" (
"season" text,
"mens_1st_xi" text,
"mens_2nd_xi" text,
"mens_3rd_xi" text,
"ladies_1st_xi" text
); | SELECT "mens_3rd_xi" FROM "league_finishes" WHERE "ladies_1st_xi"='3rd, Sedgemoor Division 1'; | 1-21576644-2 |
When 10th, south west district 1 is the mens 2nd xi what is the ladies 1st xi? | CREATE TABLE "league_finishes" (
"season" text,
"mens_1st_xi" text,
"mens_2nd_xi" text,
"mens_3rd_xi" text,
"ladies_1st_xi" text
); | SELECT "ladies_1st_xi" FROM "league_finishes" WHERE "mens_2nd_xi"='10th, South West District 1'; | 1-21576644-2 |
When 5th, south western district 2 is the mens 2nd xi what is the season? | CREATE TABLE "league_finishes" (
"season" text,
"mens_1st_xi" text,
"mens_2nd_xi" text,
"mens_3rd_xi" text,
"ladies_1st_xi" text
); | SELECT "season" FROM "league_finishes" WHERE "mens_2nd_xi"='5th, South Western District 2'; | 1-21576644-2 |
When 6th, south division 2 is the mens 1st xi what is the mens 2nd xi? | CREATE TABLE "league_finishes" (
"season" text,
"mens_1st_xi" text,
"mens_2nd_xi" text,
"mens_3rd_xi" text,
"ladies_1st_xi" text
); | SELECT "mens_2nd_xi" FROM "league_finishes" WHERE "mens_1st_xi"='6th, South Division 2'; | 1-21576644-2 |
Which stage has kourdali as the name? | CREATE TABLE "special_stages" (
"day" text,
"stage" text,
"time_eet" text,
"name" text,
"length" text,
"winner" text,
"time" text,
"avg_spd" text,
"rally_leader" text
); | SELECT "stage" FROM "special_stages" WHERE "name"='Kourdali'; | 1-21578303-2 |
Which stage has 15:17 as time? | CREATE TABLE "special_stages" (
"day" text,
"stage" text,
"time_eet" text,
"name" text,
"length" text,
"winner" text,
"time" text,
"avg_spd" text,
"rally_leader" text
); | SELECT "stage" FROM "special_stages" WHERE "time_eet"='15:17'; | 1-21578303-2 |
What is the time when time is 10:46? | CREATE TABLE "special_stages" (
"day" text,
"stage" text,
"time_eet" text,
"name" text,
"length" text,
"winner" text,
"time" text,
"avg_spd" text,
"rally_leader" text
); | SELECT "time" FROM "special_stages" WHERE "time_eet"='10:46'; | 1-21578303-2 |
What is the time when ss12 is stage? | CREATE TABLE "special_stages" (
"day" text,
"stage" text,
"time_eet" text,
"name" text,
"length" text,
"winner" text,
"time" text,
"avg_spd" text,
"rally_leader" text
); | SELECT "time" FROM "special_stages" WHERE "stage"='SS12'; | 1-21578303-2 |
Name the state class for resigned november 3, 1964 | CREATE TABLE "table1_2159506_3" (
"state_class" text,
"vacator" text,
"reason_for_change" text,
"successor" text,
"date_of_successors_formal_installation" text
); | SELECT "state_class" FROM "table1_2159506_3" WHERE "reason_for_change"='Resigned November 3, 1964'; | 1-2159506-3 |
How many champions are shown for the runner-up of stefan edberg? | CREATE TABLE "table1_21584646_10" (
"week_of" text,
"tournament" text,
"champion" text,
"runner_up" text,
"semifinalists" text,
"quarterfinalists" text
); | SELECT COUNT("champion") FROM "table1_21584646_10" WHERE "runner_up"='Stefan Edberg'; | 1-21584646-10 |
What week was stefan edberg anders järryd was semifinalist and champion is john mcenroe 7–6, 6–3? | CREATE TABLE "table1_21584646_10" (
"week_of" text,
"tournament" text,
"champion" text,
"runner_up" text,
"semifinalists" text,
"quarterfinalists" text
); | SELECT "week_of" FROM "table1_21584646_10" WHERE "semifinalists"='Stefan Edberg Anders Järryd' AND "champion"='John McEnroe 7–6, 6–3'; | 1-21584646-10 |
Who is the runner up for the champion of john mcenroe 6–2, 6–3? | CREATE TABLE "table1_21584646_10" (
"week_of" text,
"tournament" text,
"champion" text,
"runner_up" text,
"semifinalists" text,
"quarterfinalists" text
); | SELECT "runner_up" FROM "table1_21584646_10" WHERE "champion"='John McEnroe 6–2, 6–3'; | 1-21584646-10 |
Who were the quarterfinalists for the runner-ups of mike de palmer gary donnelly? | CREATE TABLE "table1_21584646_10" (
"week_of" text,
"tournament" text,
"champion" text,
"runner_up" text,
"semifinalists" text,
"quarterfinalists" text
); | SELECT "quarterfinalists" FROM "table1_21584646_10" WHERE "runner_up"='Mike De Palmer Gary Donnelly'; | 1-21584646-10 |
Who are the quarterfinalists for runner-up jimmy connors? | CREATE TABLE "table1_21584646_10" (
"week_of" text,
"tournament" text,
"champion" text,
"runner_up" text,
"semifinalists" text,
"quarterfinalists" text
); | SELECT "quarterfinalists" FROM "table1_21584646_10" WHERE "runner_up"='Jimmy Connors'; | 1-21584646-10 |
How many weeks are shown for the champion of john mcenroe 6–2, 6–3? | CREATE TABLE "table1_21584646_10" (
"week_of" text,
"tournament" text,
"champion" text,
"runner_up" text,
"semifinalists" text,
"quarterfinalists" text
); | SELECT COUNT("week_of") FROM "table1_21584646_10" WHERE "champion"='John McEnroe 6–2, 6–3'; | 1-21584646-10 |
What is every reason for change for the date of successors installation is March 16, 1960? | CREATE TABLE "table1_2159571_1" (
"state_class" text,
"vacator" text,
"reason_for_change" text,
"successor" text,
"date_of_successors_formal_installation" text
); | SELECT "reason_for_change" FROM "table1_2159571_1" WHERE "date_of_successors_formal_installation"='March 16, 1960'; | 1-2159571-1 |
Who is every vacator if date of successors formal installation is August 8, 1960? | CREATE TABLE "table1_2159571_1" (
"state_class" text,
"vacator" text,
"reason_for_change" text,
"successor" text,
"date_of_successors_formal_installation" text
); | SELECT "vacator" FROM "table1_2159571_1" WHERE "date_of_successors_formal_installation"='August 8, 1960'; | 1-2159571-1 |
Who is every successor for the Washington 3rd District? | CREATE TABLE "table1_2159571_2" (
"district" text,
"vacator" text,
"reason_for_change" text,
"successor" text,
"date_successor_seated" text
); | SELECT "successor" FROM "table1_2159571_2" WHERE "district"='Washington 3rd'; | 1-2159571-2 |
What is every reason for change for the Washington 3rd District? | CREATE TABLE "table1_2159571_2" (
"district" text,
"vacator" text,
"reason_for_change" text,
"successor" text,
"date_successor_seated" text
); | SELECT "reason_for_change" FROM "table1_2159571_2" WHERE "district"='Washington 3rd'; | 1-2159571-2 |
Who is every vacator with reason for change as resigned December 31, 1959? | CREATE TABLE "table1_2159571_2" (
"district" text,
"vacator" text,
"reason_for_change" text,
"successor" text,
"date_successor_seated" text
); | SELECT "vacator" FROM "table1_2159571_2" WHERE "reason_for_change"='Resigned December 31, 1959'; | 1-2159571-2 |
In what district was the successor seated August 31, 1943? | CREATE TABLE "table1_2159537_3" (
"district" text,
"vacator" text,
"reason_for_change" text,
"successor" text,
"date_successor_seated" text
); | SELECT "district" FROM "table1_2159537_3" WHERE "date_successor_seated"='August 31, 1943'; | 1-2159537-3 |
Who was the successor for the reason for change being "died January 16, 1944? | CREATE TABLE "table1_2159537_3" (
"district" text,
"vacator" text,
"reason_for_change" text,
"successor" text,
"date_successor_seated" text
); | SELECT "successor" FROM "table1_2159537_3" WHERE "reason_for_change"='Died January 16, 1944'; | 1-2159537-3 |
Who was the successor in New York 11th district? | CREATE TABLE "table1_2159537_3" (
"district" text,
"vacator" text,
"reason_for_change" text,
"successor" text,
"date_successor_seated" text
); | SELECT "successor" FROM "table1_2159537_3" WHERE "district"='New York 11th'; | 1-2159537-3 |
On what date was James P. Buchanan (d)'s successor seated? | CREATE TABLE "table1_2159547_3" (
"district" text,
"vacator" text,
"reason_for_change" text,
"successor" text,
"date_successor_seated" text
); | SELECT "date_successor_seated" FROM "table1_2159547_3" WHERE "vacator"='James P. Buchanan (D)'; | 1-2159547-3 |
How many people vacated to successor Dave E. Satterfield, Jr. (d)? | CREATE TABLE "table1_2159547_3" (
"district" text,
"vacator" text,
"reason_for_change" text,
"successor" text,
"date_successor_seated" text
); | SELECT COUNT("vacator") FROM "table1_2159547_3" WHERE "successor"='Dave E. Satterfield, Jr. (D)'; | 1-2159547-3 |
Why did Robert L. Bacon (r) vacate? | CREATE TABLE "table1_2159547_3" (
"district" text,
"vacator" text,
"reason_for_change" text,
"successor" text,
"date_successor_seated" text
); | SELECT "reason_for_change" FROM "table1_2159547_3" WHERE "vacator"='Robert L. Bacon (R)'; | 1-2159547-3 |
Makio Inoue dubbed on which character? | CREATE TABLE "full_cast" (
"character" text,
"original_japanese" text,
"english_streamline" text,
"english_manga_uk" text,
"english_pioneer_geneon" text
); | SELECT "character" FROM "full_cast" WHERE "original_japanese"='Makio Inoue'; | 1-2160215-1 |
Who was the cast on the English (Manga UK) version if Kō Nishimura acted on the original Japanese? | CREATE TABLE "full_cast" (
"character" text,
"original_japanese" text,
"english_streamline" text,
"english_manga_uk" text,
"english_pioneer_geneon" text
); | SELECT "english_manga_uk" FROM "full_cast" WHERE "original_japanese"='Kō Nishimura'; | 1-2160215-1 |
Who was the original Japanese cast if Sean Barrett acted on the English (Manga UK) version? | CREATE TABLE "full_cast" (
"character" text,
"original_japanese" text,
"english_streamline" text,
"english_manga_uk" text,
"english_pioneer_geneon" text
); | SELECT "original_japanese" FROM "full_cast" WHERE "english_manga_uk"='Sean Barrett'; | 1-2160215-1 |
Name the district for reason for change being died july 4, 1939 | CREATE TABLE "table1_2160008_4" (
"district" text,
"vacator" text,
"reason_for_change" text,
"successor" text,
"date_successor_seated" text
); | SELECT "district" FROM "table1_2160008_4" WHERE "reason_for_change"='Died July 4, 1939'; | 1-2160008-4 |
Name the number of reason for change on may 11, 1939 | CREATE TABLE "table1_2160008_4" (
"district" text,
"vacator" text,
"reason_for_change" text,
"successor" text,
"date_successor_seated" text
); | SELECT COUNT("reason_for_change") FROM "table1_2160008_4" WHERE "date_successor_seated"='May 11, 1939'; | 1-2160008-4 |
What were the time and speed for the rider ranked in 12 on Wed, June 3? | CREATE TABLE "practice_times_leaderboard_superbike_sen" (
"rank" real,
"rider" text,
"mon_1_june" text,
"tue_2_june" text,
"wed_3_june" text,
"thurs_4_june" text,
"fri_5_june" text
); | SELECT "wed_3_june" FROM "practice_times_leaderboard_superbike_sen" WHERE "rank"=12; | 1-21607058-1 |
What is the series number for the Golden Frog? | CREATE TABLE "table1_2161859_1" (
"series_num" real,
"title" text,
"story_num" real,
"artist" text,
"strip_numbers" text,
"number_of_strips" text,
"dates_of_original_publication_of_strip" text
); | SELECT "series_num" FROM "table1_2161859_1" WHERE "title"='The Golden Frog'; | 1-2161859-1 |
Who is the artist for strip numbers 3932-4031a? | CREATE TABLE "table1_2161859_1" (
"series_num" real,
"title" text,
"story_num" real,
"artist" text,
"strip_numbers" text,
"number_of_strips" text,
"dates_of_original_publication_of_strip" text
); | SELECT "artist" FROM "table1_2161859_1" WHERE "strip_numbers"='3932-4031A'; | 1-2161859-1 |
who got the first position when Ehime Shimanami got the third position? | CREATE TABLE "champions_list" (
"regional" text,
"champions" text,
"runners_up" text,
"third_place" text,
"fourth_place" text
); | SELECT "champions" FROM "champions_list" WHERE "third_place"='Ehime Shimanami'; | 1-21632864-1 |
who got the third position when laranja kyoto got the second position? | CREATE TABLE "champions_list" (
"regional" text,
"champions" text,
"runners_up" text,
"third_place" text,
"fourth_place" text
); | SELECT "third_place" FROM "champions_list" WHERE "runners_up"='Laranja Kyoto'; | 1-21632864-1 |
how many persons got the third position whan sanyo electric tokushima got the fourth position? | CREATE TABLE "champions_list" (
"regional" text,
"champions" text,
"runners_up" text,
"third_place" text,
"fourth_place" text
); | SELECT COUNT("third_place") FROM "champions_list" WHERE "fourth_place"='Sanyo Electric Tokushima'; | 1-21632864-1 |
how many persons got the fourth position when the regional was shikoku? | CREATE TABLE "champions_list" (
"regional" text,
"champions" text,
"runners_up" text,
"third_place" text,
"fourth_place" text
); | SELECT COUNT("fourth_place") FROM "champions_list" WHERE "regional"='Shikoku'; | 1-21632864-1 |
who got the first place when the Japanese Regional Leagues was in hokushinetsu? | CREATE TABLE "champions_list" (
"regional" text,
"champions" text,
"runners_up" text,
"third_place" text,
"fourth_place" text
); | SELECT "champions" FROM "champions_list" WHERE "regional"='Hokushinetsu'; | 1-21632864-1 |
who got the first position when fujieda city government got the fourth position? | CREATE TABLE "champions_list" (
"regional" text,
"champions" text,
"runners_up" text,
"third_place" text,
"fourth_place" text
); | SELECT "champions" FROM "champions_list" WHERE "fourth_place"='Fujieda City Government'; | 1-21632864-1 |
What are the civilian total when the security force total is 36? | CREATE TABLE "table1_21636599_2" (
"period" real,
"civilians" text,
"security_forces" text,
"insurgents" text,
"total_per_period" real
); | SELECT "civilians" FROM "table1_21636599_2" WHERE "security_forces"='36'; | 1-21636599-2 |
What are the security forces when the civilians are 202? | CREATE TABLE "table1_21636599_2" (
"period" real,
"civilians" text,
"security_forces" text,
"insurgents" text,
"total_per_period" real
); | SELECT "security_forces" FROM "table1_21636599_2" WHERE "civilians"='202'; | 1-21636599-2 |
How many figures are named for security forces in 1998? | CREATE TABLE "table1_21636599_2" (
"period" real,
"civilians" text,
"security_forces" text,
"insurgents" text,
"total_per_period" real
); | SELECT COUNT("security_forces") FROM "table1_21636599_2" WHERE "period"=1998; | 1-21636599-2 |
How many insurgents are there when the total per period is 156? | CREATE TABLE "table1_21636599_2" (
"period" real,
"civilians" text,
"security_forces" text,
"insurgents" text,
"total_per_period" real
); | SELECT "insurgents" FROM "table1_21636599_2" WHERE "total_per_period"=156; | 1-21636599-2 |
How many U.S. viewers watched the episode directed by Frank Waldeck? | CREATE TABLE "table1_21634403_2" (
"no_in_series" real,
"no_in_season" real,
"title" text,
"directed_by" text,
"written_by" text,
"original_air_date" text,
"u_s_viewers_millions" text
); | SELECT "u_s_viewers_millions" FROM "table1_21634403_2" WHERE "directed_by"='Frank Waldeck'; | 1-21634403-2 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.