question
stringlengths
12
244
create_table_statement
stringlengths
97
895
sql_query
stringlengths
27
479
wiki_sql_table_id
stringlengths
8
14
How many regions have 0.5% solar panels?
CREATE TABLE "by_access_to_electricity" ( "region" text, "public_network" text, "own_community_generator" text, "solar_panel" text, "other_source" text, "none" text );
SELECT COUNT("public_network") FROM "by_access_to_electricity" WHERE "solar_panel"='0.5%';
1-25042332-26
Who directed "you are not in any trouble, are you?"
CREATE TABLE "table1_25046766_3" ( "episode_no" text, "prod_no" real, "title" text, "directed_by" text, "written_by" text, "original_airdate_uk" text );
SELECT "directed_by" FROM "table1_25046766_3" WHERE "title"='\"You Are Not in Any Trouble, Are You?\"';
1-25046766-3
What is the production number of 3-04?
CREATE TABLE "table1_25046766_3" ( "episode_no" text, "prod_no" real, "title" text, "directed_by" text, "written_by" text, "original_airdate_uk" text );
SELECT MAX("prod_no") FROM "table1_25046766_3" WHERE "episode_no"='3-04';
1-25046766-3
What was the title of the episode that aired on October 7, 1965?
CREATE TABLE "table1_25046766_3" ( "episode_no" text, "prod_no" real, "title" text, "directed_by" text, "written_by" text, "original_airdate_uk" text );
SELECT "title" FROM "table1_25046766_3" WHERE "original_airdate_uk"='October 7, 1965';
1-25046766-3
When don inglis and ralph smart are the writers how many episode numbers are there?
CREATE TABLE "table1_25046766_1" ( "episode_no" text, "prod_no" real, "title" text, "directed_by" text, "written_by" text, "original_uk_airdate" text );
SELECT COUNT("episode_no") FROM "table1_25046766_1" WHERE "written_by"='Don Inglis and Ralph Smart';
1-25046766-1
Name the number of schools for 1011/12 is 26
CREATE TABLE "qs_world_university_rankings_top_50" ( "2013_14" real, "2012_13" real, "2011_12" real, "2010_11" real, "institute" text, "region" text );
SELECT COUNT("institute") FROM "qs_world_university_rankings_top_50" WHERE "2011_12"=26;
1-25057928-1
Name the 2013/14 for 2012/13 is 36
CREATE TABLE "qs_world_university_rankings_top_50" ( "2013_14" real, "2012_13" real, "2011_12" real, "2010_11" real, "institute" text, "region" text );
SELECT "2013_14" FROM "qs_world_university_rankings_top_50" WHERE "2012_13"=36;
1-25057928-1
Name the number of regions for 2013/14 being 27
CREATE TABLE "qs_world_university_rankings_top_50" ( "2013_14" real, "2012_13" real, "2011_12" real, "2010_11" real, "institute" text, "region" text );
SELECT COUNT("region") FROM "qs_world_university_rankings_top_50" WHERE "2013_14"=27;
1-25057928-1
Name the most 2012/13 for university of cambridge
CREATE TABLE "qs_world_university_rankings_top_50" ( "2013_14" real, "2012_13" real, "2011_12" real, "2010_11" real, "institute" text, "region" text );
SELECT MAX("2012_13") FROM "qs_world_university_rankings_top_50" WHERE "institute"='University of Cambridge';
1-25057928-1
Name the birth date for taavi sadam
CREATE TABLE "current_squad" ( "shirt_no" real, "nationality" text, "player" text, "birth_date" text, "height" real, "position" text );
SELECT "birth_date" FROM "current_squad" WHERE "player"='Taavi Sadam';
1-25058562-2
Name the height for asko esna
CREATE TABLE "current_squad" ( "shirt_no" real, "nationality" text, "player" text, "birth_date" text, "height" real, "position" text );
SELECT "height" FROM "current_squad" WHERE "player"='Asko Esna';
1-25058562-2
Name the birth date for estonia for spiker and height of 189
CREATE TABLE "current_squad" ( "shirt_no" real, "nationality" text, "player" text, "birth_date" text, "height" real, "position" text );
SELECT "birth_date" FROM "current_squad" WHERE "nationality"='Estonia' AND "position"='Spiker' AND "height"=189;
1-25058562-2
Name the player for 199 height
CREATE TABLE "current_squad" ( "shirt_no" real, "nationality" text, "player" text, "birth_date" text, "height" real, "position" text );
SELECT "player" FROM "current_squad" WHERE "height"=199;
1-25058562-2
if the 2.09 million US viewers watched this episode, who was it written by
CREATE TABLE "table1_25084227_1" ( "no" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "production_code" text, "u_s_viewers_in_millions" text );
SELECT "written_by" FROM "table1_25084227_1" WHERE "u_s_viewers_in_millions"='2.09';
1-25084227-1
If the episode was directed by Michael Offer, what was the episode number?
CREATE TABLE "table1_25084227_1" ( "no" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "production_code" text, "u_s_viewers_in_millions" text );
SELECT MIN("no") FROM "table1_25084227_1" WHERE "directed_by"='Michael Offer';
1-25084227-1
How many directors directed the episode titled "Incoming"?
CREATE TABLE "table1_25084227_1" ( "no" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "production_code" text, "u_s_viewers_in_millions" text );
SELECT COUNT("directed_by") FROM "table1_25084227_1" WHERE "title"='\"Incoming\"';
1-25084227-1
If the episode was directed by Michael Offer, how many US Viewers watched it?
CREATE TABLE "table1_25084227_1" ( "no" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "production_code" text, "u_s_viewers_in_millions" text );
SELECT "u_s_viewers_in_millions" FROM "table1_25084227_1" WHERE "directed_by"='Michael Offer';
1-25084227-1
How many US viewers watched the episode titled "The Way through"?
CREATE TABLE "table1_25084227_1" ( "no" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "production_code" text, "u_s_viewers_in_millions" text );
SELECT "u_s_viewers_in_millions" FROM "table1_25084227_1" WHERE "title"='\"The Way Through\"';
1-25084227-1
What draft pick number was the player with the position DL?
CREATE TABLE "round_three" ( "pick_num" real, "cfl_team" text, "player" text, "position" text, "college" text );
SELECT "pick_num" FROM "round_three" WHERE "position"='DL';
1-25085059-3
How many draft picks were for Winnipeg blue bombers?
CREATE TABLE "round_three" ( "pick_num" real, "cfl_team" text, "player" text, "position" text, "college" text );
SELECT COUNT("pick_num") FROM "round_three" WHERE "cfl_team"='Winnipeg Blue Bombers';
1-25085059-3
How many colleges provided players with positions LB?
CREATE TABLE "round_three" ( "pick_num" real, "cfl_team" text, "player" text, "position" text, "college" text );
SELECT COUNT("college") FROM "round_three" WHERE "position"='LB';
1-25085059-3
What college did the player come from whose position is DL?
CREATE TABLE "round_three" ( "pick_num" real, "cfl_team" text, "player" text, "position" text, "college" text );
SELECT "college" FROM "round_three" WHERE "position"='DL';
1-25085059-3
What team got a draft pick player from McGill?
CREATE TABLE "round_three" ( "pick_num" real, "cfl_team" text, "player" text, "position" text, "college" text );
SELECT "cfl_team" FROM "round_three" WHERE "college"='McGill';
1-25085059-3
What number draft pick was Oklahoma State's Greg Hill in 1983?
CREATE TABLE "round_four" ( "pick_num" real, "nfl_team" text, "player" text, "position" text, "college" text );
SELECT "pick_num" FROM "round_four" WHERE "college"='Oklahoma State' AND "player"='Greg Hill';
1-2508633-4
What number pick was Danny Walters in the 1983 NFL draft?
CREATE TABLE "round_four" ( "pick_num" real, "nfl_team" text, "player" text, "position" text, "college" text );
SELECT COUNT("pick_num") FROM "round_four" WHERE "player"='Danny Walters';
1-2508633-4
What were the pick numbers of the defensive tackles chosen by the New Orleans Saints in the 1983 draft?
CREATE TABLE "round_four" ( "pick_num" real, "nfl_team" text, "player" text, "position" text, "college" text );
SELECT "position" FROM "round_four" WHERE "nfl_team"='New Orleans Saints';
1-2508633-4
What number draft pick was linebacker Steve Maidlow in the 1983 NFL Draft?
CREATE TABLE "round_four" ( "pick_num" real, "nfl_team" text, "player" text, "position" text, "college" text );
SELECT "position" FROM "round_four" WHERE "player"='Steve Maidlow';
1-2508633-4
In which colleges is the NFL Team New York Giants and with the position defensive back?
CREATE TABLE "round_eleven" ( "pick_num" real, "nfl_team" text, "player" text, "position" text, "college" text );
SELECT "college" FROM "round_eleven" WHERE "nfl_team"='New York Giants' AND "position"='Defensive back';
1-2508633-11
What NFL Team has the player Danny Triplett with the position linebacker?
CREATE TABLE "round_eleven" ( "pick_num" real, "nfl_team" text, "player" text, "position" text, "college" text );
SELECT "nfl_team" FROM "round_eleven" WHERE "position"='Linebacker' AND "player"='Danny Triplett';
1-2508633-11
What are the NFL Teams in College North Texas State?
CREATE TABLE "round_eleven" ( "pick_num" real, "nfl_team" text, "player" text, "position" text, "college" text );
SELECT "nfl_team" FROM "round_eleven" WHERE "college"='North Texas State';
1-2508633-11
How many colleges have the NFL Team Buffalo Bills?
CREATE TABLE "round_eleven" ( "pick_num" real, "nfl_team" text, "player" text, "position" text, "college" text );
SELECT COUNT("college") FROM "round_eleven" WHERE "nfl_team"='Buffalo Bills';
1-2508633-11
Who are the all the players whose position is guard in college Clemson?
CREATE TABLE "round_eleven" ( "pick_num" real, "nfl_team" text, "player" text, "position" text, "college" text );
SELECT "player" FROM "round_eleven" WHERE "college"='Clemson' AND "position"='Guard';
1-2508633-11
What NFL Teams have the player Aaron Williams?
CREATE TABLE "round_eleven" ( "pick_num" real, "nfl_team" text, "player" text, "position" text, "college" text );
SELECT "nfl_team" FROM "round_eleven" WHERE "player"='Aaron Williams';
1-2508633-11
Name the least pick number for the denver broncos
CREATE TABLE "round_two" ( "pick_num" real, "nfl_team" text, "player" text, "position" text, "college" text );
SELECT MIN("pick_num") FROM "round_two" WHERE "nfl_team"='Denver Broncos';
1-2508633-2
Name the position for pick number 39
CREATE TABLE "round_two" ( "pick_num" real, "nfl_team" text, "player" text, "position" text, "college" text );
SELECT "position" FROM "round_two" WHERE "pick_num"=39;
1-2508633-2
Name the total number of pick number being henry ellard
CREATE TABLE "round_two" ( "pick_num" real, "nfl_team" text, "player" text, "position" text, "college" text );
SELECT COUNT("pick_num") FROM "round_two" WHERE "player"='Henry Ellard';
1-2508633-2
Name the player for new orleans saints
CREATE TABLE "round_two" ( "pick_num" real, "nfl_team" text, "player" text, "position" text, "college" text );
SELECT "player" FROM "round_two" WHERE "nfl_team"='New Orleans Saints';
1-2508633-2
Name the number of players for georgia tech
CREATE TABLE "round_two" ( "pick_num" real, "nfl_team" text, "player" text, "position" text, "college" text );
SELECT COUNT("player") FROM "round_two" WHERE "college"='Georgia Tech';
1-2508633-2
Name the most pick number for guard and kansas city chiefs
CREATE TABLE "round_two" ( "pick_num" real, "nfl_team" text, "player" text, "position" text, "college" text );
SELECT MAX("pick_num") FROM "round_two" WHERE "position"='Guard' AND "nfl_team"='Kansas City Chiefs';
1-2508633-2
Name the nfl team for pick number 151
CREATE TABLE "round_six" ( "pick_num" real, "nfl_team" text, "player" text, "position" text, "college" text );
SELECT "nfl_team" FROM "round_six" WHERE "pick_num"=151;
1-2508633-6
Name the college for houston oilers
CREATE TABLE "round_six" ( "pick_num" real, "nfl_team" text, "player" text, "position" text, "college" text );
SELECT "college" FROM "round_six" WHERE "nfl_team"='Houston Oilers';
1-2508633-6
Name the most pick number for illinois
CREATE TABLE "round_six" ( "pick_num" real, "nfl_team" text, "player" text, "position" text, "college" text );
SELECT MAX("pick_num") FROM "round_six" WHERE "college"='Illinois';
1-2508633-6
Name the total number for nfl team for ellis gardner
CREATE TABLE "round_six" ( "pick_num" real, "nfl_team" text, "player" text, "position" text, "college" text );
SELECT COUNT("nfl_team") FROM "round_six" WHERE "player"='Ellis Gardner';
1-2508633-6
Name the position for delaware
CREATE TABLE "round_six" ( "pick_num" real, "nfl_team" text, "player" text, "position" text, "college" text );
SELECT "position" FROM "round_six" WHERE "college"='Delaware';
1-2508633-6
Name the nfl team for eric williams
CREATE TABLE "round_six" ( "pick_num" real, "nfl_team" text, "player" text, "position" text, "college" text );
SELECT "nfl_team" FROM "round_six" WHERE "player"='Eric Williams';
1-2508633-6
how many l2 cache has a clock speed to tdp ratio of 46.7?
CREATE TABLE "sortable_table" ( "core" text, "processor" text, "model" text, "clock_speed" text, "l2_cache" text, "voltage" text, "tdp" text, "clock_speed_to_tdp_ratio_m_hz_w" text );
SELECT COUNT("l2_cache") FROM "sortable_table" WHERE "clock_speed_to_tdp_ratio_m_hz_w"='46.7';
1-25087061-42
What NFL team picked a player from Jackson State?
CREATE TABLE "round_nine" ( "pick_num" real, "nfl_team" text, "player" text, "position" text, "college" text );
SELECT "nfl_team" FROM "round_nine" WHERE "college"='Jackson State';
1-2508633-9
What position was the draft pick that came from Langston?
CREATE TABLE "round_nine" ( "pick_num" real, "nfl_team" text, "player" text, "position" text, "college" text );
SELECT "position" FROM "round_nine" WHERE "college"='Langston';
1-2508633-9
How many players were the running back draft pick for the New England Patriots?
CREATE TABLE "round_nine" ( "pick_num" real, "nfl_team" text, "player" text, "position" text, "college" text );
SELECT COUNT("player") FROM "round_nine" WHERE "nfl_team"='New England Patriots' AND "position"='Running back';
1-2508633-9
Who was the draft pick for Kansas City Chiefs?
CREATE TABLE "round_nine" ( "pick_num" real, "nfl_team" text, "player" text, "position" text, "college" text );
SELECT "player" FROM "round_nine" WHERE "nfl_team"='Kansas City Chiefs';
1-2508633-9
What college did the tight end draft pick for New England Patriots come from?
CREATE TABLE "round_nine" ( "pick_num" real, "nfl_team" text, "player" text, "position" text, "college" text );
SELECT "college" FROM "round_nine" WHERE "nfl_team"='New England Patriots' AND "position"='Tight end';
1-2508633-9
What is the Cuchumela Municipality minimum?
CREATE TABLE "languages" ( "language" text, "punata_municipality" real, "villa_rivero_municipality" real, "san_benito_municipality" real, "tacachi_municipality" real, "cuchumuela_municipality" real );
SELECT MIN("cuchumuela_municipality") FROM "languages";
1-2509112-3
If Villa Rivero Municipality if 7, what is the language?
CREATE TABLE "languages" ( "language" text, "punata_municipality" real, "villa_rivero_municipality" real, "san_benito_municipality" real, "tacachi_municipality" real, "cuchumuela_municipality" real );
SELECT "language" FROM "languages" WHERE "villa_rivero_municipality"=7;
1-2509112-3
What is the language total number if the Tacachi Municipality is 3?
CREATE TABLE "languages" ( "language" text, "punata_municipality" real, "villa_rivero_municipality" real, "san_benito_municipality" real, "tacachi_municipality" real, "cuchumuela_municipality" real );
SELECT COUNT("language") FROM "languages" WHERE "tacachi_municipality"=3;
1-2509112-3
If the language is another native, what is the San Benito Municipality total number?
CREATE TABLE "languages" ( "language" text, "punata_municipality" real, "villa_rivero_municipality" real, "san_benito_municipality" real, "tacachi_municipality" real, "cuchumuela_municipality" real );
SELECT COUNT("san_benito_municipality") FROM "languages" WHERE "language"='Another native';
1-2509112-3
If the language is Spanish, what is the Vinto Municipality minimum?
CREATE TABLE "languages" ( "language" text, "quillacollo_municipality" real, "sipe_sipe_municipality" real, "tiquipaya_municipality" real, "vinto_municipality" real, "colcapirhua_municipality" real );
SELECT MIN("vinto_municipality") FROM "languages" WHERE "language"='Spanish';
1-2509113-2
If the Vinto Municipality is 18630, what is the Quillacollo Municipality?
CREATE TABLE "languages" ( "language" text, "quillacollo_municipality" real, "sipe_sipe_municipality" real, "tiquipaya_municipality" real, "vinto_municipality" real, "colcapirhua_municipality" real );
SELECT MAX("quillacollo_municipality") FROM "languages" WHERE "vinto_municipality"=18630;
1-2509113-2
What is the Sipe Sipe Municipality minimum if the language is Quechua?
CREATE TABLE "languages" ( "language" text, "quillacollo_municipality" real, "sipe_sipe_municipality" real, "tiquipaya_municipality" real, "vinto_municipality" real, "colcapirhua_municipality" real );
SELECT MIN("sipe_sipe_municipality") FROM "languages" WHERE "language"='Quechua';
1-2509113-2
If the language is Native and Spanish, what is the Vinto Municipality minimum?
CREATE TABLE "languages" ( "language" text, "quillacollo_municipality" real, "sipe_sipe_municipality" real, "tiquipaya_municipality" real, "vinto_municipality" real, "colcapirhua_municipality" real );
SELECT MIN("vinto_municipality") FROM "languages" WHERE "language"='Native and Spanish';
1-2509113-2
If the Quillacollo Municipality is 93131, what is the Vinto Municipality minimum?
CREATE TABLE "languages" ( "language" text, "quillacollo_municipality" real, "sipe_sipe_municipality" real, "tiquipaya_municipality" real, "vinto_municipality" real, "colcapirhua_municipality" real );
SELECT MIN("vinto_municipality") FROM "languages" WHERE "quillacollo_municipality"=93131;
1-2509113-2
Name the language for villa 1167
CREATE TABLE "languages" ( "language" text, "padilla_municipality" real, "tomina_municipality" real, "sopachuy_municipality" real, "villa_alcal_municipality" real, "el_villar_municipality" real );
SELECT "language" FROM "languages" WHERE "villa_alcal_municipality"=1167;
1-2509350-3
Name the most padilla municipality for quechua
CREATE TABLE "languages" ( "language" text, "padilla_municipality" real, "tomina_municipality" real, "sopachuy_municipality" real, "villa_alcal_municipality" real, "el_villar_municipality" real );
SELECT MAX("padilla_municipality") FROM "languages" WHERE "language"='Quechua';
1-2509350-3
Name the language for sopachuy 10
CREATE TABLE "languages" ( "language" text, "padilla_municipality" real, "tomina_municipality" real, "sopachuy_municipality" real, "villa_alcal_municipality" real, "el_villar_municipality" real );
SELECT "language" FROM "languages" WHERE "sopachuy_municipality"=10;
1-2509350-3
Name the number of tomina for villa alcala for 176
CREATE TABLE "languages" ( "language" text, "padilla_municipality" real, "tomina_municipality" real, "sopachuy_municipality" real, "villa_alcal_municipality" real, "el_villar_municipality" real );
SELECT COUNT("tomina_municipality") FROM "languages" WHERE "villa_alcal_municipality"=176;
1-2509350-3
Name the least tomina for el villar being 4
CREATE TABLE "languages" ( "language" text, "padilla_municipality" real, "tomina_municipality" real, "sopachuy_municipality" real, "villa_alcal_municipality" real, "el_villar_municipality" real );
SELECT MIN("tomina_municipality") FROM "languages" WHERE "el_villar_municipality"=4;
1-2509350-3
Name the language for el villar 1264
CREATE TABLE "languages" ( "language" text, "padilla_municipality" real, "tomina_municipality" real, "sopachuy_municipality" real, "villa_alcal_municipality" real, "el_villar_municipality" real );
SELECT "language" FROM "languages" WHERE "el_villar_municipality"=1264;
1-2509350-3
Name the total number of games for goals against being 352
CREATE TABLE "regular_season" ( "season" text, "games" real, "won" real, "lost" real, "tied" real, "points" real, "goals_for" real, "goals_against" real, "standing" text );
SELECT COUNT("games") FROM "regular_season" WHERE "goals_against"=352;
1-2509505-1
Name the total number of games for lost being 41
CREATE TABLE "regular_season" ( "season" text, "games" real, "won" real, "lost" real, "tied" real, "points" real, "goals_for" real, "goals_against" real, "standing" text );
SELECT COUNT("games") FROM "regular_season" WHERE "lost"=41;
1-2509505-1
Name the most goals for 56 points
CREATE TABLE "regular_season" ( "season" text, "games" real, "won" real, "lost" real, "tied" real, "points" real, "goals_for" real, "goals_against" real, "standing" text );
SELECT MAX("goals_for") FROM "regular_season" WHERE "points"=56;
1-2509505-1
Name the number of won for goals for being 274
CREATE TABLE "regular_season" ( "season" text, "games" real, "won" real, "lost" real, "tied" real, "points" real, "goals_for" real, "goals_against" real, "standing" text );
SELECT COUNT("won") FROM "regular_season" WHERE "goals_for"=274;
1-2509505-1
When the quiabaya municipality is 2 what is the combaya municipality?
CREATE TABLE "languages" ( "language" text, "sorata_municipality" text, "guanay_municipality" text, "tacacoma_municipality" text, "quiabaya_municipality" text, "combaya_municipality" text, "tipuani_municipality" text, "mapiri_municipality" text, "teoponte_municipality" text );
SELECT "combaya_municipality" FROM "languages" WHERE "quiabaya_municipality"='2';
1-2509202-2
What is the guanay municipality when the tacacoma municipality is 4.321?
CREATE TABLE "languages" ( "language" text, "sorata_municipality" text, "guanay_municipality" text, "tacacoma_municipality" text, "quiabaya_municipality" text, "combaya_municipality" text, "tipuani_municipality" text, "mapiri_municipality" text, "teoponte_municipality" text );
SELECT "guanay_municipality" FROM "languages" WHERE "tacacoma_municipality"='4.321';
1-2509202-2
How many people in the sorata municipality when the quiabaya municipality has 33?
CREATE TABLE "languages" ( "language" text, "sorata_municipality" text, "guanay_municipality" text, "tacacoma_municipality" text, "quiabaya_municipality" text, "combaya_municipality" text, "tipuani_municipality" text, "mapiri_municipality" text, "teoponte_municipality" text );
SELECT "sorata_municipality" FROM "languages" WHERE "quiabaya_municipality"='33';
1-2509202-2
What is the number for combaya municipality when quiabaya municipality is 33?
CREATE TABLE "languages" ( "language" text, "sorata_municipality" text, "guanay_municipality" text, "tacacoma_municipality" text, "quiabaya_municipality" text, "combaya_municipality" text, "tipuani_municipality" text, "mapiri_municipality" text, "teoponte_municipality" text );
SELECT "combaya_municipality" FROM "languages" WHERE "quiabaya_municipality"='33';
1-2509202-2
tipuani municipality when tacacoma municipality is 6?
CREATE TABLE "languages" ( "language" text, "sorata_municipality" text, "guanay_municipality" text, "tacacoma_municipality" text, "quiabaya_municipality" text, "combaya_municipality" text, "tipuani_municipality" text, "mapiri_municipality" text, "teoponte_municipality" text );
SELECT "tipuani_municipality" FROM "languages" WHERE "tacacoma_municipality"='6';
1-2509202-2
What is the number for the guanay municipality when combaya municipality is 0?
CREATE TABLE "languages" ( "language" text, "sorata_municipality" text, "guanay_municipality" text, "tacacoma_municipality" text, "quiabaya_municipality" text, "combaya_municipality" text, "tipuani_municipality" text, "mapiri_municipality" text, "teoponte_municipality" text );
SELECT "guanay_municipality" FROM "languages" WHERE "combaya_municipality"='0';
1-2509202-2
What is the first year where the assassination attempt was at Martyrs' Mausoleum, Rangoon, Burma?
CREATE TABLE "table1_251272_4" ( "year" real, "date" text, "intended_victim_s" text, "title_at_the_time" text, "location" text, "would_be_assassin_s" text, "method" text, "initial_outcome_notes" text );
SELECT MIN("year") FROM "table1_251272_4" WHERE "location"='Martyrs'' Mausoleum, Rangoon, Burma';
1-251272-4
Where was the attempt on the Prime Minister of Sri Lanka's life made?
CREATE TABLE "table1_251272_4" ( "year" real, "date" text, "intended_victim_s" text, "title_at_the_time" text, "location" text, "would_be_assassin_s" text, "method" text, "initial_outcome_notes" text );
SELECT "location" FROM "table1_251272_4" WHERE "title_at_the_time"='Prime Minister of Sri Lanka';
1-251272-4
What is every original language for book series Little House on the Prairie?
CREATE TABLE "between_50_million_and_100_million_copie" ( "book_series" text, "author" text, "original_language" text, "no_of_installments" text, "first_published" text, "approximate_sales" text );
SELECT "original_language" FROM "between_50_million_and_100_million_copie" WHERE "book_series"='Little House on the Prairie';
1-2512935-8
What are all approximate sales for the author Laura Ingalls Wilder?
CREATE TABLE "between_50_million_and_100_million_copie" ( "book_series" text, "author" text, "original_language" text, "no_of_installments" text, "first_published" text, "approximate_sales" text );
SELECT "approximate_sales" FROM "between_50_million_and_100_million_copie" WHERE "author"='Laura Ingalls Wilder';
1-2512935-8
Name the most number for notre dame prep
CREATE TABLE "roster" ( "name" text, "num" real, "position" text, "height" text, "weight" real, "year" text, "former_school" text, "hometown" text );
SELECT MAX("num") FROM "roster" WHERE "former_school"='Notre Dame Prep';
1-25118909-3
Name the ends won for blank ends for 0
CREATE TABLE "standings" ( "country" text, "skip" text, "w" real, "l" real, "pf" real, "pa" real, "ends_won" real, "ends_lost" real, "blank_ends" real, "stolen_ends" real, "shot_pct" real );
SELECT "ends_won" FROM "standings" WHERE "blank_ends"=0;
1-25107064-2
Name the stolen ends for germany
CREATE TABLE "standings" ( "country" text, "skip" text, "w" real, "l" real, "pf" real, "pa" real, "ends_won" real, "ends_lost" real, "blank_ends" real, "stolen_ends" real, "shot_pct" real );
SELECT MIN("stolen_ends") FROM "standings" WHERE "country"='Germany';
1-25107064-2
Name the least ends won for pf being 78
CREATE TABLE "standings" ( "country" text, "skip" text, "w" real, "l" real, "pf" real, "pa" real, "ends_won" real, "ends_lost" real, "blank_ends" real, "stolen_ends" real, "shot_pct" real );
SELECT MIN("ends_won") FROM "standings" WHERE "pf"=78;
1-25107064-2
What is the stadium in Kuopio?
CREATE TABLE "team_summaries" ( "club" text, "location" text, "stadium" text, "capacity" real, "manager" text, "kitmaker" text );
SELECT "stadium" FROM "team_summaries" WHERE "location"='Kuopio';
1-25129482-1
Who is the kitmaker for TPS?
CREATE TABLE "team_summaries" ( "club" text, "location" text, "stadium" text, "capacity" real, "manager" text, "kitmaker" text );
SELECT "kitmaker" FROM "team_summaries" WHERE "club"='TPS';
1-25129482-1
What is the largest capacity for a stadium?
CREATE TABLE "team_summaries" ( "club" text, "location" text, "stadium" text, "capacity" real, "manager" text, "kitmaker" text );
SELECT MAX("capacity") FROM "team_summaries";
1-25129482-1
Which stadium is managed by Kari Martonen?
CREATE TABLE "team_summaries" ( "club" text, "location" text, "stadium" text, "capacity" real, "manager" text, "kitmaker" text );
SELECT "stadium" FROM "team_summaries" WHERE "manager"='Kari Martonen';
1-25129482-1
How many capacities are given for FF Jaro club?
CREATE TABLE "team_summaries" ( "club" text, "location" text, "stadium" text, "capacity" real, "manager" text, "kitmaker" text );
SELECT COUNT("capacity") FROM "team_summaries" WHERE "club"='FF Jaro';
1-25129482-1
How many managers for club in Turku where kitmaker is Puma?
CREATE TABLE "team_summaries" ( "club" text, "location" text, "stadium" text, "capacity" real, "manager" text, "kitmaker" text );
SELECT COUNT("manager") FROM "team_summaries" WHERE "kitmaker"='Puma' AND "location"='Turku';
1-25129482-1
How many times was episode 5 in the series aired on Fox int.?
CREATE TABLE "table1_25131572_2" ( "series_num" real, "season_num" real, "title" text, "directed_by" text, "written_by" text, "original_canadian_air_date" text, "fox_int_channels_air_date" text );
SELECT COUNT("fox_int_channels_air_date") FROM "table1_25131572_2" WHERE "series_num"=5;
1-25131572-2
What was the qualifying score of the competition whose final score was 12.200?
CREATE TABLE "competitive_history" ( "year" real, "competition_description" text, "location" text, "apparatus" text, "rank_final" real, "score_final" text, "rank_qualifying" real, "score_qualifying" text );
SELECT "score_qualifying" FROM "competitive_history" WHERE "score_final"='12.200';
1-25143284-1
Where was the competition with a qualifying score of 58.425?
CREATE TABLE "competitive_history" ( "year" real, "competition_description" text, "location" text, "apparatus" text, "rank_final" real, "score_final" text, "rank_qualifying" real, "score_qualifying" text );
SELECT "location" FROM "competitive_history" WHERE "score_qualifying"='58.425';
1-25143284-1
How many competitions had a final score of 15.650?
CREATE TABLE "competitive_history" ( "year" real, "competition_description" text, "location" text, "apparatus" text, "rank_final" real, "score_final" text, "rank_qualifying" real, "score_qualifying" text );
SELECT COUNT("competition_description") FROM "competitive_history" WHERE "score_final"='15.650';
1-25143284-1
In what year was the score 7–5, 7–6 (7–5)?
CREATE TABLE "doubles_7_5_titles_2_runners_up" ( "outcome" text, "year" real, "championship" text, "surface" text, "partner" text, "opponents" text, "score" text );
SELECT "year" FROM "doubles_7_5_titles_2_runners_up" WHERE "score"='7–5, 7–6 (7–5)';
1-2516282-3
When the opponent was Yan Zi Jie Zheng, what was the outcome?
CREATE TABLE "doubles_7_5_titles_2_runners_up" ( "outcome" text, "year" real, "championship" text, "surface" text, "partner" text, "opponents" text, "score" text );
SELECT "outcome" FROM "doubles_7_5_titles_2_runners_up" WHERE "opponents"='Yan Zi Jie Zheng';
1-2516282-3
In the year 2013, what was the outcome?
CREATE TABLE "doubles_7_5_titles_2_runners_up" ( "outcome" text, "year" real, "championship" text, "surface" text, "partner" text, "opponents" text, "score" text );
SELECT "outcome" FROM "doubles_7_5_titles_2_runners_up" WHERE "year"=2013;
1-2516282-3
Who was the partner when the score was 7–5, 7–6 (7–5)?
CREATE TABLE "doubles_7_5_titles_2_runners_up" ( "outcome" text, "year" real, "championship" text, "surface" text, "partner" text, "opponents" text, "score" text );
SELECT "partner" FROM "doubles_7_5_titles_2_runners_up" WHERE "score"='7–5, 7–6 (7–5)';
1-2516282-3
When the surface was Hard (i), what was the score?
CREATE TABLE "doubles_7_5_titles_2_runners_up" ( "outcome" text, "year" real, "championship" text, "surface" text, "partner" text, "opponents" text, "score" text );
SELECT "score" FROM "doubles_7_5_titles_2_runners_up" WHERE "surface"='Hard (i)';
1-2516282-3
In which championship was the partner Jie Zheng?
CREATE TABLE "doubles_7_5_titles_2_runners_up" ( "outcome" text, "year" real, "championship" text, "surface" text, "partner" text, "opponents" text, "score" text );
SELECT "championship" FROM "doubles_7_5_titles_2_runners_up" WHERE "partner"='Jie Zheng';
1-2516282-3