question stringlengths 12 244 | create_table_statement stringlengths 97 895 | sql_query stringlengths 27 479 | wiki_sql_table_id stringlengths 8 14 |
|---|---|---|---|
Who directed "sperminator"? | CREATE TABLE "table1_25604014_4" (
"no_in_series" real,
"no_in_season" real,
"title" text,
"directed_by" text,
"written_by" text,
"original_air_date" text,
"production_code" text
); | SELECT "directed_by" FROM "table1_25604014_4" WHERE "title"='\"Sperminator\"'; | 1-25604014-4 |
Who wrote "to live and diet in L.A."? | CREATE TABLE "table1_25604014_4" (
"no_in_series" real,
"no_in_season" real,
"title" text,
"directed_by" text,
"written_by" text,
"original_air_date" text,
"production_code" text
); | SELECT "written_by" FROM "table1_25604014_4" WHERE "title"='\"To Live and Diet in L.A.\"'; | 1-25604014-4 |
Who wrote the episode "victor/victorious"? | CREATE TABLE "table1_25604014_4" (
"no_in_series" real,
"no_in_season" real,
"title" text,
"directed_by" text,
"written_by" text,
"original_air_date" text,
"production_code" text
); | SELECT "written_by" FROM "table1_25604014_4" WHERE "title"='\"Victor/Victorious\"'; | 1-25604014-4 |
What is the production code for the episode directed by Sam weisman? | CREATE TABLE "table1_25604014_4" (
"no_in_series" real,
"no_in_season" real,
"title" text,
"directed_by" text,
"written_by" text,
"original_air_date" text,
"production_code" text
); | SELECT "production_code" FROM "table1_25604014_4" WHERE "directed_by"='Sam Weisman'; | 1-25604014-4 |
Who wrote episode number 81 in the series? | CREATE TABLE "table1_25604014_5" (
"no_in_series" real,
"no_in_season" real,
"title" text,
"directed_by" text,
"written_by" text,
"original_air_date" text,
"production_code" text
); | SELECT "written_by" FROM "table1_25604014_5" WHERE "no_in_series"=81; | 1-25604014-5 |
What is the original air date for "ex-wives and videotapes"? | CREATE TABLE "table1_25604014_5" (
"no_in_series" real,
"no_in_season" real,
"title" text,
"directed_by" text,
"written_by" text,
"original_air_date" text,
"production_code" text
); | SELECT "original_air_date" FROM "table1_25604014_5" WHERE "title"='\"Ex-Wives and Videotapes\"'; | 1-25604014-5 |
What is the original air date for "one rat, one ranger"? | CREATE TABLE "table1_25604014_5" (
"no_in_series" real,
"no_in_season" real,
"title" text,
"directed_by" text,
"written_by" text,
"original_air_date" text,
"production_code" text
); | SELECT "original_air_date" FROM "table1_25604014_5" WHERE "title"='\"One Rat, One Ranger\"'; | 1-25604014-5 |
How many episodes directed by david carson? | CREATE TABLE "table1_25604014_5" (
"no_in_series" real,
"no_in_season" real,
"title" text,
"directed_by" text,
"written_by" text,
"original_air_date" text,
"production_code" text
); | SELECT COUNT("no_in_season") FROM "table1_25604014_5" WHERE "directed_by"='David Carson'; | 1-25604014-5 |
Who direcred the episode with production code 7d03? | CREATE TABLE "table1_25604014_5" (
"no_in_series" real,
"no_in_season" real,
"title" text,
"directed_by" text,
"written_by" text,
"original_air_date" text,
"production_code" text
); | SELECT "directed_by" FROM "table1_25604014_5" WHERE "production_code"='7D03'; | 1-25604014-5 |
In what settlement is the population 1114? | CREATE TABLE "list_of_cities_towns_and_villages_in_voj" (
"settlement" text,
"cyrillic_name" text,
"type" text,
"population_2011" real,
"largest_ethnic_group_2002" text,
"dominant_religion_2002" text
); | SELECT "settlement" FROM "list_of_cities_towns_and_villages_in_voj" WHERE "population_2011"=1114; | 1-2562572-19 |
What type is the settlement of Lok? | CREATE TABLE "list_of_cities_towns_and_villages_in_voj" (
"settlement" text,
"cyrillic_name" text,
"type" text,
"population_2011" real,
"largest_ethnic_group_2002" text,
"dominant_religion_2002" text
); | SELECT "type" FROM "list_of_cities_towns_and_villages_in_voj" WHERE "settlement"='Lok'; | 1-2562572-19 |
How many populations are listed for mladenovo? | CREATE TABLE "table1_2562572_12" (
"settlement" text,
"cyrillic_name_other_names" text,
"type" text,
"population_2011" real,
"largest_ethnic_group_2002" text,
"dominant_religion_2002" text
); | SELECT COUNT("population_2011") FROM "table1_2562572_12" WHERE "settlement"='Mladenovo'; | 1-2562572-12 |
What is the dominate religion in the location with a population of 4831? | CREATE TABLE "table1_2562572_12" (
"settlement" text,
"cyrillic_name_other_names" text,
"type" text,
"population_2011" real,
"largest_ethnic_group_2002" text,
"dominant_religion_2002" text
); | SELECT "dominant_religion_2002" FROM "table1_2562572_12" WHERE "population_2011"=4831; | 1-2562572-12 |
What type of institution is San Diego Christian college? | CREATE TABLE "current_members" (
"institution" text,
"location" text,
"type" text,
"joined" real,
"enrollment" real,
"nickname" text
); | SELECT "type" FROM "current_members" WHERE "institution"='San Diego Christian College'; | 1-2562113-1 |
What is the enrollment for the hawks? | CREATE TABLE "current_members" (
"institution" text,
"location" text,
"type" text,
"joined" real,
"enrollment" real,
"nickname" text
); | SELECT MAX("enrollment") FROM "current_members" WHERE "nickname"='Hawks'; | 1-2562113-1 |
What is the enrollment for the institution that joined in 1987? | CREATE TABLE "current_members" (
"institution" text,
"location" text,
"type" text,
"joined" real,
"enrollment" real,
"nickname" text
); | SELECT MIN("enrollment") FROM "current_members" WHERE "joined"=1987; | 1-2562113-1 |
What is the location of the institution nicknamed Lions? | CREATE TABLE "current_members" (
"institution" text,
"location" text,
"type" text,
"joined" real,
"enrollment" real,
"nickname" text
); | SELECT "location" FROM "current_members" WHERE "nickname"='Lions'; | 1-2562113-1 |
How many 2011 populations have a Cyrillic name of футог? | CREATE TABLE "list_of_urban_settlements_in_vojvodina" (
"urban_settlement" text,
"cyrillic_name" text,
"city_municipality" text,
"district" text,
"population_1991" real,
"population_2002" real,
"population_2011" real
); | SELECT COUNT("population_2011") FROM "list_of_urban_settlements_in_vojvodina" WHERE "cyrillic_name"='Футог'; | 1-2562572-2 |
What is the number of 2002 populations having a 2011 population of exactly 5399? | CREATE TABLE "list_of_urban_settlements_in_vojvodina" (
"urban_settlement" text,
"cyrillic_name" text,
"city_municipality" text,
"district" text,
"population_1991" real,
"population_2002" real,
"population_2011" real
); | SELECT COUNT("population_2002") FROM "list_of_urban_settlements_in_vojvodina" WHERE "population_2011"=5399; | 1-2562572-2 |
What is the number of 1991 populations named Bečej? | CREATE TABLE "list_of_urban_settlements_in_vojvodina" (
"urban_settlement" text,
"cyrillic_name" text,
"city_municipality" text,
"district" text,
"population_1991" real,
"population_2002" real,
"population_2011" real
); | SELECT COUNT("population_1991") FROM "list_of_urban_settlements_in_vojvodina" WHERE "city_municipality"='Bečej'; | 1-2562572-2 |
What is the 1991 population for the urban settlement named Bački Jarak? | CREATE TABLE "list_of_urban_settlements_in_vojvodina" (
"urban_settlement" text,
"cyrillic_name" text,
"city_municipality" text,
"district" text,
"population_1991" real,
"population_2002" real,
"population_2011" real
); | SELECT "population_1991" FROM "list_of_urban_settlements_in_vojvodina" WHERE "urban_settlement"='Bački Jarak'; | 1-2562572-2 |
What is the number of 2011 populations having a 2002 population of 29449? | CREATE TABLE "list_of_urban_settlements_in_vojvodina" (
"urban_settlement" text,
"cyrillic_name" text,
"city_municipality" text,
"district" text,
"population_1991" real,
"population_2002" real,
"population_2011" real
); | SELECT COUNT("population_2011") FROM "list_of_urban_settlements_in_vojvodina" WHERE "population_2002"=29449; | 1-2562572-2 |
What is the number of cities/municipalities having an urban settlement of Srbobran? | CREATE TABLE "list_of_urban_settlements_in_vojvodina" (
"urban_settlement" text,
"cyrillic_name" text,
"city_municipality" text,
"district" text,
"population_1991" real,
"population_2002" real,
"population_2011" real
); | SELECT COUNT("city_municipality") FROM "list_of_urban_settlements_in_vojvodina" WHERE "urban_settlement"='Srbobran'; | 1-2562572-2 |
When town is the type what is the settlement? | CREATE TABLE "table1_2562572_25" (
"settlement" text,
"cyrillic_name_other_names" text,
"type" text,
"population_2011" real,
"largest_ethnic_group_2002" text,
"dominant_religion_2002" text
); | SELECT "settlement" FROM "table1_2562572_25" WHERE "type"='town'; | 1-2562572-25 |
When оџаци is the cyrillic name other names what is the type? | CREATE TABLE "table1_2562572_25" (
"settlement" text,
"cyrillic_name_other_names" text,
"type" text,
"population_2011" real,
"largest_ethnic_group_2002" text,
"dominant_religion_2002" text
); | SELECT "type" FROM "table1_2562572_25" WHERE "cyrillic_name_other_names"='Оџаци'; | 1-2562572-25 |
When ratkovo is the settlement what is the cyrllic name other names? | CREATE TABLE "table1_2562572_25" (
"settlement" text,
"cyrillic_name_other_names" text,
"type" text,
"population_2011" real,
"largest_ethnic_group_2002" text,
"dominant_religion_2002" text
); | SELECT "cyrillic_name_other_names" FROM "table1_2562572_25" WHERE "settlement"='Ratkovo'; | 1-2562572-25 |
When ратково is cyrillic name other names and village is the type and orthodox Christianity is the dominant religion of 2002 what is the settlement? | CREATE TABLE "table1_2562572_25" (
"settlement" text,
"cyrillic_name_other_names" text,
"type" text,
"population_2011" real,
"largest_ethnic_group_2002" text,
"dominant_religion_2002" text
); | SELECT "settlement" FROM "table1_2562572_25" WHERE "dominant_religion_2002"='Orthodox Christianity' AND "type"='village' AND "cyrillic_name_other_names"='Ратково'; | 1-2562572-25 |
When дероње is the cyrillic name other names what is the largest ethnic group of 2002? | CREATE TABLE "table1_2562572_25" (
"settlement" text,
"cyrillic_name_other_names" text,
"type" text,
"population_2011" real,
"largest_ethnic_group_2002" text,
"dominant_religion_2002" text
); | SELECT "largest_ethnic_group_2002" FROM "table1_2562572_25" WHERE "cyrillic_name_other_names"='Дероње'; | 1-2562572-25 |
What are the largest ethnic groups in gunaroš? | CREATE TABLE "table1_2562572_27" (
"settlement" text,
"cyrillic_name_other_names" text,
"type" text,
"population_2011" text,
"largest_ethnic_group_2002" text,
"dominant_religion_2002" text
); | SELECT "largest_ethnic_group_2002" FROM "table1_2562572_27" WHERE "settlement"='Gunaroš'; | 1-2562572-27 |
What are the largest ethnic groups where the cyrillic name and other names is пачир (hungarian: pacsér)? | CREATE TABLE "table1_2562572_27" (
"settlement" text,
"cyrillic_name_other_names" text,
"type" text,
"population_2011" text,
"largest_ethnic_group_2002" text,
"dominant_religion_2002" text
); | SELECT "largest_ethnic_group_2002" FROM "table1_2562572_27" WHERE "cyrillic_name_other_names"='Пачир (Hungarian: Pacsér)'; | 1-2562572-27 |
How many places have as their cyrillic name and other names његошево? | CREATE TABLE "table1_2562572_27" (
"settlement" text,
"cyrillic_name_other_names" text,
"type" text,
"population_2011" text,
"largest_ethnic_group_2002" text,
"dominant_religion_2002" text
); | SELECT COUNT("settlement") FROM "table1_2562572_27" WHERE "cyrillic_name_other_names"='Његошево'; | 1-2562572-27 |
What are the dominant religions in the place with a population of 83? | CREATE TABLE "table1_2562572_27" (
"settlement" text,
"cyrillic_name_other_names" text,
"type" text,
"population_2011" text,
"largest_ethnic_group_2002" text,
"dominant_religion_2002" text
); | SELECT "dominant_religion_2002" FROM "table1_2562572_27" WHERE "population_2011"='83'; | 1-2562572-27 |
How many settlements have as their cyrillic name and other names панонија? | CREATE TABLE "table1_2562572_27" (
"settlement" text,
"cyrillic_name_other_names" text,
"type" text,
"population_2011" text,
"largest_ethnic_group_2002" text,
"dominant_religion_2002" text
); | SELECT "settlement" FROM "table1_2562572_27" WHERE "cyrillic_name_other_names"='Панонија'; | 1-2562572-27 |
What is the other name for martonoš? | CREATE TABLE "table1_2562572_33" (
"settlement" text,
"cyrillic_name_other_names" text,
"type" text,
"population_2011" real,
"largest_ethnic_group_2002" text,
"dominant_religion_2002" text
); | SELECT "cyrillic_name_other_names" FROM "table1_2562572_33" WHERE "settlement"='Martonoš'; | 1-2562572-33 |
What type of settlement is ором (hungarian: orom)? | CREATE TABLE "table1_2562572_33" (
"settlement" text,
"cyrillic_name_other_names" text,
"type" text,
"population_2011" real,
"largest_ethnic_group_2002" text,
"dominant_religion_2002" text
); | SELECT "type" FROM "table1_2562572_33" WHERE "cyrillic_name_other_names"='Ором (Hungarian: Orom)'; | 1-2562572-33 |
What settlement is also called мартонош (hungarian: martonos)? | CREATE TABLE "table1_2562572_33" (
"settlement" text,
"cyrillic_name_other_names" text,
"type" text,
"population_2011" real,
"largest_ethnic_group_2002" text,
"dominant_religion_2002" text
); | SELECT "settlement" FROM "table1_2562572_33" WHERE "cyrillic_name_other_names"='Мартонош (Hungarian: Martonos)'; | 1-2562572-33 |
What is the largest ethnic group in мале пијаце (hungarian: kispiac)? | CREATE TABLE "table1_2562572_33" (
"settlement" text,
"cyrillic_name_other_names" text,
"type" text,
"population_2011" real,
"largest_ethnic_group_2002" text,
"dominant_religion_2002" text
); | SELECT "largest_ethnic_group_2002" FROM "table1_2562572_33" WHERE "cyrillic_name_other_names"='Мале Пијаце (Hungarian: Kispiac)'; | 1-2562572-33 |
What is the largest ethnic group in doline? | CREATE TABLE "table1_2562572_33" (
"settlement" text,
"cyrillic_name_other_names" text,
"type" text,
"population_2011" real,
"largest_ethnic_group_2002" text,
"dominant_religion_2002" text
); | SELECT "largest_ethnic_group_2002" FROM "table1_2562572_33" WHERE "settlement"='Doline'; | 1-2562572-33 |
Name the dominant religion of srpska crnja | CREATE TABLE "table1_2562572_37" (
"settlement" text,
"cyrillic_name_other_names" text,
"type" text,
"population_2011" real,
"largest_ethnic_group_2002" text,
"dominant_religion_2002" text
); | SELECT "dominant_religion_2002" FROM "table1_2562572_37" WHERE "settlement"='Srpska Crnja'; | 1-2562572-37 |
Name the settlement for александрово | CREATE TABLE "table1_2562572_37" (
"settlement" text,
"cyrillic_name_other_names" text,
"type" text,
"population_2011" real,
"largest_ethnic_group_2002" text,
"dominant_religion_2002" text
); | SELECT "settlement" FROM "table1_2562572_37" WHERE "cyrillic_name_other_names"='Александрово'; | 1-2562572-37 |
Name the cyrillic name for 518 | CREATE TABLE "table1_2562572_37" (
"settlement" text,
"cyrillic_name_other_names" text,
"type" text,
"population_2011" real,
"largest_ethnic_group_2002" text,
"dominant_religion_2002" text
); | SELECT "cyrillic_name_other_names" FROM "table1_2562572_37" WHERE "population_2011"=518; | 1-2562572-37 |
Name the population for александрово | CREATE TABLE "table1_2562572_37" (
"settlement" text,
"cyrillic_name_other_names" text,
"type" text,
"population_2011" real,
"largest_ethnic_group_2002" text,
"dominant_religion_2002" text
); | SELECT COUNT("population_2011") FROM "table1_2562572_37" WHERE "cyrillic_name_other_names"='Александрово'; | 1-2562572-37 |
Name the population for 2011 for српска црња | CREATE TABLE "table1_2562572_37" (
"settlement" text,
"cyrillic_name_other_names" text,
"type" text,
"population_2011" real,
"largest_ethnic_group_2002" text,
"dominant_religion_2002" text
); | SELECT "population_2011" FROM "table1_2562572_37" WHERE "cyrillic_name_other_names"='Српска Црња'; | 1-2562572-37 |
What is the largest ethnic group in 2002 when the population is 200? | CREATE TABLE "table1_2562572_43" (
"settlement" text,
"cyrillic_name_other_names" text,
"type" text,
"population_2011" real,
"largest_ethnic_group_2002" text,
"dominant_religion_2002" text
); | SELECT "largest_ethnic_group_2002" FROM "table1_2562572_43" WHERE "population_2011"=200; | 1-2562572-43 |
How many entries are there for type for the cyrillic name other names is падина (slovak: padina)? | CREATE TABLE "table1_2562572_43" (
"settlement" text,
"cyrillic_name_other_names" text,
"type" text,
"population_2011" real,
"largest_ethnic_group_2002" text,
"dominant_religion_2002" text
); | SELECT COUNT("type") FROM "table1_2562572_43" WHERE "cyrillic_name_other_names"='Падина (Slovak: Padina)'; | 1-2562572-43 |
What is the type for the population in 2011 of 1004? | CREATE TABLE "table1_2562572_43" (
"settlement" text,
"cyrillic_name_other_names" text,
"type" text,
"population_2011" real,
"largest_ethnic_group_2002" text,
"dominant_religion_2002" text
); | SELECT "type" FROM "table1_2562572_43" WHERE "population_2011"=1004; | 1-2562572-43 |
What was the 2002 dominant religion when the largest ethnic group (2002) was slovaks and type is village? | CREATE TABLE "table1_2562572_43" (
"settlement" text,
"cyrillic_name_other_names" text,
"type" text,
"population_2011" real,
"largest_ethnic_group_2002" text,
"dominant_religion_2002" text
); | SELECT "dominant_religion_2002" FROM "table1_2562572_43" WHERE "largest_ethnic_group_2002"='Slovaks' AND "type"='village'; | 1-2562572-43 |
What is the cyrillic name other names for the settlement of debeljača? | CREATE TABLE "table1_2562572_43" (
"settlement" text,
"cyrillic_name_other_names" text,
"type" text,
"population_2011" real,
"largest_ethnic_group_2002" text,
"dominant_religion_2002" text
); | SELECT "cyrillic_name_other_names" FROM "table1_2562572_43" WHERE "settlement"='Debeljača'; | 1-2562572-43 |
How many entries are there for cyrillic name other names where settlement is idvor? | CREATE TABLE "table1_2562572_43" (
"settlement" text,
"cyrillic_name_other_names" text,
"type" text,
"population_2011" real,
"largest_ethnic_group_2002" text,
"dominant_religion_2002" text
); | SELECT COUNT("cyrillic_name_other_names") FROM "table1_2562572_43" WHERE "settlement"='Idvor'; | 1-2562572-43 |
What was the dominant religion in 2002 in lokve? | CREATE TABLE "table1_2562572_44" (
"settlement" text,
"cyrillic_name_other_names" text,
"type" text,
"population_2011" real,
"largest_ethnic_group_2002" text,
"dominant_religion_2002" text
); | SELECT "dominant_religion_2002" FROM "table1_2562572_44" WHERE "settlement"='Lokve'; | 1-2562572-44 |
What was the largest ethnic group in in the settlement with the cyrillic name банатски карловац? | CREATE TABLE "table1_2562572_44" (
"settlement" text,
"cyrillic_name_other_names" text,
"type" text,
"population_2011" real,
"largest_ethnic_group_2002" text,
"dominant_religion_2002" text
); | SELECT "largest_ethnic_group_2002" FROM "table1_2562572_44" WHERE "cyrillic_name_other_names"='Банатски Карловац'; | 1-2562572-44 |
What is the largest ethnic group in the settlement with a 2011 population of 5082? | CREATE TABLE "table1_2562572_44" (
"settlement" text,
"cyrillic_name_other_names" text,
"type" text,
"population_2011" real,
"largest_ethnic_group_2002" text,
"dominant_religion_2002" text
); | SELECT COUNT("largest_ethnic_group_2002") FROM "table1_2562572_44" WHERE "population_2011"=5082; | 1-2562572-44 |
What was the population in 2011 of banatski karlovac? | CREATE TABLE "table1_2562572_44" (
"settlement" text,
"cyrillic_name_other_names" text,
"type" text,
"population_2011" real,
"largest_ethnic_group_2002" text,
"dominant_religion_2002" text
); | SELECT "population_2011" FROM "table1_2562572_44" WHERE "settlement"='Banatski Karlovac'; | 1-2562572-44 |
Which settlement has the cyrillic and other name of локве (romanian: locve)? | CREATE TABLE "table1_2562572_44" (
"settlement" text,
"cyrillic_name_other_names" text,
"type" text,
"population_2011" real,
"largest_ethnic_group_2002" text,
"dominant_religion_2002" text
); | SELECT "settlement" FROM "table1_2562572_44" WHERE "cyrillic_name_other_names"='Локве (Romanian: Locve)'; | 1-2562572-44 |
What is the population of the settlement with the cyrillic name of добрица? | CREATE TABLE "table1_2562572_44" (
"settlement" text,
"cyrillic_name_other_names" text,
"type" text,
"population_2011" real,
"largest_ethnic_group_2002" text,
"dominant_religion_2002" text
); | SELECT MAX("population_2011") FROM "table1_2562572_44" WHERE "cyrillic_name_other_names"='Добрица'; | 1-2562572-44 |
Which settlement has a cyrillic and other name of војводинци (romanian: voivodinţ)? | CREATE TABLE "table1_2562572_46" (
"settlement" text,
"cyrillic_name_other_names" text,
"type" text,
"population_2011" real,
"largest_ethnic_group_2002" text,
"dominant_religion_2002" text
); | SELECT "settlement" FROM "table1_2562572_46" WHERE "cyrillic_name_other_names"='Војводинци (Romanian: Voivodinţ)'; | 1-2562572-46 |
What was the dominant religion in 2002 of the settlement with the cyrillic and other name of војводинци (romanian: voivodinţ)? | CREATE TABLE "table1_2562572_46" (
"settlement" text,
"cyrillic_name_other_names" text,
"type" text,
"population_2011" real,
"largest_ethnic_group_2002" text,
"dominant_religion_2002" text
); | SELECT "dominant_religion_2002" FROM "table1_2562572_46" WHERE "cyrillic_name_other_names"='Војводинци (Romanian: Voivodinţ)'; | 1-2562572-46 |
What was the population in 2011 of the settlement with the cyrillic name of ватин? | CREATE TABLE "table1_2562572_46" (
"settlement" text,
"cyrillic_name_other_names" text,
"type" text,
"population_2011" real,
"largest_ethnic_group_2002" text,
"dominant_religion_2002" text
); | SELECT MAX("population_2011") FROM "table1_2562572_46" WHERE "cyrillic_name_other_names"='Ватин'; | 1-2562572-46 |
What was the largest ethnic group in sočica? | CREATE TABLE "table1_2562572_46" (
"settlement" text,
"cyrillic_name_other_names" text,
"type" text,
"population_2011" real,
"largest_ethnic_group_2002" text,
"dominant_religion_2002" text
); | SELECT "largest_ethnic_group_2002" FROM "table1_2562572_46" WHERE "settlement"='Sočica'; | 1-2562572-46 |
What was the 2011 population of pavliš? | CREATE TABLE "table1_2562572_46" (
"settlement" text,
"cyrillic_name_other_names" text,
"type" text,
"population_2011" real,
"largest_ethnic_group_2002" text,
"dominant_religion_2002" text
); | SELECT "population_2011" FROM "table1_2562572_46" WHERE "settlement"='Pavliš'; | 1-2562572-46 |
What was the largest ethnic group in 2002 of the settlement with the cyrillic name of ватин? | CREATE TABLE "table1_2562572_46" (
"settlement" text,
"cyrillic_name_other_names" text,
"type" text,
"population_2011" real,
"largest_ethnic_group_2002" text,
"dominant_religion_2002" text
); | SELECT "largest_ethnic_group_2002" FROM "table1_2562572_46" WHERE "cyrillic_name_other_names"='Ватин'; | 1-2562572-46 |
What was the dominant religion (2002) of the Mala Remeta settlement? | CREATE TABLE "table1_2562572_50" (
"settlement" text,
"cyrillic_name_other_names" text,
"type" text,
"population_2011" real,
"largest_ethnic_group_2002" text,
"dominant_religion_2002" text
); | SELECT "dominant_religion_2002" FROM "table1_2562572_50" WHERE "settlement"='Mala Remeta'; | 1-2562572-50 |
What type of settlemen is Krušedol Selo? | CREATE TABLE "table1_2562572_50" (
"settlement" text,
"cyrillic_name_other_names" text,
"type" text,
"population_2011" real,
"largest_ethnic_group_2002" text,
"dominant_religion_2002" text
); | SELECT "type" FROM "table1_2562572_50" WHERE "settlement"='Krušedol Selo'; | 1-2562572-50 |
How many types of settlement if Neradin? | CREATE TABLE "table1_2562572_50" (
"settlement" text,
"cyrillic_name_other_names" text,
"type" text,
"population_2011" real,
"largest_ethnic_group_2002" text,
"dominant_religion_2002" text
); | SELECT COUNT("type") FROM "table1_2562572_50" WHERE "settlement"='Neradin'; | 1-2562572-50 |
What type of settlement is Jazak? | CREATE TABLE "table1_2562572_50" (
"settlement" text,
"cyrillic_name_other_names" text,
"type" text,
"population_2011" real,
"largest_ethnic_group_2002" text,
"dominant_religion_2002" text
); | SELECT "type" FROM "table1_2562572_50" WHERE "settlement"='Jazak'; | 1-2562572-50 |
What is the name of the settlement that had a population of 9443 in 2011? | CREATE TABLE "list_of_cities_towns_and_villages_in_voj" (
"settlement" text,
"cyrillic_name" text,
"type" text,
"population_2011" real,
"largest_ethnic_group_2002" text,
"dominant_religion_2002" text
); | SELECT "settlement" FROM "list_of_cities_towns_and_villages_in_voj" WHERE "population_2011"=9443; | 1-2562572-53 |
How many different types of settlements does Nova Pazova fall into? | CREATE TABLE "list_of_cities_towns_and_villages_in_voj" (
"settlement" text,
"cyrillic_name" text,
"type" text,
"population_2011" real,
"largest_ethnic_group_2002" text,
"dominant_religion_2002" text
); | SELECT COUNT("type") FROM "list_of_cities_towns_and_villages_in_voj" WHERE "settlement"='Nova Pazova'; | 1-2562572-53 |
What ethnic group had the largest population in сурдук in 2002? | CREATE TABLE "list_of_cities_towns_and_villages_in_voj" (
"settlement" text,
"cyrillic_name" text,
"type" text,
"population_2011" real,
"largest_ethnic_group_2002" text,
"dominant_religion_2002" text
); | SELECT "largest_ethnic_group_2002" FROM "list_of_cities_towns_and_villages_in_voj" WHERE "cyrillic_name"='Сурдук'; | 1-2562572-53 |
What ethnic group had the largest population in сурдук in 2002? | CREATE TABLE "list_of_cities_towns_and_villages_in_voj" (
"settlement" text,
"cyrillic_name" text,
"type" text,
"population_2011" real,
"largest_ethnic_group_2002" text,
"dominant_religion_2002" text
); | SELECT "largest_ethnic_group_2002" FROM "list_of_cities_towns_and_villages_in_voj" WHERE "cyrillic_name"='Сурдук'; | 1-2562572-53 |
How many dominant religions were in the settlement that had a population of 17105? | CREATE TABLE "list_of_cities_towns_and_villages_in_voj" (
"settlement" text,
"cyrillic_name" text,
"type" text,
"population_2011" real,
"largest_ethnic_group_2002" text,
"dominant_religion_2002" text
); | SELECT COUNT("dominant_religion_2002") FROM "list_of_cities_towns_and_villages_in_voj" WHERE "population_2011"=17105; | 1-2562572-53 |
What was the population of сурдук in 2011? | CREATE TABLE "list_of_cities_towns_and_villages_in_voj" (
"settlement" text,
"cyrillic_name" text,
"type" text,
"population_2011" real,
"largest_ethnic_group_2002" text,
"dominant_religion_2002" text
); | SELECT COUNT("population_2011") FROM "list_of_cities_towns_and_villages_in_voj" WHERE "cyrillic_name"='Сурдук'; | 1-2562572-53 |
When extending eminent domain over roads and ways is the description what is the highest means number? | CREATE TABLE "may_1920_special_election" (
"meas_num" real,
"passed" text,
"yes_votes" real,
"no_votes" real,
"pct_yes" text,
"const_amd" text,
"type" text,
"description" text
); | SELECT MAX("meas_num") FROM "may_1920_special_election" WHERE "description"='Extending Eminent Domain Over Roads and Ways'; | 1-256286-13 |
When restoring capital punishment is the description how many types are there? | CREATE TABLE "may_1920_special_election" (
"meas_num" real,
"passed" text,
"yes_votes" real,
"no_votes" real,
"pct_yes" text,
"const_amd" text,
"type" text,
"description" text
); | SELECT COUNT("type") FROM "may_1920_special_election" WHERE "description"='Restoring Capital Punishment'; | 1-256286-13 |
What is the lowest overall amount of no votes? | CREATE TABLE "may_1920_special_election" (
"meas_num" real,
"passed" text,
"yes_votes" real,
"no_votes" real,
"pct_yes" text,
"const_amd" text,
"type" text,
"description" text
); | SELECT MIN("no_votes") FROM "may_1920_special_election"; | 1-256286-13 |
What was the urban settlement when the city / municipality was kovin? | CREATE TABLE "list_of_urban_settlements_in_vojvodina" (
"urban_settlement" text,
"cyrillic_name" text,
"city_municipality" text,
"district" text,
"population_1991" real,
"population_2002" real,
"population_2011" real
); | SELECT "urban_settlement" FROM "list_of_urban_settlements_in_vojvodina" WHERE "city_municipality"='Kovin'; | 1-2562572-7 |
What is the population (1991) where population (2002) was 14250? | CREATE TABLE "list_of_urban_settlements_in_vojvodina" (
"urban_settlement" text,
"cyrillic_name" text,
"city_municipality" text,
"district" text,
"population_1991" real,
"population_2002" real,
"population_2011" real
); | SELECT COUNT("population_1991") FROM "list_of_urban_settlements_in_vojvodina" WHERE "population_2002"=14250; | 1-2562572-7 |
What is the population (1991) when cyrillic name is панчево? | CREATE TABLE "list_of_urban_settlements_in_vojvodina" (
"urban_settlement" text,
"cyrillic_name" text,
"city_municipality" text,
"district" text,
"population_1991" real,
"population_2002" real,
"population_2011" real
); | SELECT MIN("population_1991") FROM "list_of_urban_settlements_in_vojvodina" WHERE "cyrillic_name"='Панчево'; | 1-2562572-7 |
What is the settlement destiny in Aleksandrovo? | CREATE TABLE "table1_2562572_56" (
"settlement" text,
"cyrillic_name_other_names" text,
"type_location" text,
"settlement_destiny" text,
"largest_ethnic_group_year" text
); | SELECT "settlement_destiny" FROM "table1_2562572_56" WHERE "settlement"='Aleksandrovo'; | 1-2562572-56 |
What is the Cyrillic name for Novi Vladimirovac? | CREATE TABLE "table1_2562572_56" (
"settlement" text,
"cyrillic_name_other_names" text,
"type_location" text,
"settlement_destiny" text,
"largest_ethnic_group_year" text
); | SELECT "cyrillic_name_other_names" FROM "table1_2562572_56" WHERE "settlement"='Novi Vladimirovac'; | 1-2562572-56 |
How many items appear in the population 2011 column for the krčedin settlement? | CREATE TABLE "table1_2562572_54" (
"settlement" text,
"cyrillic_name_other_names" text,
"type" text,
"population_2011" real,
"largest_ethnic_group_2002" text,
"dominant_religion_2002" text
); | SELECT COUNT("population_2011") FROM "table1_2562572_54" WHERE "settlement"='Krčedin'; | 1-2562572-54 |
What is the dominant religion in 2002 for the population of 2337 in 2011? | CREATE TABLE "table1_2562572_54" (
"settlement" text,
"cyrillic_name_other_names" text,
"type" text,
"population_2011" real,
"largest_ethnic_group_2002" text,
"dominant_religion_2002" text
); | SELECT "dominant_religion_2002" FROM "table1_2562572_54" WHERE "population_2011"=2337; | 1-2562572-54 |
What is the lowest population in 2011 for the settlement of čortanovci? | CREATE TABLE "table1_2562572_54" (
"settlement" text,
"cyrillic_name_other_names" text,
"type" text,
"population_2011" real,
"largest_ethnic_group_2002" text,
"dominant_religion_2002" text
); | SELECT MIN("population_2011") FROM "table1_2562572_54" WHERE "settlement"='Čortanovci'; | 1-2562572-54 |
What is the largest ethnic group in 2002 for the cyrillic name, other name of бешка? | CREATE TABLE "table1_2562572_54" (
"settlement" text,
"cyrillic_name_other_names" text,
"type" text,
"population_2011" real,
"largest_ethnic_group_2002" text,
"dominant_religion_2002" text
); | SELECT "largest_ethnic_group_2002" FROM "table1_2562572_54" WHERE "cyrillic_name_other_names"='Бешка'; | 1-2562572-54 |
What was the lowes population of 2002 when the 2011 population was 30076? | CREATE TABLE "list_of_urban_settlements_in_vojvodina" (
"urban_settlement" text,
"cyrillic_name" text,
"city_municipality" text,
"district" text,
"population_1991" real,
"population_2002" real,
"population_2011" real
); | SELECT MIN("population_2002") FROM "list_of_urban_settlements_in_vojvodina" WHERE "population_2011"=30076; | 1-2562572-8 |
What is the dominant religion in степановићево during 2002? | CREATE TABLE "table1_2562572_9" (
"settlement" text,
"cyrillic_name_other_names" text,
"type" text,
"population_2011" real,
"largest_ethnic_group_2002" text,
"dominant_religion_2002" text
); | SELECT "dominant_religion_2002" FROM "table1_2562572_9" WHERE "cyrillic_name_other_names"='Степановићево'; | 1-2562572-9 |
What is the cyrillic name for the settlement with the population of 2125? | CREATE TABLE "table1_2562572_9" (
"settlement" text,
"cyrillic_name_other_names" text,
"type" text,
"population_2011" real,
"largest_ethnic_group_2002" text,
"dominant_religion_2002" text
); | SELECT "cyrillic_name_other_names" FROM "table1_2562572_9" WHERE "population_2011"=2125; | 1-2562572-9 |
What type of settlement is футог? | CREATE TABLE "table1_2562572_9" (
"settlement" text,
"cyrillic_name_other_names" text,
"type" text,
"population_2011" real,
"largest_ethnic_group_2002" text,
"dominant_religion_2002" text
); | SELECT "type" FROM "table1_2562572_9" WHERE "cyrillic_name_other_names"='Футог'; | 1-2562572-9 |
What is the cyrillic name for the settlement with the population of 5414? | CREATE TABLE "table1_2562572_9" (
"settlement" text,
"cyrillic_name_other_names" text,
"type" text,
"population_2011" real,
"largest_ethnic_group_2002" text,
"dominant_religion_2002" text
); | SELECT "cyrillic_name_other_names" FROM "table1_2562572_9" WHERE "population_2011"=5414; | 1-2562572-9 |
What is the cyrillic name for Budisava? | CREATE TABLE "table1_2562572_9" (
"settlement" text,
"cyrillic_name_other_names" text,
"type" text,
"population_2011" real,
"largest_ethnic_group_2002" text,
"dominant_religion_2002" text
); | SELECT "cyrillic_name_other_names" FROM "table1_2562572_9" WHERE "settlement"='Budisava'; | 1-2562572-9 |
What is the dominant religion for нови сад in 2002? | CREATE TABLE "table1_2562572_9" (
"settlement" text,
"cyrillic_name_other_names" text,
"type" text,
"population_2011" real,
"largest_ethnic_group_2002" text,
"dominant_religion_2002" text
); | SELECT "dominant_religion_2002" FROM "table1_2562572_9" WHERE "cyrillic_name_other_names"='Нови Сад'; | 1-2562572-9 |
What is the largest number of yest votes for the measure with 61307 no votes? | CREATE TABLE "1926_general_election" (
"meas_num" real,
"passed" text,
"yes_votes" real,
"no_votes" real,
"pct_yes" text,
"const_amd" text,
"type" text,
"description" text
); | SELECT MAX("yes_votes") FROM "1926_general_election" WHERE "no_votes"=61307; | 1-256286-19 |
What numbered measure had a 58.29% yes%? | CREATE TABLE "1926_general_election" (
"meas_num" real,
"passed" text,
"yes_votes" real,
"no_votes" real,
"pct_yes" text,
"const_amd" text,
"type" text,
"description" text
); | SELECT "meas_num" FROM "1926_general_election" WHERE "pct_yes"='58.29%'; | 1-256286-19 |
What was the passing result for the measure with 61307 no votes? | CREATE TABLE "1926_general_election" (
"meas_num" real,
"passed" text,
"yes_votes" real,
"no_votes" real,
"pct_yes" text,
"const_amd" text,
"type" text,
"description" text
); | SELECT "passed" FROM "1926_general_election" WHERE "no_votes"=61307; | 1-256286-19 |
What is the lowest measure number for the measure with a 33.57% yes percentage? | CREATE TABLE "1926_general_election" (
"meas_num" real,
"passed" text,
"yes_votes" real,
"no_votes" real,
"pct_yes" text,
"const_amd" text,
"type" text,
"description" text
); | SELECT MIN("meas_num") FROM "1926_general_election" WHERE "pct_yes"='33.57%'; | 1-256286-19 |
What was the passing result for the measure with a description of bus and truck operating license bill? | CREATE TABLE "1926_general_election" (
"meas_num" real,
"passed" text,
"yes_votes" real,
"no_votes" real,
"pct_yes" text,
"const_amd" text,
"type" text,
"description" text
); | SELECT "passed" FROM "1926_general_election" WHERE "description"='Bus and Truck Operating License Bill'; | 1-256286-19 |
What was the result of the ballot that had a 52.49% yes vote percentage? | CREATE TABLE "1930_general_election" (
"meas_num" real,
"passed" text,
"yes_votes" real,
"no_votes" real,
"pct_yes" text,
"const_amd" text,
"type" text,
"description" text
); | SELECT "passed" FROM "1930_general_election" WHERE "pct_yes"='52.49%'; | 1-256286-22 |
List the total number of constitutional amendments for a five cent gasoline tax bill. | CREATE TABLE "1928_general_election" (
"meas_num" real,
"passed" text,
"yes_votes" real,
"no_votes" real,
"pct_yes" text,
"const_amd" text,
"type" text,
"description" text
); | SELECT COUNT("const_amd") FROM "1928_general_election" WHERE "description"='Five Cent Gasoline Tax Bill'; | 1-256286-21 |
What type of proposal is measure number 3? | CREATE TABLE "1928_general_election" (
"meas_num" real,
"passed" text,
"yes_votes" real,
"no_votes" real,
"pct_yes" text,
"const_amd" text,
"type" text,
"description" text
); | SELECT "type" FROM "1928_general_election" WHERE "meas_num"=3; | 1-256286-21 |
How many yes votes did the measure that got 60.39% yes votes get? | CREATE TABLE "1932_general_election" (
"meas_num" real,
"passed" text,
"yes_votes" real,
"no_votes" real,
"pct_yes" text,
"const_amd" text,
"type" text,
"description" text
); | SELECT "yes_votes" FROM "1932_general_election" WHERE "pct_yes"='60.39%'; | 1-256286-23 |
What is the description of the measure that got 39.57% yes votes? | CREATE TABLE "1932_general_election" (
"meas_num" real,
"passed" text,
"yes_votes" real,
"no_votes" real,
"pct_yes" text,
"const_amd" text,
"type" text,
"description" text
); | SELECT "description" FROM "1932_general_election" WHERE "pct_yes"='39.57%'; | 1-256286-23 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.