question stringlengths 12 244 | create_table_statement stringlengths 97 895 | sql_query stringlengths 27 479 | wiki_sql_table_id stringlengths 8 14 |
|---|---|---|---|
In what race was the weight in kg 55 and the winner/2nd 1st - Jim and Tonic? | CREATE TABLE "2000_01_season_as_a_five_year_old" (
"result" text,
"date" text,
"race" text,
"venue" text,
"group" text,
"distance" text,
"weight_kg" text,
"jockey" text,
"winner_2nd" text
); | SELECT "race" FROM "2000_01_season_as_a_five_year_old" WHERE "weight_kg"='55' AND "winner_2nd"='1st - Jim And Tonic'; | 1-2581397-4 |
What was the distance in the Manikato Stakes race? | CREATE TABLE "2000_01_season_as_a_five_year_old" (
"result" text,
"date" text,
"race" text,
"venue" text,
"group" text,
"distance" text,
"weight_kg" text,
"jockey" text,
"winner_2nd" text
); | SELECT "distance" FROM "2000_01_season_as_a_five_year_old" WHERE "race"='Manikato Stakes'; | 1-2581397-4 |
What was the distance in the race where the weight in kg was 56 and the winner/2nd was 2nd - Fritz? | CREATE TABLE "2000_01_season_as_a_five_year_old" (
"result" text,
"date" text,
"race" text,
"venue" text,
"group" text,
"distance" text,
"weight_kg" text,
"jockey" text,
"winner_2nd" text
); | SELECT "distance" FROM "2000_01_season_as_a_five_year_old" WHERE "weight_kg"='56' AND "winner_2nd"='2nd - Fritz'; | 1-2581397-4 |
What date was the Doncaster race? | CREATE TABLE "2001_02_season_as_a_six_year_old" (
"result" text,
"date" text,
"race" text,
"venue" text,
"group" text,
"distance" text,
"weight_kg" text,
"jockey" text,
"winner_2nd" text
); | SELECT "date" FROM "2001_02_season_as_a_six_year_old" WHERE "race"='Doncaster'; | 1-2581397-5 |
What was the air date when the team guest captain was john bishop? | CREATE TABLE "series_1" (
"episode" real,
"air_date" text,
"team_swash" text,
"team_guest_captain" text,
"team_coxy" text
); | SELECT "air_date" FROM "series_1" WHERE "team_guest_captain"='John Bishop'; | 1-25816476-2 |
Who was the team guest captain for episode 2? | CREATE TABLE "series_1" (
"episode" real,
"air_date" text,
"team_swash" text,
"team_guest_captain" text,
"team_coxy" text
); | SELECT "team_guest_captain" FROM "series_1" WHERE "episode"=2; | 1-25816476-2 |
Who was the team swash when the team guest captain was gail porter? | CREATE TABLE "series_1" (
"episode" real,
"air_date" text,
"team_swash" text,
"team_guest_captain" text,
"team_coxy" text
); | SELECT "team_swash" FROM "series_1" WHERE "team_guest_captain"='Gail Porter'; | 1-25816476-2 |
How many entries are there for team coxy for the air date of 24 january 2010 and team guest captain of gail porter? | CREATE TABLE "series_1" (
"episode" real,
"air_date" text,
"team_swash" text,
"team_guest_captain" text,
"team_coxy" text
); | SELECT COUNT("team_coxy") FROM "series_1" WHERE "air_date"='24 January 2010' AND "team_guest_captain"='Gail Porter'; | 1-25816476-2 |
How many entries are shown for an air date when the team guest captain was stephen k amos? | CREATE TABLE "series_1" (
"episode" real,
"air_date" text,
"team_swash" text,
"team_guest_captain" text,
"team_coxy" text
); | SELECT COUNT("air_date") FROM "series_1" WHERE "team_guest_captain"='Stephen K Amos'; | 1-25816476-2 |
What group was sunline in when he was at moonee valley? | CREATE TABLE "1998_99_season_as_a_three_year_old" (
"result" text,
"date" text,
"race" text,
"venue" text,
"group" text,
"distance" text,
"weight_kg" text,
"jockey" text,
"winner_2nd" text
); | SELECT "group" FROM "1998_99_season_as_a_three_year_old" WHERE "venue"='Moonee Valley'; | 1-2581397-2 |
What was the win-loss record for the player from Switzerland? | CREATE TABLE "men" (
"player" text,
"nationality" text,
"finals" real,
"win_loss" text,
"year_s" text
); | SELECT "win_loss" FROM "men" WHERE "nationality"='Switzerland'; | 1-25820786-2 |
What was the win loss record the lady who appeard in 1969? | CREATE TABLE "table1_25820584_7" (
"player" text,
"nationality" text,
"finals" real,
"win_loss" text,
"year_s" text
); | SELECT "win_loss" FROM "table1_25820584_7" WHERE "year_s"='1969'; | 1-25820584-7 |
What player(s) appeared in 1969? | CREATE TABLE "table1_25820584_7" (
"player" text,
"nationality" text,
"finals" real,
"win_loss" text,
"year_s" text
); | SELECT "player" FROM "table1_25820584_7" WHERE "year_s"='1969'; | 1-25820584-7 |
Name the name for norway nationality | CREATE TABLE "final_results" (
"position" text,
"name" text,
"nationality" text,
"event_1_super_yoke" text,
"event_2_power_stairs" text,
"event_3_car_lift" text,
"event_4_farmers_walk" text,
"event_5_truck_pull" text,
"event_6_fingals_fingers" text,
"event_7_atlas_stones" text
); | SELECT "name" FROM "final_results" WHERE "nationality"='Norway'; | 1-25826954-7 |
What is the series # of "tanarak"? | CREATE TABLE "table1_25830834_2" (
"series_num" real,
"title" text,
"directed_by" text,
"written_by" text,
"original_air_date" text,
"production_code" text,
"u_s_viewers_million" text
); | SELECT MIN("series_num") FROM "table1_25830834_2" WHERE "title"='\"Tanarak\"'; | 1-25830834-2 |
Who wrote the episode with the production code 2j5153? | CREATE TABLE "table1_25830834_2" (
"series_num" real,
"title" text,
"directed_by" text,
"written_by" text,
"original_air_date" text,
"production_code" text,
"u_s_viewers_million" text
); | SELECT "written_by" FROM "table1_25830834_2" WHERE "production_code"='2J5153'; | 1-25830834-2 |
what is the filter when the wavelength is 222mm (k-band)? | CREATE TABLE "observations_made_of_the_hdf_s_with_the_" (
"camera" text,
"filter" text,
"wavelength" text,
"total_exposure_time" text,
"exposures" real
); | SELECT "filter" FROM "observations_made_of_the_hdf_s_with_the_" WHERE "wavelength"='222mm (K-band)'; | 1-2583036-1 |
how many times was the exposures 53? | CREATE TABLE "observations_made_of_the_hdf_s_with_the_" (
"camera" text,
"filter" text,
"wavelength" text,
"total_exposure_time" text,
"exposures" real
); | SELECT COUNT("camera") FROM "observations_made_of_the_hdf_s_with_the_" WHERE "exposures"=53; | 1-2583036-1 |
how many exposures where there when the total exposure time is 105,000s? | CREATE TABLE "observations_made_of_the_hdf_s_with_the_" (
"camera" text,
"filter" text,
"wavelength" text,
"total_exposure_time" text,
"exposures" real
); | SELECT "exposures" FROM "observations_made_of_the_hdf_s_with_the_" WHERE "total_exposure_time"='105,000s'; | 1-2583036-1 |
what is the camera used when the wavelength is 814nm (i-band)? | CREATE TABLE "observations_made_of_the_hdf_s_with_the_" (
"camera" text,
"filter" text,
"wavelength" text,
"total_exposure_time" text,
"exposures" real
); | SELECT "camera" FROM "observations_made_of_the_hdf_s_with_the_" WHERE "wavelength"='814nm (I-band)'; | 1-2583036-1 |
Who is the director of "new girls"? | CREATE TABLE "table1_2582519_6" (
"total_num" real,
"series_num" real,
"title" text,
"director" text,
"writer_s" text,
"original_airdate" text
); | SELECT "director" FROM "table1_2582519_6" WHERE "title"='\"New Girls\"'; | 1-2582519-6 |
What is the title of the show with director Paul Annett? | CREATE TABLE "table1_2582519_6" (
"total_num" real,
"series_num" real,
"title" text,
"director" text,
"writer_s" text,
"original_airdate" text
); | SELECT "title" FROM "table1_2582519_6" WHERE "director"='Paul Annett'; | 1-2582519-6 |
What was the title for the Undercard of Stevenson/Bellew? | CREATE TABLE "2013" (
"date" text,
"location" text,
"fight" text,
"division" text,
"titles" text,
"rematch" text,
"tv" text,
"promoter" text,
"notes" text
); | SELECT "titles" FROM "2013" WHERE "notes"='Undercard of Stevenson/Bellew'; | 1-25840200-1 |
What are the titles for the November 9 Super Bantamweight division? | CREATE TABLE "2013" (
"date" text,
"location" text,
"fight" text,
"division" text,
"titles" text,
"rematch" text,
"tv" text,
"promoter" text,
"notes" text
); | SELECT "titles" FROM "2013" WHERE "date"='November 9' AND "division"='Super Bantamweight'; | 1-25840200-1 |
How many notes are there for the Devon Alexander vs. Shawn Porter fight? | CREATE TABLE "2013" (
"date" text,
"location" text,
"fight" text,
"division" text,
"titles" text,
"rematch" text,
"tv" text,
"promoter" text,
"notes" text
); | SELECT COUNT("notes") FROM "2013" WHERE "fight"='Devon Alexander vs. Shawn Porter'; | 1-25840200-1 |
What division was on HBO PPV? | CREATE TABLE "2013" (
"date" text,
"location" text,
"fight" text,
"division" text,
"titles" text,
"rematch" text,
"tv" text,
"promoter" text,
"notes" text
); | SELECT "division" FROM "2013" WHERE "tv"='HBO PPV'; | 1-25840200-1 |
Where was the Undercard of Stevenson/Bellew? | CREATE TABLE "2013" (
"date" text,
"location" text,
"fight" text,
"division" text,
"titles" text,
"rematch" text,
"tv" text,
"promoter" text,
"notes" text
); | SELECT "location" FROM "2013" WHERE "notes"='Undercard of Stevenson/Bellew'; | 1-25840200-1 |
What was the division number for Verona, USA? | CREATE TABLE "2013" (
"date" text,
"location" text,
"fight" text,
"division" text,
"titles" text,
"rematch" text,
"tv" text,
"promoter" text,
"notes" text
); | SELECT COUNT("division") FROM "2013" WHERE "location"='Verona, USA'; | 1-25840200-1 |
What mobile markets have cvt hd? | CREATE TABLE "table1_25839957_5" (
"graphics" text,
"launch" real,
"market" text,
"cpu" text,
"code_name" text,
"device_id" real,
"core_clock_m_hz" text,
"execution_units" real,
"shader_model" text,
"direct_x" text,
"open_gl" text,
"open_cl" text,
"memory_bandwidth_gb_s" text,
"dvmt_mb" real... | SELECT "cvt_hd" FROM "table1_25839957_5" WHERE "market"='Mobile'; | 1-25839957-5 |
How many opengl have the ironlake ( clarkdale ) code name? | CREATE TABLE "table1_25839957_5" (
"graphics" text,
"launch" real,
"market" text,
"cpu" text,
"code_name" text,
"device_id" real,
"core_clock_m_hz" text,
"execution_units" real,
"shader_model" text,
"direct_x" text,
"open_gl" text,
"open_cl" text,
"memory_bandwidth_gb_s" text,
"dvmt_mb" real... | SELECT COUNT("open_gl") FROM "table1_25839957_5" WHERE "code_name"='Ironlake ( Clarkdale )'; | 1-25839957-5 |
What core clocks ( mhz ) have a 21.3 memory bandwidth ( gb/s )? | CREATE TABLE "table1_25839957_5" (
"graphics" text,
"launch" real,
"market" text,
"cpu" text,
"code_name" text,
"device_id" real,
"core_clock_m_hz" text,
"execution_units" real,
"shader_model" text,
"direct_x" text,
"open_gl" text,
"open_cl" text,
"memory_bandwidth_gb_s" text,
"dvmt_mb" real... | SELECT "core_clock_m_hz" FROM "table1_25839957_5" WHERE "memory_bandwidth_gb_s"='21.3'; | 1-25839957-5 |
What's the minimum number of execution units? | CREATE TABLE "table1_25839957_5" (
"graphics" text,
"launch" real,
"market" text,
"cpu" text,
"code_name" text,
"device_id" real,
"core_clock_m_hz" text,
"execution_units" real,
"shader_model" text,
"direct_x" text,
"open_gl" text,
"open_cl" text,
"memory_bandwidth_gb_s" text,
"dvmt_mb" real... | SELECT MIN("execution_units") FROM "table1_25839957_5"; | 1-25839957-5 |
How many shader models have a 900 core clock ( mhz )? | CREATE TABLE "table1_25839957_5" (
"graphics" text,
"launch" real,
"market" text,
"cpu" text,
"code_name" text,
"device_id" real,
"core_clock_m_hz" text,
"execution_units" real,
"shader_model" text,
"direct_x" text,
"open_gl" text,
"open_cl" text,
"memory_bandwidth_gb_s" text,
"dvmt_mb" real... | SELECT COUNT("shader_model") FROM "table1_25839957_5" WHERE "core_clock_m_hz"='900'; | 1-25839957-5 |
What is the population for the place with an area of 2.33 km2? | CREATE TABLE "table1_2588674_1" (
"village" text,
"area_km" text,
"population_2000_census" real,
"region" text,
"pop_density" real
); | SELECT MAX("population_2000_census") FROM "table1_2588674_1" WHERE "area_km"='2.33'; | 1-2588674-1 |
How many places named asan-maina? | CREATE TABLE "table1_2588674_1" (
"village" text,
"area_km" text,
"population_2000_census" real,
"region" text,
"pop_density" real
); | SELECT COUNT("region") FROM "table1_2588674_1" WHERE "village"='Asan-Maina'; | 1-2588674-1 |
How many places named mongmong-toto-maite? | CREATE TABLE "table1_2588674_1" (
"village" text,
"area_km" text,
"population_2000_census" real,
"region" text,
"pop_density" real
); | SELECT COUNT("region") FROM "table1_2588674_1" WHERE "village"='Mongmong-Toto-Maite'; | 1-2588674-1 |
What is the population density of mongmong-toto-maite? | CREATE TABLE "table1_2588674_1" (
"village" text,
"area_km" text,
"population_2000_census" real,
"region" text,
"pop_density" real
); | SELECT MIN("pop_density") FROM "table1_2588674_1" WHERE "village"='Mongmong-Toto-Maite'; | 1-2588674-1 |
What village has an area of 27.19 km2? | CREATE TABLE "table1_2588674_1" (
"village" text,
"area_km" text,
"population_2000_census" real,
"region" text,
"pop_density" real
); | SELECT "village" FROM "table1_2588674_1" WHERE "area_km"='27.19'; | 1-2588674-1 |
What region is inarajan in? | CREATE TABLE "table1_2588674_1" (
"village" text,
"area_km" text,
"population_2000_census" real,
"region" text,
"pop_density" real
); | SELECT "region" FROM "table1_2588674_1" WHERE "village"='Inarajan'; | 1-2588674-1 |
How many POS when the average is 1.8529? | CREATE TABLE "relegation" (
"pos" real,
"team" text,
"07_a_pts" real,
"08_c_pts" real,
"08_a_pts" real,
"09_c_pts" real,
"09_a_pts" real,
"10_c_pts" real,
"total_pts" real,
"total_pld" real,
"avg" text
); | SELECT MAX("pos") FROM "relegation" WHERE "avg"='1.8529'; | 1-25887826-17 |
How many 07 A points for the team with 1.4902 average? | CREATE TABLE "relegation" (
"pos" real,
"team" text,
"07_a_pts" real,
"08_c_pts" real,
"08_a_pts" real,
"09_c_pts" real,
"09_a_pts" real,
"10_c_pts" real,
"total_pts" real,
"total_pld" real,
"avg" text
); | SELECT MAX("07_a_pts") FROM "relegation" WHERE "avg"='1.4902'; | 1-25887826-17 |
How many figures for 08 A points for the team with 1.1863 average? | CREATE TABLE "relegation" (
"pos" real,
"team" text,
"07_a_pts" real,
"08_c_pts" real,
"08_a_pts" real,
"09_c_pts" real,
"09_a_pts" real,
"10_c_pts" real,
"total_pts" real,
"total_pld" real,
"avg" text
); | SELECT COUNT("08_a_pts") FROM "relegation" WHERE "avg"='1.1863'; | 1-25887826-17 |
What is the largest number of 10 C points for a team with 39 total points? | CREATE TABLE "relegation" (
"pos" real,
"team" text,
"07_a_pts" real,
"08_c_pts" real,
"08_a_pts" real,
"09_c_pts" real,
"09_a_pts" real,
"10_c_pts" real,
"total_pts" real,
"total_pld" real,
"avg" text
); | SELECT MAX("10_c_pts") FROM "relegation" WHERE "total_pts"=39; | 1-25887826-17 |
Who directed the episode with 4.82 million U.S. viewers? | CREATE TABLE "table1_25851971_1" (
"no" real,
"title" text,
"directed_by" text,
"written_by" text,
"original_air_date" text,
"production_code" text,
"u_s_viewers_million" text
); | SELECT "directed_by" FROM "table1_25851971_1" WHERE "u_s_viewers_million"='4.82'; | 1-25851971-1 |
Who directed the episode that had a production code of 2j5457? | CREATE TABLE "table1_25851971_1" (
"no" real,
"title" text,
"directed_by" text,
"written_by" text,
"original_air_date" text,
"production_code" text,
"u_s_viewers_million" text
); | SELECT "directed_by" FROM "table1_25851971_1" WHERE "production_code"='2J5457'; | 1-25851971-1 |
What episode number was written by Anthony Sparks? | CREATE TABLE "table1_25851971_1" (
"no" real,
"title" text,
"directed_by" text,
"written_by" text,
"original_air_date" text,
"production_code" text,
"u_s_viewers_million" text
); | SELECT MIN("no") FROM "table1_25851971_1" WHERE "written_by"='Anthony Sparks'; | 1-25851971-1 |
What was the production code of the episode written by Anthony Sparks? | CREATE TABLE "table1_25851971_1" (
"no" real,
"title" text,
"directed_by" text,
"written_by" text,
"original_air_date" text,
"production_code" text,
"u_s_viewers_million" text
); | SELECT "production_code" FROM "table1_25851971_1" WHERE "written_by"='Anthony Sparks'; | 1-25851971-1 |
What episode number was written by Karin Gist? | CREATE TABLE "table1_25851971_1" (
"no" real,
"title" text,
"directed_by" text,
"written_by" text,
"original_air_date" text,
"production_code" text,
"u_s_viewers_million" text
); | SELECT MAX("no") FROM "table1_25851971_1" WHERE "written_by"='Karin Gist'; | 1-25851971-1 |
Name the leader battle for 4-3 vote | CREATE TABLE "table1_25920798_2" (
"episode" real,
"reward" text,
"leader_battle" text,
"immunity" text,
"individual_immunity" text,
"eliminated" text,
"vote" text,
"finish" text
); | SELECT "leader_battle" FROM "table1_25920798_2" WHERE "vote"='4-3'; | 1-25920798-2 |
Name the finish for 4-4 | CREATE TABLE "table1_25920798_2" (
"episode" real,
"reward" text,
"leader_battle" text,
"immunity" text,
"individual_immunity" text,
"eliminated" text,
"vote" text,
"finish" text
); | SELECT "finish" FROM "table1_25920798_2" WHERE "vote"='4-4'; | 1-25920798-2 |
Name the left day 9 finish for eliminated | CREATE TABLE "table1_25920798_2" (
"episode" real,
"reward" text,
"leader_battle" text,
"immunity" text,
"individual_immunity" text,
"eliminated" text,
"vote" text,
"finish" text
); | SELECT "eliminated" FROM "table1_25920798_2" WHERE "finish"='Left Day 9'; | 1-25920798-2 |
Name the leader battle for plamen | CREATE TABLE "table1_25920798_2" (
"episode" real,
"reward" text,
"leader_battle" text,
"immunity" text,
"individual_immunity" text,
"eliminated" text,
"vote" text,
"finish" text
); | SELECT "leader_battle" FROM "table1_25920798_2" WHERE "eliminated"='Plamen'; | 1-25920798-2 |
What institution is represented by the lady saints? | CREATE TABLE "member_schools" (
"institution" text,
"seniors" text,
"juniors" text,
"women" text,
"status" text,
"founded" real,
"affiliation_population" text,
"color" text,
"location" text
); | SELECT "institution" FROM "member_schools" WHERE "women"='Lady Saints'; | 1-2589963-1 |
What status of school is the school represented by the baby olympians? | CREATE TABLE "member_schools" (
"institution" text,
"seniors" text,
"juniors" text,
"women" text,
"status" text,
"founded" real,
"affiliation_population" text,
"color" text,
"location" text
); | SELECT "status" FROM "member_schools" WHERE "juniors"='Baby Olympians'; | 1-2589963-1 |
What year was the school with green and white colors founded? | CREATE TABLE "member_schools" (
"institution" text,
"seniors" text,
"juniors" text,
"women" text,
"status" text,
"founded" real,
"affiliation_population" text,
"color" text,
"location" text
); | SELECT MAX("founded") FROM "member_schools" WHERE "color"='Green and White'; | 1-2589963-1 |
What status of school is informatics international college? | CREATE TABLE "member_schools" (
"institution" text,
"seniors" text,
"juniors" text,
"women" text,
"status" text,
"founded" real,
"affiliation_population" text,
"color" text,
"location" text
); | SELECT "status" FROM "member_schools" WHERE "institution"='Informatics International College'; | 1-2589963-1 |
How many catagories for denominations does Austria have? | CREATE TABLE "table1_2592308_1" (
"country" text,
"name_of_bullion_coin" text,
"fineness" text,
"denominations_gold_weight" text,
"years_of_mintage" text
); | SELECT COUNT("denominations_gold_weight") FROM "table1_2592308_1" WHERE "country"='Austria'; | 1-2592308-1 |
What are all the denominations for China? | CREATE TABLE "table1_2592308_1" (
"country" text,
"name_of_bullion_coin" text,
"fineness" text,
"denominations_gold_weight" text,
"years_of_mintage" text
); | SELECT "denominations_gold_weight" FROM "table1_2592308_1" WHERE "country"='China'; | 1-2592308-1 |
what is the name of award when the name of film is sana keithel? | CREATE TABLE "table1_25926120_7" (
"name_of_award" text,
"name_of_film" text,
"language" text,
"awardee_s" text,
"cash_prize" text
); | SELECT "name_of_award" FROM "table1_25926120_7" WHERE "name_of_film"='Sana Keithel'; | 1-25926120-7 |
what is the name of award when the awardee(s) is elangbam natasha? | CREATE TABLE "table1_25926120_7" (
"name_of_award" text,
"name_of_film" text,
"language" text,
"awardee_s" text,
"cash_prize" text
); | SELECT "name_of_award" FROM "table1_25926120_7" WHERE "awardee_s"='Elangbam Natasha'; | 1-25926120-7 |
how many times is the name of film narmeen? | CREATE TABLE "table1_25926120_7" (
"name_of_award" text,
"name_of_film" text,
"language" text,
"awardee_s" text,
"cash_prize" text
); | SELECT COUNT("cash_prize") FROM "table1_25926120_7" WHERE "name_of_film"='Narmeen'; | 1-25926120-7 |
what is the language when the name of award is best editing? | CREATE TABLE "table1_25926120_7" (
"name_of_award" text,
"name_of_film" text,
"language" text,
"awardee_s" text,
"cash_prize" text
); | SELECT "language" FROM "table1_25926120_7" WHERE "name_of_award"='Best Editing'; | 1-25926120-7 |
who are the awardees when the name of award is best agricultural film? | CREATE TABLE "table1_25926120_7" (
"name_of_award" text,
"name_of_film" text,
"language" text,
"awardee_s" text,
"cash_prize" text
); | SELECT "awardee_s" FROM "table1_25926120_7" WHERE "name_of_award"='Best Agricultural Film'; | 1-25926120-7 |
what is the language when the awardee is re-recordist : mateen ahmad? | CREATE TABLE "table1_25926120_7" (
"name_of_award" text,
"name_of_film" text,
"language" text,
"awardee_s" text,
"cash_prize" text
); | SELECT "language" FROM "table1_25926120_7" WHERE "awardee_s"='Re-recordist : Mateen Ahmad'; | 1-25926120-7 |
What is the highest Jews and others 1? | CREATE TABLE "table1_25947046_1" (
"metropolitan_ring" text,
"localities" real,
"total" real,
"jews_and_others_1" real,
"thereof_jews" real,
"arabs" real,
"population_density_per_km" text,
"annual_population_growth_rate" text
); | SELECT MAX("jews_and_others_1") FROM "table1_25947046_1"; | 1-25947046-1 |
What is the lowest jews and others 1 for the localities 11? | CREATE TABLE "table1_25947046_1" (
"metropolitan_ring" text,
"localities" real,
"total" real,
"jews_and_others_1" real,
"thereof_jews" real,
"arabs" real,
"population_density_per_km" text,
"annual_population_growth_rate" text
); | SELECT MIN("jews_and_others_1") FROM "table1_25947046_1" WHERE "localities"=11; | 1-25947046-1 |
What is the arabs when the annual population growth rate is 1.7%? | CREATE TABLE "table1_25947046_1" (
"metropolitan_ring" text,
"localities" real,
"total" real,
"jews_and_others_1" real,
"thereof_jews" real,
"arabs" real,
"population_density_per_km" text,
"annual_population_growth_rate" text
); | SELECT "arabs" FROM "table1_25947046_1" WHERE "annual_population_growth_rate"='1.7%'; | 1-25947046-1 |
What is the lowest total when arabs is 4000? | CREATE TABLE "table1_25947046_1" (
"metropolitan_ring" text,
"localities" real,
"total" real,
"jews_and_others_1" real,
"thereof_jews" real,
"arabs" real,
"population_density_per_km" text,
"annual_population_growth_rate" text
); | SELECT MIN("total") FROM "table1_25947046_1" WHERE "arabs"=4000; | 1-25947046-1 |
Who won best actress? | CREATE TABLE "table1_25926120_3" (
"name_of_award" text,
"name_of_film" text,
"language" text,
"awardee_s" text,
"cash_prize" text
); | SELECT "awardee_s" FROM "table1_25926120_3" WHERE "name_of_award"='Best Actress'; | 1-25926120-3 |
How many cash prizes were given for the hindi language film jodhaa akbar? | CREATE TABLE "table1_25926120_3" (
"name_of_award" text,
"name_of_film" text,
"language" text,
"awardee_s" text,
"cash_prize" text
); | SELECT COUNT("cash_prize") FROM "table1_25926120_3" WHERE "language"='Hindi' AND "name_of_film"='Jodhaa Akbar'; | 1-25926120-3 |
How many films were in hindi? | CREATE TABLE "table1_25926120_3" (
"name_of_award" text,
"name_of_film" text,
"language" text,
"awardee_s" text,
"cash_prize" text
); | SELECT COUNT("name_of_film") FROM "table1_25926120_3" WHERE "language"='Hindi'; | 1-25926120-3 |
How many films were in assamese? | CREATE TABLE "table1_25926120_3" (
"name_of_award" text,
"name_of_film" text,
"language" text,
"awardee_s" text,
"cash_prize" text
); | SELECT COUNT("name_of_film") FROM "table1_25926120_3" WHERE "language"='Assamese'; | 1-25926120-3 |
Who won best actor? | CREATE TABLE "table1_25926120_3" (
"name_of_award" text,
"name_of_film" text,
"language" text,
"awardee_s" text,
"cash_prize" text
); | SELECT "awardee_s" FROM "table1_25926120_3" WHERE "name_of_award"='Best Actor'; | 1-25926120-3 |
Name the winner for jan 24 | CREATE TABLE "tournament_results" (
"date" text,
"tournament" text,
"location" text,
"purse" real,
"winner" text,
"score" text,
"1st_prize" text
); | SELECT "winner" FROM "tournament_results" WHERE "date"='Jan 24'; | 1-25938117-1 |
Name the total number of dates for toshiba classic | CREATE TABLE "tournament_results" (
"date" text,
"tournament" text,
"location" text,
"purse" real,
"winner" text,
"score" text,
"1st_prize" text
); | SELECT COUNT("date") FROM "tournament_results" WHERE "tournament"='Toshiba Classic'; | 1-25938117-1 |
Name the tournament for dominican republic | CREATE TABLE "tournament_results" (
"date" text,
"tournament" text,
"location" text,
"purse" real,
"winner" text,
"score" text,
"1st_prize" text
); | SELECT "tournament" FROM "tournament_results" WHERE "location"='Dominican Republic'; | 1-25938117-1 |
Name the total number of winners for allianz championship | CREATE TABLE "tournament_results" (
"date" text,
"tournament" text,
"location" text,
"purse" real,
"winner" text,
"score" text,
"1st_prize" text
); | SELECT COUNT("winner") FROM "tournament_results" WHERE "tournament"='Allianz Championship'; | 1-25938117-1 |
Name the 1st prize for senior pga championship | CREATE TABLE "tournament_results" (
"date" text,
"tournament" text,
"location" text,
"purse" real,
"winner" text,
"score" text,
"1st_prize" text
); | SELECT "1st_prize" FROM "tournament_results" WHERE "tournament"='Senior PGA Championship'; | 1-25938117-1 |
What was the place for the celebrity whose aggregate was 35? | CREATE TABLE "list_of_contestants" (
"celebrity" text,
"known_for" text,
"age" real,
"professional" text,
"series" real,
"place" text,
"dances" real,
"highest_score" real,
"lowest_score" real,
"aggregate" real,
"average" text
); | SELECT "place" FROM "list_of_contestants" WHERE "aggregate"=35; | 1-25931938-1 |
How many dances did John Barnes have? | CREATE TABLE "list_of_contestants" (
"celebrity" text,
"known_for" text,
"age" real,
"professional" text,
"series" real,
"place" text,
"dances" real,
"highest_score" real,
"lowest_score" real,
"aggregate" real,
"average" text
); | SELECT MIN("dances") FROM "list_of_contestants" WHERE "celebrity"='John Barnes'; | 1-25931938-1 |
What is the age of the celebrity who had a 402 aggregate? | CREATE TABLE "list_of_contestants" (
"celebrity" text,
"known_for" text,
"age" real,
"professional" text,
"series" real,
"place" text,
"dances" real,
"highest_score" real,
"lowest_score" real,
"aggregate" real,
"average" text
); | SELECT MAX("age") FROM "list_of_contestants" WHERE "aggregate"=402; | 1-25931938-1 |
What was the aggregate for Ricky Groves? | CREATE TABLE "list_of_contestants" (
"celebrity" text,
"known_for" text,
"age" real,
"professional" text,
"series" real,
"place" text,
"dances" real,
"highest_score" real,
"lowest_score" real,
"aggregate" real,
"average" text
); | SELECT MAX("aggregate") FROM "list_of_contestants" WHERE "celebrity"='Ricky Groves'; | 1-25931938-1 |
What was the aggregate for the celebrity who was known for being a singer and had 7 dances? | CREATE TABLE "list_of_contestants" (
"celebrity" text,
"known_for" text,
"age" real,
"professional" text,
"series" real,
"place" text,
"dances" real,
"highest_score" real,
"lowest_score" real,
"aggregate" real,
"average" text
); | SELECT "aggregate" FROM "list_of_contestants" WHERE "dances"=7 AND "known_for"='Singer'; | 1-25931938-1 |
What are the conditions of access where access using a Croatian identity card is yes and the length of stay permitted is freedom of movement? | CREATE TABLE "europe" (
"countries_and_territories" text,
"conditions_of_access" text,
"length_of_stay_permitted" text,
"fee_if_applicable" text,
"access_using_a_croatian_identity_card" text
); | SELECT "conditions_of_access" FROM "europe" WHERE "access_using_a_croatian_identity_card"='Yes' AND "length_of_stay_permitted"='Freedom of movement'; | 1-25965003-3 |
Can one access the Jersey territory using a Croatian identity card? | CREATE TABLE "europe" (
"countries_and_territories" text,
"conditions_of_access" text,
"length_of_stay_permitted" text,
"fee_if_applicable" text,
"access_using_a_croatian_identity_card" text
); | SELECT "access_using_a_croatian_identity_card" FROM "europe" WHERE "countries_and_territories"='Jersey'; | 1-25965003-3 |
What is the fee (if applicable) for Norway? | CREATE TABLE "europe" (
"countries_and_territories" text,
"conditions_of_access" text,
"length_of_stay_permitted" text,
"fee_if_applicable" text,
"access_using_a_croatian_identity_card" text
); | SELECT "fee_if_applicable" FROM "europe" WHERE "countries_and_territories"='Norway'; | 1-25965003-3 |
What is the permitted length of stay in the Jersey territory? | CREATE TABLE "europe" (
"countries_and_territories" text,
"conditions_of_access" text,
"length_of_stay_permitted" text,
"fee_if_applicable" text,
"access_using_a_croatian_identity_card" text
); | SELECT "length_of_stay_permitted" FROM "europe" WHERE "countries_and_territories"='Jersey'; | 1-25965003-3 |
Can one access the Faroe Islands using a Croatian identity card? | CREATE TABLE "europe" (
"countries_and_territories" text,
"conditions_of_access" text,
"length_of_stay_permitted" text,
"fee_if_applicable" text,
"access_using_a_croatian_identity_card" text
); | SELECT "access_using_a_croatian_identity_card" FROM "europe" WHERE "countries_and_territories"='Faroe Islands'; | 1-25965003-3 |
What length of stay is permitted in the European Union? | CREATE TABLE "europe" (
"countries_and_territories" text,
"conditions_of_access" text,
"length_of_stay_permitted" text,
"fee_if_applicable" text,
"access_using_a_croatian_identity_card" text
); | SELECT "length_of_stay_permitted" FROM "europe" WHERE "countries_and_territories"='European Union'; | 1-25965003-3 |
What was the complement for the unit that had 3 off 37 men killed? | CREATE TABLE "table1_2596811_12" (
"unit" text,
"commander" text,
"complement" text,
"killed" text,
"wounded" text,
"missing" text
); | SELECT "complement" FROM "table1_2596811_12" WHERE "killed"='3 off 37 men'; | 1-2596811-12 |
What is the number of wounded figures associated with a complement of 22 off 637 men? | CREATE TABLE "table1_2596811_12" (
"unit" text,
"commander" text,
"complement" text,
"killed" text,
"wounded" text,
"missing" text
); | SELECT COUNT("wounded") FROM "table1_2596811_12" WHERE "complement"='22 off 637 men'; | 1-2596811-12 |
What is the number of commanders that had 0 off 63 men killed? | CREATE TABLE "table1_2596811_12" (
"unit" text,
"commander" text,
"complement" text,
"killed" text,
"wounded" text,
"missing" text
); | SELECT COUNT("commander") FROM "table1_2596811_12" WHERE "killed"='0 off 63 men'; | 1-2596811-12 |
What was the complement associated with 0 off 3 men killed and 0 off 2 men wounded? | CREATE TABLE "table1_2596811_12" (
"unit" text,
"commander" text,
"complement" text,
"killed" text,
"wounded" text,
"missing" text
); | SELECT "complement" FROM "table1_2596811_12" WHERE "killed"='0 off 3 men' AND "wounded"='0 off 2 men'; | 1-2596811-12 |
How many regions had rainfall infiltration (km 3/year) of 9.3? | CREATE TABLE "key_characteristics_of_the_major_climati" (
"region" text,
"land_area_km_2" text,
"rainfall_by_depth_mm_year" real,
"rainfall_by_volume_km_3_year" text,
"surface_run_off_km_3_year" text,
"infiltration_km_3_year" text,
"evapotranspiration_km_3_year" text
); | SELECT COUNT("rainfall_by_depth_mm_year") FROM "key_characteristics_of_the_major_climati" WHERE "infiltration_km_3_year"='9.3'; | 1-25983027-1 |
What was the rainfall by volume in Huetar Atlantico where the rainfall depth (mm/year) was 3527? | CREATE TABLE "key_characteristics_of_the_major_climati" (
"region" text,
"land_area_km_2" text,
"rainfall_by_depth_mm_year" real,
"rainfall_by_volume_km_3_year" text,
"surface_run_off_km_3_year" text,
"infiltration_km_3_year" text,
"evapotranspiration_km_3_year" text
); | SELECT "rainfall_by_volume_km_3_year" FROM "key_characteristics_of_the_major_climati" WHERE "rainfall_by_depth_mm_year"=3527; | 1-25983027-1 |
In Pacifico Central where the rainfall by depth (mm/year) was 2801 what was the rainfall by volume? | CREATE TABLE "key_characteristics_of_the_major_climati" (
"region" text,
"land_area_km_2" text,
"rainfall_by_depth_mm_year" real,
"rainfall_by_volume_km_3_year" text,
"surface_run_off_km_3_year" text,
"infiltration_km_3_year" text,
"evapotranspiration_km_3_year" text
); | SELECT "rainfall_by_volume_km_3_year" FROM "key_characteristics_of_the_major_climati" WHERE "rainfall_by_depth_mm_year"=2801; | 1-25983027-1 |
In the region where the rainfall by volume (km 3 /year) was 13.2, what was the evapotranspiration (km 3 /year)? | CREATE TABLE "key_characteristics_of_the_major_climati" (
"region" text,
"land_area_km_2" text,
"rainfall_by_depth_mm_year" real,
"rainfall_by_volume_km_3_year" text,
"surface_run_off_km_3_year" text,
"infiltration_km_3_year" text,
"evapotranspiration_km_3_year" text
); | SELECT "evapotranspiration_km_3_year" FROM "key_characteristics_of_the_major_climati" WHERE "rainfall_by_volume_km_3_year"='13.2'; | 1-25983027-1 |
In the Central region, what was the infiltration (km 3 /year)? | CREATE TABLE "key_characteristics_of_the_major_climati" (
"region" text,
"land_area_km_2" text,
"rainfall_by_depth_mm_year" real,
"rainfall_by_volume_km_3_year" text,
"surface_run_off_km_3_year" text,
"infiltration_km_3_year" text,
"evapotranspiration_km_3_year" text
); | SELECT "infiltration_km_3_year" FROM "key_characteristics_of_the_major_climati" WHERE "region"='Central'; | 1-25983027-1 |
In the Central region, where the land area (km 2) is 8,543.2, what was the rainfall by depth (mm/year)? | CREATE TABLE "key_characteristics_of_the_major_climati" (
"region" text,
"land_area_km_2" text,
"rainfall_by_depth_mm_year" real,
"rainfall_by_volume_km_3_year" text,
"surface_run_off_km_3_year" text,
"infiltration_km_3_year" text,
"evapotranspiration_km_3_year" text
); | SELECT "rainfall_by_depth_mm_year" FROM "key_characteristics_of_the_major_climati" WHERE "land_area_km_2"='8,543.2'; | 1-25983027-1 |
How many wins did Parsons have in the year where his winnings were $90,700? | CREATE TABLE "nascar_sprint_cup_series" (
"year" real,
"starts" real,
"wins" real,
"top_5" real,
"top_10" real,
"poles" real,
"avg_start" text,
"avg_finish" text,
"winnings" text,
"position" text,
"team_s" text
); | SELECT MAX("wins") FROM "nascar_sprint_cup_series" WHERE "winnings"='$90,700'; | 1-2597876-1 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.