question
stringlengths
12
244
create_table_statement
stringlengths
97
895
sql_query
stringlengths
27
479
wiki_sql_table_id
stringlengths
8
14
Name the horizontal 0 for 通 tong
CREATE TABLE "triangles_and_their_sides" ( "number" real, "name" text, "vertices" text, "hypotenuse_0_c" text, "vertical_0_b" text, "horizontal_0_a" text );
SELECT "horizontal_0_a" FROM "triangles_and_their_sides" WHERE "name"='通 TONG';
1-25519358-1
Name the horizontal 0 for 明弦(ry日月)
CREATE TABLE "triangles_and_their_sides" ( "number" real, "name" text, "vertices" text, "hypotenuse_0_c" text, "vertical_0_b" text, "horizontal_0_a" text );
SELECT "horizontal_0_a" FROM "triangles_and_their_sides" WHERE "hypotenuse_0_c"='明弦(RY日月)';
1-25519358-1
Name the vertical for 明勾(ys月南)
CREATE TABLE "triangles_and_their_sides" ( "number" real, "name" text, "vertices" text, "hypotenuse_0_c" text, "vertical_0_b" text, "horizontal_0_a" text );
SELECT "vertical_0_b" FROM "triangles_and_their_sides" WHERE "horizontal_0_a"='明勾(YS月南)';
1-25519358-1
Name the horizontal number for number 10
CREATE TABLE "triangles_and_their_sides" ( "number" real, "name" text, "vertices" text, "hypotenuse_0_c" text, "vertical_0_b" text, "horizontal_0_a" text );
SELECT COUNT("horizontal_0_a") FROM "triangles_and_their_sides" WHERE "number"=10;
1-25519358-1
How many teams drafted players from the University of Maryland?
CREATE TABLE "table1_25518547_3" ( "pick_num" real, "mls_team" text, "player" text, "position" text, "affiliation" text );
SELECT COUNT("mls_team") FROM "table1_25518547_3" WHERE "affiliation"='University of Maryland';
1-25518547-3
What MLS team drafted samuel appiah?
CREATE TABLE "table1_25518547_3" ( "pick_num" real, "mls_team" text, "player" text, "position" text, "affiliation" text );
SELECT "mls_team" FROM "table1_25518547_3" WHERE "player"='Samuel Appiah';
1-25518547-3
What player was drafted by the philadelphia union?
CREATE TABLE "table1_25518547_3" ( "pick_num" real, "mls_team" text, "player" text, "position" text, "affiliation" text );
SELECT "player" FROM "table1_25518547_3" WHERE "mls_team"='Philadelphia Union';
1-25518547-3
This institution nicknamed Fightin' engineers was founded on what year?
CREATE TABLE "current_members" ( "institution" text, "location" text, "nickname" text, "founded" real, "type" text, "enrollment" real, "joined" text );
SELECT "founded" FROM "current_members" WHERE "nickname"='Fightin'' Engineers';
1-255205-1
How many inputs joined this institution located in Franklin, Indiana?
CREATE TABLE "current_members" ( "institution" text, "location" text, "nickname" text, "founded" real, "type" text, "enrollment" real, "joined" text );
SELECT COUNT("joined") FROM "current_members" WHERE "location"='Franklin, Indiana';
1-255205-1
How many times this institution was founded that was nicknamed Beavers?
CREATE TABLE "current_members" ( "institution" text, "location" text, "nickname" text, "founded" real, "type" text, "enrollment" real, "joined" text );
SELECT COUNT("founded") FROM "current_members" WHERE "nickname"='Beavers';
1-255205-1
How many joined this Private/Church of God institution?
CREATE TABLE "current_members" ( "institution" text, "location" text, "nickname" text, "founded" real, "type" text, "enrollment" real, "joined" text );
SELECT "joined" FROM "current_members" WHERE "type"='Private/Church of God';
1-255205-1
How many joined Manchester University?
CREATE TABLE "current_members" ( "institution" text, "location" text, "nickname" text, "founded" real, "type" text, "enrollment" real, "joined" text );
SELECT "joined" FROM "current_members" WHERE "institution"='Manchester University';
1-255205-1
What circuit was the Clipsal 500 on?
CREATE TABLE "table1_25531112_2" ( "rd" text, "event" text, "circuit" text, "city_state" text, "date" text, "championship" text, "challenge" text, "production" text );
SELECT "circuit" FROM "table1_25531112_2" WHERE "event"='Clipsal 500';
1-25531112-2
Who made the challenge on the Albert Park Grand Prix Circuit?
CREATE TABLE "table1_25531112_2" ( "rd" text, "event" text, "circuit" text, "city_state" text, "date" text, "championship" text, "challenge" text, "production" text );
SELECT "challenge" FROM "table1_25531112_2" WHERE "circuit"='Albert Park Grand Prix Circuit';
1-25531112-2
In what round was the circuit Eastern Creek Raceway?
CREATE TABLE "table1_25531112_2" ( "rd" text, "event" text, "circuit" text, "city_state" text, "date" text, "championship" text, "challenge" text, "production" text );
SELECT "rd" FROM "table1_25531112_2" WHERE "circuit"='Eastern Creek Raceway';
1-25531112-2
Who made the challenge in the Australian Grand Prix?
CREATE TABLE "table1_25531112_2" ( "rd" text, "event" text, "circuit" text, "city_state" text, "date" text, "championship" text, "challenge" text, "production" text );
SELECT "challenge" FROM "table1_25531112_2" WHERE "event"='Australian Grand Prix';
1-25531112-2
Who is the shirt sponsor of the team with an average squad age of 25.46?
CREATE TABLE "personnel_and_kits" ( "team" text, "manager" text, "captain" text, "kit_manufacturer" text, "shirt_sponsor" text, "average_squad_age" text );
SELECT "shirt_sponsor" FROM "personnel_and_kits" WHERE "average_squad_age"='25.46';
1-25527255-2
Who is the shirt sponsor for FC Bunyodkor?
CREATE TABLE "personnel_and_kits" ( "team" text, "manager" text, "captain" text, "kit_manufacturer" text, "shirt_sponsor" text, "average_squad_age" text );
SELECT "shirt_sponsor" FROM "personnel_and_kits" WHERE "team"='FC Bunyodkor';
1-25527255-2
What is the average squad age of the team whose shirt sponsor is Sho'rtan Gaz Mahsulot and whose kit manufacturer is Adidas?
CREATE TABLE "personnel_and_kits" ( "team" text, "manager" text, "captain" text, "kit_manufacturer" text, "shirt_sponsor" text, "average_squad_age" text );
SELECT "average_squad_age" FROM "personnel_and_kits" WHERE "shirt_sponsor"='Sho''rtan Gaz Mahsulot' AND "kit_manufacturer"='Adidas';
1-25527255-2
Who is the captain of the team whose kit manufacturer is Nike?
CREATE TABLE "personnel_and_kits" ( "team" text, "manager" text, "captain" text, "kit_manufacturer" text, "shirt_sponsor" text, "average_squad_age" text );
SELECT "captain" FROM "personnel_and_kits" WHERE "kit_manufacturer"='Nike';
1-25527255-2
Who is the manager of FK Andijan?
CREATE TABLE "personnel_and_kits" ( "team" text, "manager" text, "captain" text, "kit_manufacturer" text, "shirt_sponsor" text, "average_squad_age" text );
SELECT "manager" FROM "personnel_and_kits" WHERE "team"='FK Andijan';
1-25527255-2
Name the year for open cup did not qualify and national final
CREATE TABLE "year_by_year" ( "year" real, "division" real, "league" text, "regular_season" text, "playoffs" text, "open_cup" text );
SELECT COUNT("year") FROM "year_by_year" WHERE "open_cup"='Did not qualify' AND "playoffs"='National Final';
1-2553861-1
Name the league for 2000
CREATE TABLE "year_by_year" ( "year" real, "division" real, "league" text, "regular_season" text, "playoffs" text, "open_cup" text );
SELECT "league" FROM "year_by_year" WHERE "year"=2000;
1-2553861-1
Name the league for conference finals
CREATE TABLE "year_by_year" ( "year" real, "division" real, "league" text, "regular_season" text, "playoffs" text, "open_cup" text );
SELECT "league" FROM "year_by_year" WHERE "playoffs"='Conference Finals';
1-2553861-1
Who directed the episode that was written by Bill Lawrence?
CREATE TABLE "table1_25547943_1" ( "series_num" real, "season_num" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "production_code" real );
SELECT "directed_by" FROM "table1_25547943_1" WHERE "written_by"='Bill Lawrence';
1-25547943-1
Name the series result for season being 1998
CREATE TABLE "series" ( "series" real, "season" text, "played_in" text, "first_match" text, "tests_played_sched" text, "tests_won_by_australia" real, "tests_won_by_england" real, "tests_drawn" real, "series_result" text, "holder_at_series_end" text );
SELECT "series_result" FROM "series" WHERE "season"='1998';
1-2554479-2
Name the total number of tests won by australia for series 10
CREATE TABLE "series" ( "series" real, "season" text, "played_in" text, "first_match" text, "tests_played_sched" text, "tests_won_by_australia" real, "tests_won_by_england" real, "tests_drawn" real, "series_result" text, "holder_at_series_end" text );
SELECT COUNT("tests_won_by_australia") FROM "series" WHERE "series"=10;
1-2554479-2
How many winners were there when the mountains classification was not awarded?
CREATE TABLE "classification_leadership" ( "stage" real, "winner" text, "general_classification" text, "points_classification" text, "mountains_classification" text, "combination_classification" text, "team_classification" text );
SELECT COUNT("winner") FROM "classification_leadership" WHERE "mountains_classification"='not awarded';
1-25551880-2
Who was awarded mountains classifications when Mikel Nieve was the winner?
CREATE TABLE "classification_leadership" ( "stage" real, "winner" text, "general_classification" text, "points_classification" text, "mountains_classification" text, "combination_classification" text, "team_classification" text );
SELECT "mountains_classification" FROM "classification_leadership" WHERE "winner"='Mikel Nieve';
1-25551880-2
Who was awarded mountains classification when Alessandro petacchi won?
CREATE TABLE "classification_leadership" ( "stage" real, "winner" text, "general_classification" text, "points_classification" text, "mountains_classification" text, "combination_classification" text, "team_classification" text );
SELECT "mountains_classification" FROM "classification_leadership" WHERE "winner"='Alessandro Petacchi';
1-25551880-2
What is the production code for he episode titled "my best friend's baby's baby and my baby's baby"
CREATE TABLE "table1_25548213_1" ( "series_num" real, "season_num" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "production_code" real, "u_s_viewers_million" text );
SELECT MIN("production_code") FROM "table1_25548213_1" WHERE "title"='\"My Best Friend''s Baby''s Baby and My Baby''s Baby\"';
1-25548213-1
List the number of episodes directed by linda mendoza.
CREATE TABLE "table1_25548213_1" ( "series_num" real, "season_num" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "production_code" real, "u_s_viewers_million" text );
SELECT COUNT("production_code") FROM "table1_25548213_1" WHERE "directed_by"='Linda Mendoza';
1-25548213-1
How many million viewers watch the episode that kevin biegel & aseem batra wrote?
CREATE TABLE "table1_25548213_1" ( "series_num" real, "season_num" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "production_code" real, "u_s_viewers_million" text );
SELECT "u_s_viewers_million" FROM "table1_25548213_1" WHERE "written_by"='Kevin Biegel & Aseem Batra';
1-25548213-1
What is the series number that had 5.31 million viewers?
CREATE TABLE "table1_25548213_1" ( "series_num" real, "season_num" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "production_code" real, "u_s_viewers_million" text );
SELECT MAX("series_num") FROM "table1_25548213_1" WHERE "u_s_viewers_million"='5.31';
1-25548213-1
What was the name of the episode that bill lawrence directed?
CREATE TABLE "table1_25548213_1" ( "series_num" real, "season_num" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "production_code" real, "u_s_viewers_million" text );
SELECT "title" FROM "table1_25548213_1" WHERE "directed_by"='Bill Lawrence';
1-25548213-1
What was the name of the episode that had 4.65 million viewers?
CREATE TABLE "table1_25548213_1" ( "series_num" real, "season_num" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "production_code" real, "u_s_viewers_million" text );
SELECT "title" FROM "table1_25548213_1" WHERE "u_s_viewers_million"='4.65';
1-25548213-1
What is the original air date of the episode titled "My Hard Labor"?
CREATE TABLE "table1_25548505_1" ( "series_num" real, "season_num" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "production_code" real, "u_s_viewers_millions" text );
SELECT "original_air_date" FROM "table1_25548505_1" WHERE "title"='\"My Hard Labor\"';
1-25548505-1
What is the production code of the episode directed by Michael McDonald?
CREATE TABLE "table1_25548505_1" ( "series_num" real, "season_num" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "production_code" real, "u_s_viewers_millions" text );
SELECT "production_code" FROM "table1_25548505_1" WHERE "directed_by"='Michael McDonald';
1-25548505-1
What was the original air date of the episode that had 5.30 million U.S. viewers?
CREATE TABLE "table1_25548505_1" ( "series_num" real, "season_num" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "production_code" real, "u_s_viewers_millions" text );
SELECT "original_air_date" FROM "table1_25548505_1" WHERE "u_s_viewers_millions"='5.30';
1-25548505-1
What is the title of the episode directed by Linda Mendoza?
CREATE TABLE "table1_25548505_1" ( "series_num" real, "season_num" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "production_code" real, "u_s_viewers_millions" text );
SELECT "title" FROM "table1_25548505_1" WHERE "directed_by"='Linda Mendoza';
1-25548505-1
What are all the political types where area is 155.77?
CREATE TABLE "political" ( "city_municipality" text, "type" text, "no_of_barangays" real, "population_2010" real, "area_km" text, "pop_density_per_km" real, "income_class" text, "zip_code" real );
SELECT "type" FROM "political" WHERE "area_km"='155.77';
1-255602-1
What is the minimum number of barangays where the type is component city?
CREATE TABLE "political" ( "city_municipality" text, "type" text, "no_of_barangays" real, "population_2010" real, "area_km" text, "pop_density_per_km" real, "income_class" text, "zip_code" real );
SELECT MIN("no_of_barangays") FROM "political" WHERE "type"='Component City';
1-255602-1
What city/municipality has area of 176.40?
CREATE TABLE "political" ( "city_municipality" text, "type" text, "no_of_barangays" real, "population_2010" real, "area_km" text, "pop_density_per_km" real, "income_class" text, "zip_code" real );
SELECT "city_municipality" FROM "political" WHERE "area_km"='176.40';
1-255602-1
What is the area where population in 2010 is 38062?
CREATE TABLE "political" ( "city_municipality" text, "type" text, "no_of_barangays" real, "population_2010" real, "area_km" text, "pop_density_per_km" real, "income_class" text, "zip_code" real );
SELECT "area_km" FROM "political" WHERE "population_2010"=38062;
1-255602-1
What is the population density where area is 48.67?
CREATE TABLE "political" ( "city_municipality" text, "type" text, "no_of_barangays" real, "population_2010" real, "area_km" text, "pop_density_per_km" real, "income_class" text, "zip_code" real );
SELECT COUNT("pop_density_per_km") FROM "political" WHERE "area_km"='48.67';
1-255602-1
What couple averaged 21.0?
CREATE TABLE "average_chart" ( "rank_by_average" real, "competition_finish" real, "couple" text, "total" real, "number_of_dances" real, "average" text );
SELECT "couple" FROM "average_chart" WHERE "average"='21.0';
1-25557556-5
What was the number of dances for the competition finish of 3?
CREATE TABLE "average_chart" ( "rank_by_average" real, "competition_finish" real, "couple" text, "total" real, "number_of_dances" real, "average" text );
SELECT MAX("number_of_dances") FROM "average_chart" WHERE "competition_finish"=3;
1-25557556-5
What was his minimum number wins in a single year?
CREATE TABLE "career_summary" ( "season" real, "series" text, "team" text, "races" real, "wins" real, "poles" real, "f_laps" real, "podiums" real, "points" text, "position" text );
SELECT MIN("wins") FROM "career_summary";
1-25557880-1
In which series was his position NC† ?
CREATE TABLE "career_summary" ( "season" real, "series" text, "team" text, "races" real, "wins" real, "poles" real, "f_laps" real, "podiums" real, "points" text, "position" text );
SELECT "series" FROM "career_summary" WHERE "position"='NC†';
1-25557880-1
What was his position when he garnered 38 points?
CREATE TABLE "career_summary" ( "season" real, "series" text, "team" text, "races" real, "wins" real, "poles" real, "f_laps" real, "podiums" real, "points" text, "position" text );
SELECT "position" FROM "career_summary" WHERE "points"='38';
1-25557880-1
What was the sail number of Two True?
CREATE TABLE "handicap_results_top_10" ( "position" real, "sail_number" text, "yacht" text, "state_country" text, "yacht_type" text, "loa_metres" text, "skipper" text, "corrected_time_d_hh_mm_ss" text );
SELECT "sail_number" FROM "handicap_results_top_10" WHERE "yacht"='Two True';
1-25561560-3
What was Swish's corrected time?
CREATE TABLE "handicap_results_top_10" ( "position" real, "sail_number" text, "yacht" text, "state_country" text, "yacht_type" text, "loa_metres" text, "skipper" text, "corrected_time_d_hh_mm_ss" text );
SELECT "corrected_time_d_hh_mm_ss" FROM "handicap_results_top_10" WHERE "yacht"='Swish';
1-25561560-3
What yacht did Andrew Saies sail on?
CREATE TABLE "handicap_results_top_10" ( "position" real, "sail_number" text, "yacht" text, "state_country" text, "yacht_type" text, "loa_metres" text, "skipper" text, "corrected_time_d_hh_mm_ss" text );
SELECT "yacht" FROM "handicap_results_top_10" WHERE "skipper"='Andrew Saies';
1-25561560-3
What was the LOA when the elapsed time was 3:06:41:37?
CREATE TABLE "line_honours_results_top_10" ( "position" real, "race_number" text, "sail_number" text, "yacht" text, "state_country" text, "yacht_type" text, "loa_metres" text, "skipper" text, "elapsed_time_d_hh_mm_ss" text );
SELECT "loa_metres" FROM "line_honours_results_top_10" WHERE "elapsed_time_d_hh_mm_ss"='3:06:41:37';
1-25561560-2
What was the LOA for the Simonis Voogd Maxi?
CREATE TABLE "line_honours_results_top_10" ( "position" real, "race_number" text, "sail_number" text, "yacht" text, "state_country" text, "yacht_type" text, "loa_metres" text, "skipper" text, "elapsed_time_d_hh_mm_ss" text );
SELECT "loa_metres" FROM "line_honours_results_top_10" WHERE "yacht_type"='Simonis Voogd Maxi';
1-25561560-2
In what position did skipper Mark Richards place?
CREATE TABLE "line_honours_results_top_10" ( "position" real, "race_number" text, "sail_number" text, "yacht" text, "state_country" text, "yacht_type" text, "loa_metres" text, "skipper" text, "elapsed_time_d_hh_mm_ss" text );
SELECT "position" FROM "line_honours_results_top_10" WHERE "skipper"='Mark Richards';
1-25561560-2
What is the yacht type of Icap Leopard?
CREATE TABLE "line_honours_results_top_10" ( "position" real, "race_number" text, "sail_number" text, "yacht" text, "state_country" text, "yacht_type" text, "loa_metres" text, "skipper" text, "elapsed_time_d_hh_mm_ss" text );
SELECT "yacht_type" FROM "line_honours_results_top_10" WHERE "yacht"='ICAP Leopard';
1-25561560-2
How many elapsed times were posted for the yacht with 27.38 LOA meters?
CREATE TABLE "line_honours_results_top_10" ( "position" real, "race_number" text, "sail_number" text, "yacht" text, "state_country" text, "yacht_type" text, "loa_metres" text, "skipper" text, "elapsed_time_d_hh_mm_ss" text );
SELECT COUNT("elapsed_time_d_hh_mm_ss") FROM "line_honours_results_top_10" WHERE "loa_metres"='27.38';
1-25561560-2
what skipper has the sail number aus60000?
CREATE TABLE "line_honours_results_top_10" ( "position" real, "race_number" text, "sail_number" text, "yacht" text, "state_country" text, "yacht_type" text, "loa_metres" text, "skipper" text, "elapsed_time_d_hh_mm_ss" text );
SELECT "skipper" FROM "line_honours_results_top_10" WHERE "sail_number"='AUS60000';
1-25561560-2
Who was the aggressive rider when the winner was luis león sánchez?
CREATE TABLE "classification_leadership" ( "stage" real, "winner" text, "general_classification" text, "mountains_classification" text, "sprint_classification" text, "young_rider_classification" text, "team_classification" text, "aggressive_rider" text );
SELECT "aggressive_rider" FROM "classification_leadership" WHERE "winner"='Luis León Sánchez';
1-25580292-13
Who was the aggressive rider when the sprint classification was andré greipel and mountains classification was timothy roe?
CREATE TABLE "classification_leadership" ( "stage" real, "winner" text, "general_classification" text, "mountains_classification" text, "sprint_classification" text, "young_rider_classification" text, "team_classification" text, "aggressive_rider" text );
SELECT "aggressive_rider" FROM "classification_leadership" WHERE "sprint_classification"='André Greipel' AND "mountains_classification"='Timothy Roe';
1-25580292-13
What was the stage when the winner was luis león sánchez?
CREATE TABLE "classification_leadership" ( "stage" real, "winner" text, "general_classification" text, "mountains_classification" text, "sprint_classification" text, "young_rider_classification" text, "team_classification" text, "aggressive_rider" text );
SELECT "stage" FROM "classification_leadership" WHERE "winner"='Luis León Sánchez';
1-25580292-13
What was the young rider classification when manuel cardoso was the winner?
CREATE TABLE "classification_leadership" ( "stage" real, "winner" text, "general_classification" text, "mountains_classification" text, "sprint_classification" text, "young_rider_classification" text, "team_classification" text, "aggressive_rider" text );
SELECT "young_rider_classification" FROM "classification_leadership" WHERE "winner"='Manuel Cardoso';
1-25580292-13
How many winners were there for stage 5?
CREATE TABLE "classification_leadership" ( "stage" real, "winner" text, "general_classification" text, "mountains_classification" text, "sprint_classification" text, "young_rider_classification" text, "team_classification" text, "aggressive_rider" text );
SELECT COUNT("winner") FROM "classification_leadership" WHERE "stage"=5;
1-25580292-13
What is the 2007 population of Gigmoto?
CREATE TABLE "subdivisions" ( "municipality" text, "no_of_barangays" real, "area_hectares" real, "population_2007" real, "population_2010" real, "pop_density_per_km_2" text );
SELECT COUNT("population_2007") FROM "subdivisions" WHERE "municipality"='Gigmoto';
1-255829-1
What is the 2010 population of the municipality with 31 barangays?
CREATE TABLE "subdivisions" ( "municipality" text, "no_of_barangays" real, "area_hectares" real, "population_2007" real, "population_2010" real, "pop_density_per_km_2" text );
SELECT "population_2010" FROM "subdivisions" WHERE "no_of_barangays"=31;
1-255829-1
What is the population density of Caramoran?
CREATE TABLE "subdivisions" ( "municipality" text, "no_of_barangays" real, "area_hectares" real, "population_2007" real, "population_2010" real, "pop_density_per_km_2" text );
SELECT "pop_density_per_km_2" FROM "subdivisions" WHERE "municipality"='Caramoran';
1-255829-1
What municipality has a 130.6 pupulation density?
CREATE TABLE "subdivisions" ( "municipality" text, "no_of_barangays" real, "area_hectares" real, "population_2007" real, "population_2010" real, "pop_density_per_km_2" text );
SELECT "municipality" FROM "subdivisions" WHERE "pop_density_per_km_2"='130.6';
1-255829-1
What is the number of S Barangay for Paracale?
CREATE TABLE "municipalities" ( "municipality" text, "no_of_s_barangay" real, "area_km" text, "population_2007" real, "population_2010" real );
SELECT "no_of_s_barangay" FROM "municipalities" WHERE "municipality"='Paracale';
1-255885-1
What is the municipality that has an area of exactly 199.35 sq. km?
CREATE TABLE "municipalities" ( "municipality" text, "no_of_s_barangay" real, "area_km" text, "population_2007" real, "population_2010" real );
SELECT "municipality" FROM "municipalities" WHERE "area_km"='199.35';
1-255885-1
What is the municipality that has an area of exactly 214.44 sq. km?
CREATE TABLE "municipalities" ( "municipality" text, "no_of_s_barangay" real, "area_km" text, "population_2007" real, "population_2010" real );
SELECT "municipality" FROM "municipalities" WHERE "area_km"='214.44';
1-255885-1
Name the 3rd person pl for тонэн ~ тонэныд
CREATE TABLE "table1_25574050_7" ( "case" text, "1st_pers_sing" text, "2nd_pers_sing" text, "3rd_pers_sing" text, "1st_pers_pl" text, "2nd_pers_pl" text, "3rd_pers_pl" text );
SELECT "3rd_pers_pl" FROM "table1_25574050_7" WHERE "2nd_pers_sing"='тонэн ~ тонэныд';
1-25574050-7
Name the 1st person pl for тонэ
CREATE TABLE "table1_25574050_7" ( "case" text, "1st_pers_sing" text, "2nd_pers_sing" text, "3rd_pers_sing" text, "1st_pers_pl" text, "2nd_pers_pl" text, "3rd_pers_pl" text );
SELECT "1st_pers_pl" FROM "table1_25574050_7" WHERE "2nd_pers_sing"='тонэ';
1-25574050-7
Name the 3rd pers pl for dative
CREATE TABLE "table1_25574050_7" ( "case" text, "1st_pers_sing" text, "2nd_pers_sing" text, "3rd_pers_sing" text, "1st_pers_pl" text, "2nd_pers_pl" text, "3rd_pers_pl" text );
SELECT "3rd_pers_pl" FROM "table1_25574050_7" WHERE "case"='dative';
1-25574050-7
When fr2.0 9 is the series who is the winning team?
CREATE TABLE "race_calendar" ( "circuit" text, "location" text, "date" text, "series" text, "winning_driver" text, "winning_team" text );
SELECT "winning_team" FROM "race_calendar" WHERE "series"='FR2.0 9';
1-25572118-1
When fairuz fauzy is the winning driver what is the date?
CREATE TABLE "race_calendar" ( "circuit" text, "location" text, "date" text, "series" text, "winning_driver" text, "winning_team" text );
SELECT "date" FROM "race_calendar" WHERE "winning_driver"='Fairuz Fauzy';
1-25572118-1
When emt 9 is the series what is the date?
CREATE TABLE "race_calendar" ( "circuit" text, "location" text, "date" text, "series" text, "winning_driver" text, "winning_team" text );
SELECT "date" FROM "race_calendar" WHERE "series"='EMT 9';
1-25572118-1
what are all the state/nation where the race number is 36
CREATE TABLE "line_honours_results_top_10" ( "position" real, "race_number" text, "sail_number" text, "yacht" text, "state_country" text, "yacht_type" text, "loa_metres" text, "skipper" text, "elapsed_time_d_hh_mm_ss" text );
SELECT "state_country" FROM "line_honours_results_top_10" WHERE "race_number"='36';
1-25594271-1
What State/Country is Sean Langman the skipper?
CREATE TABLE "line_honours_results_top_10" ( "position" real, "race_number" text, "sail_number" text, "yacht" text, "state_country" text, "yacht_type" text, "loa_metres" text, "skipper" text, "elapsed_time_d_hh_mm_ss" text );
SELECT "state_country" FROM "line_honours_results_top_10" WHERE "skipper"='Sean Langman';
1-25594888-1
What yacht type is involved where Bob Oatley is the skipper?
CREATE TABLE "line_honours_results_top_10" ( "position" real, "race_number" text, "sail_number" text, "yacht" text, "state_country" text, "yacht_type" text, "loa_metres" text, "skipper" text, "elapsed_time_d_hh_mm_ss" text );
SELECT "yacht_type" FROM "line_honours_results_top_10" WHERE "skipper"='Bob Oatley';
1-25594888-1
How many races was Loki in?
CREATE TABLE "line_honours_results_top_10" ( "position" real, "race_number" text, "sail_number" text, "yacht" text, "state_country" text, "yacht_type" text, "loa_metres" text, "skipper" text, "elapsed_time_d_hh_mm_ss" text );
SELECT COUNT("race_number") FROM "line_honours_results_top_10" WHERE "yacht"='Loki';
1-25594888-1
What were the LOA (metres) for the yacht where the skipper was Jez Fanstone?
CREATE TABLE "line_honours_results_top_10" ( "position" real, "sail_number" text, "yacht" text, "state_country" text, "yacht_type" text, "loa_metres" text, "skipper" text, "elapsed_time_d_hh_mm_ss" text );
SELECT "loa_metres" FROM "line_honours_results_top_10" WHERE "skipper"='Jez Fanstone';
1-25595107-1
Who was the skipper of the yacht with an elapsed time of 3:07:39:33?
CREATE TABLE "line_honours_results_top_10" ( "position" real, "sail_number" text, "yacht" text, "state_country" text, "yacht_type" text, "loa_metres" text, "skipper" text, "elapsed_time_d_hh_mm_ss" text );
SELECT "skipper" FROM "line_honours_results_top_10" WHERE "elapsed_time_d_hh_mm_ss"='3:07:39:33';
1-25595107-1
What was the elapsed time for the yacht that was a Farr 65 type?
CREATE TABLE "line_honours_results_top_10" ( "position" real, "sail_number" text, "yacht" text, "state_country" text, "yacht_type" text, "loa_metres" text, "skipper" text, "elapsed_time_d_hh_mm_ss" text );
SELECT "elapsed_time_d_hh_mm_ss" FROM "line_honours_results_top_10" WHERE "yacht_type"='Farr 65';
1-25595107-1
What is the sail number of the yacht that had an elapsed time of 2:22:30:42?
CREATE TABLE "line_honours_results_top_10" ( "position" real, "sail_number" text, "yacht" text, "state_country" text, "yacht_type" text, "loa_metres" text, "skipper" text, "elapsed_time_d_hh_mm_ss" text );
SELECT "sail_number" FROM "line_honours_results_top_10" WHERE "elapsed_time_d_hh_mm_ss"='2:22:30:42';
1-25595107-1
What state/country was the yacht that had an elapsed time of 3:04:06:38 from?
CREATE TABLE "line_honours_results_top_10" ( "position" real, "sail_number" text, "yacht" text, "state_country" text, "yacht_type" text, "loa_metres" text, "skipper" text, "elapsed_time_d_hh_mm_ss" text );
SELECT "state_country" FROM "line_honours_results_top_10" WHERE "elapsed_time_d_hh_mm_ss"='3:04:06:38';
1-25595107-1
What state/country was the yacht from that had 15.79 LOA (metres)?
CREATE TABLE "line_honours_results_top_10" ( "position" real, "sail_number" text, "yacht" text, "state_country" text, "yacht_type" text, "loa_metres" text, "skipper" text, "elapsed_time_d_hh_mm_ss" text );
SELECT "state_country" FROM "line_honours_results_top_10" WHERE "loa_metres"='15.79';
1-25595107-1
What is Matt Allen's sail number?
CREATE TABLE "line_honours_results_top_10" ( "position" real, "sail_number" text, "yacht" text, "state_country" text, "yacht_type" text, "loa_metres" text, "skipper" text, "elapsed_time_d_hh_mm_ss" text );
SELECT "sail_number" FROM "line_honours_results_top_10" WHERE "skipper"='Matt Allen';
1-25595209-1
What is the state that the boat is from that finished in 2:15:14:06?
CREATE TABLE "line_honours_results_top_10" ( "position" real, "sail_number" text, "yacht" text, "state_country" text, "yacht_type" text, "loa_metres" text, "skipper" text, "elapsed_time_d_hh_mm_ss" text );
SELECT "state_country" FROM "line_honours_results_top_10" WHERE "elapsed_time_d_hh_mm_ss"='2:15:14:06';
1-25595209-1
What is the LOA of Brindabella?
CREATE TABLE "line_honours_results_top_10" ( "position" real, "sail_number" text, "yacht" text, "state_country" text, "yacht_type" text, "loa_metres" text, "skipper" text, "elapsed_time_d_hh_mm_ss" text );
SELECT "loa_metres" FROM "line_honours_results_top_10" WHERE "yacht"='Brindabella';
1-25595209-1
What the is the state that the boat is from with LOA of 19.50?
CREATE TABLE "line_honours_results_top_10" ( "position" real, "sail_number" text, "yacht" text, "state_country" text, "yacht_type" text, "loa_metres" text, "skipper" text, "elapsed_time_d_hh_mm_ss" text );
SELECT "state_country" FROM "line_honours_results_top_10" WHERE "loa_metres"='19.50';
1-25595209-1
How many states is Grant Wharington from?
CREATE TABLE "line_honours_results_top_10" ( "position" real, "sail_number" text, "yacht" text, "state_country" text, "yacht_type" text, "loa_metres" text, "skipper" text, "elapsed_time_d_hh_mm_ss" text );
SELECT COUNT("state_country") FROM "line_honours_results_top_10" WHERE "skipper"='Grant Wharington';
1-25595209-1
How many times are provided for the boat with LOA of 20.49?
CREATE TABLE "line_honours_results_top_10" ( "position" real, "sail_number" text, "yacht" text, "state_country" text, "yacht_type" text, "loa_metres" text, "skipper" text, "elapsed_time_d_hh_mm_ss" text );
SELECT COUNT("elapsed_time_d_hh_mm_ss") FROM "line_honours_results_top_10" WHERE "loa_metres"='20.49';
1-25595209-1
The date first lit is 1853 total number of current status.
CREATE TABLE "list_of_lighthouses_in_the_philippines" ( "lighthouse" text, "location" text, "province_city" text, "date_first_lit" text, "tower_height_in_ft_m" text, "focal_plane_in_ft_m" text, "current_status" text, "current_condition_description" text );
SELECT COUNT("current_status") FROM "list_of_lighthouses_in_the_philippines" WHERE "date_first_lit"='1853';
1-25597136-1
Location for focal plane in ft (m) is naidi hills, basco.
CREATE TABLE "list_of_lighthouses_in_the_philippines" ( "lighthouse" text, "location" text, "province_city" text, "date_first_lit" text, "tower_height_in_ft_m" text, "focal_plane_in_ft_m" text, "current_status" text, "current_condition_description" text );
SELECT "focal_plane_in_ft_m" FROM "list_of_lighthouses_in_the_philippines" WHERE "location"='Naidi Hills, Basco';
1-25597136-1
Focal plane in ft (m) is 43ft (13.1m) is the first date lit.
CREATE TABLE "list_of_lighthouses_in_the_philippines" ( "lighthouse" text, "location" text, "province_city" text, "date_first_lit" text, "tower_height_in_ft_m" text, "focal_plane_in_ft_m" text, "current_status" text, "current_condition_description" text );
SELECT "date_first_lit" FROM "list_of_lighthouses_in_the_philippines" WHERE "focal_plane_in_ft_m"='43ft (13.1m)';
1-25597136-1
The province/city corregidor island (2) is where the lighthouse is located.
CREATE TABLE "list_of_lighthouses_in_the_philippines" ( "lighthouse" text, "location" text, "province_city" text, "date_first_lit" text, "tower_height_in_ft_m" text, "focal_plane_in_ft_m" text, "current_status" text, "current_condition_description" text );
SELECT "province_city" FROM "list_of_lighthouses_in_the_philippines" WHERE "lighthouse"='Corregidor Island (2)';
1-25597136-1
Where tower height in ft (m) is 46ft (14.0m) the focal plane is ft (m).
CREATE TABLE "list_of_lighthouses_in_the_philippines" ( "lighthouse" text, "location" text, "province_city" text, "date_first_lit" text, "tower_height_in_ft_m" text, "focal_plane_in_ft_m" text, "current_status" text, "current_condition_description" text );
SELECT "focal_plane_in_ft_m" FROM "list_of_lighthouses_in_the_philippines" WHERE "tower_height_in_ft_m"='46ft (14.0m)';
1-25597136-1
What are the number in series of the pieces directed by Win Phelps and which number in season is 11?
CREATE TABLE "table1_25604014_6" ( "no_in_series" real, "no_in_season" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "production_code" text );
SELECT "no_in_series" FROM "table1_25604014_6" WHERE "directed_by"='Win Phelps' AND "no_in_season"=11;
1-25604014-6
What are the titles of the pieces that are number 2 in season?
CREATE TABLE "table1_25604014_6" ( "no_in_series" real, "no_in_season" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "production_code" text );
SELECT "title" FROM "table1_25604014_6" WHERE "no_in_season"=2;
1-25604014-6