question stringlengths 12 244 | context stringlengths 27 489 | answer stringlengths 18 557 | text stringlengths 114 1.06k |
|---|---|---|---|
How many settlements have as their cyrillic name and other names панонија? | CREATE TABLE table_2562572_27 (settlement VARCHAR, cyrillic_name_other_names VARCHAR) | SELECT settlement FROM table_2562572_27 WHERE cyrillic_name_other_names = "Панонија" | ### Context: CREATE TABLE table_2562572_27 (settlement VARCHAR, cyrillic_name_other_names VARCHAR) ### Question: How many settlements have as their cyrillic name and other names панонија? ### Answer: SELECT settlement FROM table_2562572_27 WHERE cyrillic_name_other_names = "Панонија" |
What is the other name for martonoš? | CREATE TABLE table_2562572_33 (cyrillic_name_other_names VARCHAR, settlement VARCHAR) | SELECT cyrillic_name_other_names FROM table_2562572_33 WHERE settlement = "Martonoš" | ### Context: CREATE TABLE table_2562572_33 (cyrillic_name_other_names VARCHAR, settlement VARCHAR) ### Question: What is the other name for martonoš? ### Answer: SELECT cyrillic_name_other_names FROM table_2562572_33 WHERE settlement = "Martonoš" |
What type of settlement is ором (hungarian: orom)? | CREATE TABLE table_2562572_33 (type VARCHAR, cyrillic_name_other_names VARCHAR) | SELECT type FROM table_2562572_33 WHERE cyrillic_name_other_names = "Ором (Hungarian: Orom)" | ### Context: CREATE TABLE table_2562572_33 (type VARCHAR, cyrillic_name_other_names VARCHAR) ### Question: What type of settlement is ором (hungarian: orom)? ### Answer: SELECT type FROM table_2562572_33 WHERE cyrillic_name_other_names = "Ором (Hungarian: Orom)" |
What settlement is also called мартонош (hungarian: martonos)? | CREATE TABLE table_2562572_33 (settlement VARCHAR, cyrillic_name_other_names VARCHAR) | SELECT settlement FROM table_2562572_33 WHERE cyrillic_name_other_names = "Мартонош (Hungarian: Martonos)" | ### Context: CREATE TABLE table_2562572_33 (settlement VARCHAR, cyrillic_name_other_names VARCHAR) ### Question: What settlement is also called мартонош (hungarian: martonos)? ### Answer: SELECT settlement FROM table_2562572_33 WHERE cyrillic_name_other_names = "Мартонош (Hungarian: Martonos)" |
What is the largest ethnic group in мале пијаце (hungarian: kispiac)? | CREATE TABLE table_2562572_33 (largest_ethnic_group__2002_ VARCHAR, cyrillic_name_other_names VARCHAR) | SELECT largest_ethnic_group__2002_ FROM table_2562572_33 WHERE cyrillic_name_other_names = "Мале Пијаце (Hungarian: Kispiac)" | ### Context: CREATE TABLE table_2562572_33 (largest_ethnic_group__2002_ VARCHAR, cyrillic_name_other_names VARCHAR) ### Question: What is the largest ethnic group in мале пијаце (hungarian: kispiac)? ### Answer: SELECT largest_ethnic_group__2002_ FROM table_2562572_33 WHERE cyrillic_name_other_names = "Мале Пијаце (Hungarian: Kispiac)" |
What is the largest ethnic group in doline? | CREATE TABLE table_2562572_33 (largest_ethnic_group__2002_ VARCHAR, settlement VARCHAR) | SELECT largest_ethnic_group__2002_ FROM table_2562572_33 WHERE settlement = "Doline" | ### Context: CREATE TABLE table_2562572_33 (largest_ethnic_group__2002_ VARCHAR, settlement VARCHAR) ### Question: What is the largest ethnic group in doline? ### Answer: SELECT largest_ethnic_group__2002_ FROM table_2562572_33 WHERE settlement = "Doline" |
Name the dominant religion of srpska crnja | CREATE TABLE table_2562572_37 (dominant_religion__2002_ VARCHAR, settlement VARCHAR) | SELECT dominant_religion__2002_ FROM table_2562572_37 WHERE settlement = "Srpska Crnja" | ### Context: CREATE TABLE table_2562572_37 (dominant_religion__2002_ VARCHAR, settlement VARCHAR) ### Question: Name the dominant religion of srpska crnja ### Answer: SELECT dominant_religion__2002_ FROM table_2562572_37 WHERE settlement = "Srpska Crnja" |
Name the settlement for александрово | CREATE TABLE table_2562572_37 (settlement VARCHAR, cyrillic_name_other_names VARCHAR) | SELECT settlement FROM table_2562572_37 WHERE cyrillic_name_other_names = "Александрово" | ### Context: CREATE TABLE table_2562572_37 (settlement VARCHAR, cyrillic_name_other_names VARCHAR) ### Question: Name the settlement for александрово ### Answer: SELECT settlement FROM table_2562572_37 WHERE cyrillic_name_other_names = "Александрово" |
Name the cyrillic name for 518 | CREATE TABLE table_2562572_37 (cyrillic_name_other_names VARCHAR, population__2011_ VARCHAR) | SELECT cyrillic_name_other_names FROM table_2562572_37 WHERE population__2011_ = 518 | ### Context: CREATE TABLE table_2562572_37 (cyrillic_name_other_names VARCHAR, population__2011_ VARCHAR) ### Question: Name the cyrillic name for 518 ### Answer: SELECT cyrillic_name_other_names FROM table_2562572_37 WHERE population__2011_ = 518 |
Name the population for александрово | CREATE TABLE table_2562572_37 (population__2011_ VARCHAR, cyrillic_name_other_names VARCHAR) | SELECT COUNT(population__2011_) FROM table_2562572_37 WHERE cyrillic_name_other_names = "Александрово" | ### Context: CREATE TABLE table_2562572_37 (population__2011_ VARCHAR, cyrillic_name_other_names VARCHAR) ### Question: Name the population for александрово ### Answer: SELECT COUNT(population__2011_) FROM table_2562572_37 WHERE cyrillic_name_other_names = "Александрово" |
Name the population for 2011 for српска црња | CREATE TABLE table_2562572_37 (population__2011_ VARCHAR, cyrillic_name_other_names VARCHAR) | SELECT population__2011_ FROM table_2562572_37 WHERE cyrillic_name_other_names = "Српска Црња" | ### Context: CREATE TABLE table_2562572_37 (population__2011_ VARCHAR, cyrillic_name_other_names VARCHAR) ### Question: Name the population for 2011 for српска црња ### Answer: SELECT population__2011_ FROM table_2562572_37 WHERE cyrillic_name_other_names = "Српска Црња" |
What is the largest ethnic group in 2002 when the population is 200? | CREATE TABLE table_2562572_43 (largest_ethnic_group__2002_ VARCHAR, population__2011_ VARCHAR) | SELECT largest_ethnic_group__2002_ FROM table_2562572_43 WHERE population__2011_ = 200 | ### Context: CREATE TABLE table_2562572_43 (largest_ethnic_group__2002_ VARCHAR, population__2011_ VARCHAR) ### Question: What is the largest ethnic group in 2002 when the population is 200? ### Answer: SELECT largest_ethnic_group__2002_ FROM table_2562572_43 WHERE population__2011_ = 200 |
How many entries are there for type for the cyrillic name other names is падина (slovak: padina)? | CREATE TABLE table_2562572_43 (type VARCHAR, cyrillic_name_other_names VARCHAR) | SELECT COUNT(type) FROM table_2562572_43 WHERE cyrillic_name_other_names = "Падина (Slovak: Padina)" | ### Context: CREATE TABLE table_2562572_43 (type VARCHAR, cyrillic_name_other_names VARCHAR) ### Question: How many entries are there for type for the cyrillic name other names is падина (slovak: padina)? ### Answer: SELECT COUNT(type) FROM table_2562572_43 WHERE cyrillic_name_other_names = "Падина (Slovak: Padina)" |
What is the type for the population in 2011 of 1004? | CREATE TABLE table_2562572_43 (type VARCHAR, population__2011_ VARCHAR) | SELECT type FROM table_2562572_43 WHERE population__2011_ = 1004 | ### Context: CREATE TABLE table_2562572_43 (type VARCHAR, population__2011_ VARCHAR) ### Question: What is the type for the population in 2011 of 1004? ### Answer: SELECT type FROM table_2562572_43 WHERE population__2011_ = 1004 |
What was the 2002 dominant religion when the largest ethnic group (2002) was slovaks and type is village? | CREATE TABLE table_2562572_43 (dominant_religion__2002_ VARCHAR, largest_ethnic_group__2002_ VARCHAR, type VARCHAR) | SELECT dominant_religion__2002_ FROM table_2562572_43 WHERE largest_ethnic_group__2002_ = "Slovaks" AND type = "village" | ### Context: CREATE TABLE table_2562572_43 (dominant_religion__2002_ VARCHAR, largest_ethnic_group__2002_ VARCHAR, type VARCHAR) ### Question: What was the 2002 dominant religion when the largest ethnic group (2002) was slovaks and type is village? ### Answer: SELECT dominant_religion__2002_ FROM table_2562572_43 WHERE largest_ethnic_group__2002_ = "Slovaks" AND type = "village" |
What is the cyrillic name other names for the settlement of debeljača? | CREATE TABLE table_2562572_43 (cyrillic_name_other_names VARCHAR, settlement VARCHAR) | SELECT cyrillic_name_other_names FROM table_2562572_43 WHERE settlement = "Debeljača" | ### Context: CREATE TABLE table_2562572_43 (cyrillic_name_other_names VARCHAR, settlement VARCHAR) ### Question: What is the cyrillic name other names for the settlement of debeljača? ### Answer: SELECT cyrillic_name_other_names FROM table_2562572_43 WHERE settlement = "Debeljača" |
How many entries are there for cyrillic name other names where settlement is idvor? | CREATE TABLE table_2562572_43 (cyrillic_name_other_names VARCHAR, settlement VARCHAR) | SELECT COUNT(cyrillic_name_other_names) FROM table_2562572_43 WHERE settlement = "Idvor" | ### Context: CREATE TABLE table_2562572_43 (cyrillic_name_other_names VARCHAR, settlement VARCHAR) ### Question: How many entries are there for cyrillic name other names where settlement is idvor? ### Answer: SELECT COUNT(cyrillic_name_other_names) FROM table_2562572_43 WHERE settlement = "Idvor" |
What was the dominant religion in 2002 in lokve? | CREATE TABLE table_2562572_44 (dominant_religion__2002_ VARCHAR, settlement VARCHAR) | SELECT dominant_religion__2002_ FROM table_2562572_44 WHERE settlement = "Lokve" | ### Context: CREATE TABLE table_2562572_44 (dominant_religion__2002_ VARCHAR, settlement VARCHAR) ### Question: What was the dominant religion in 2002 in lokve? ### Answer: SELECT dominant_religion__2002_ FROM table_2562572_44 WHERE settlement = "Lokve" |
What was the largest ethnic group in in the settlement with the cyrillic name банатски карловац? | CREATE TABLE table_2562572_44 (largest_ethnic_group__2002_ VARCHAR, cyrillic_name_other_names VARCHAR) | SELECT largest_ethnic_group__2002_ FROM table_2562572_44 WHERE cyrillic_name_other_names = "Банатски Карловац" | ### Context: CREATE TABLE table_2562572_44 (largest_ethnic_group__2002_ VARCHAR, cyrillic_name_other_names VARCHAR) ### Question: What was the largest ethnic group in in the settlement with the cyrillic name банатски карловац? ### Answer: SELECT largest_ethnic_group__2002_ FROM table_2562572_44 WHERE cyrillic_name_other_names = "Банатски Карловац" |
What is the largest ethnic group in the settlement with a 2011 population of 5082? | CREATE TABLE table_2562572_44 (largest_ethnic_group__2002_ VARCHAR, population__2011_ VARCHAR) | SELECT COUNT(largest_ethnic_group__2002_) FROM table_2562572_44 WHERE population__2011_ = 5082 | ### Context: CREATE TABLE table_2562572_44 (largest_ethnic_group__2002_ VARCHAR, population__2011_ VARCHAR) ### Question: What is the largest ethnic group in the settlement with a 2011 population of 5082? ### Answer: SELECT COUNT(largest_ethnic_group__2002_) FROM table_2562572_44 WHERE population__2011_ = 5082 |
What was the population in 2011 of banatski karlovac? | CREATE TABLE table_2562572_44 (population__2011_ VARCHAR, settlement VARCHAR) | SELECT population__2011_ FROM table_2562572_44 WHERE settlement = "Banatski Karlovac" | ### Context: CREATE TABLE table_2562572_44 (population__2011_ VARCHAR, settlement VARCHAR) ### Question: What was the population in 2011 of banatski karlovac? ### Answer: SELECT population__2011_ FROM table_2562572_44 WHERE settlement = "Banatski Karlovac" |
Which settlement has the cyrillic and other name of локве (romanian: locve)? | CREATE TABLE table_2562572_44 (settlement VARCHAR, cyrillic_name_other_names VARCHAR) | SELECT settlement FROM table_2562572_44 WHERE cyrillic_name_other_names = "Локве (Romanian: Locve)" | ### Context: CREATE TABLE table_2562572_44 (settlement VARCHAR, cyrillic_name_other_names VARCHAR) ### Question: Which settlement has the cyrillic and other name of локве (romanian: locve)? ### Answer: SELECT settlement FROM table_2562572_44 WHERE cyrillic_name_other_names = "Локве (Romanian: Locve)" |
What is the population of the settlement with the cyrillic name of добрица? | CREATE TABLE table_2562572_44 (population__2011_ INTEGER, cyrillic_name_other_names VARCHAR) | SELECT MAX(population__2011_) FROM table_2562572_44 WHERE cyrillic_name_other_names = "Добрица" | ### Context: CREATE TABLE table_2562572_44 (population__2011_ INTEGER, cyrillic_name_other_names VARCHAR) ### Question: What is the population of the settlement with the cyrillic name of добрица? ### Answer: SELECT MAX(population__2011_) FROM table_2562572_44 WHERE cyrillic_name_other_names = "Добрица" |
Which settlement has a cyrillic and other name of војводинци (romanian: voivodinţ)? | CREATE TABLE table_2562572_46 (settlement VARCHAR, cyrillic_name_other_names VARCHAR) | SELECT settlement FROM table_2562572_46 WHERE cyrillic_name_other_names = "Војводинци (Romanian: Voivodinţ)" | ### Context: CREATE TABLE table_2562572_46 (settlement VARCHAR, cyrillic_name_other_names VARCHAR) ### Question: Which settlement has a cyrillic and other name of војводинци (romanian: voivodinţ)? ### Answer: SELECT settlement FROM table_2562572_46 WHERE cyrillic_name_other_names = "Војводинци (Romanian: Voivodinţ)" |
What was the dominant religion in 2002 of the settlement with the cyrillic and other name of војводинци (romanian: voivodinţ)? | CREATE TABLE table_2562572_46 (dominant_religion__2002_ VARCHAR, cyrillic_name_other_names VARCHAR) | SELECT dominant_religion__2002_ FROM table_2562572_46 WHERE cyrillic_name_other_names = "Војводинци (Romanian: Voivodinţ)" | ### Context: CREATE TABLE table_2562572_46 (dominant_religion__2002_ VARCHAR, cyrillic_name_other_names VARCHAR) ### Question: What was the dominant religion in 2002 of the settlement with the cyrillic and other name of војводинци (romanian: voivodinţ)? ### Answer: SELECT dominant_religion__2002_ FROM table_2562572_46 WHERE cyrillic_name_other_names = "Војводинци (Romanian: Voivodinţ)" |
What was the population in 2011 of the settlement with the cyrillic name of ватин? | CREATE TABLE table_2562572_46 (population__2011_ INTEGER, cyrillic_name_other_names VARCHAR) | SELECT MAX(population__2011_) FROM table_2562572_46 WHERE cyrillic_name_other_names = "Ватин" | ### Context: CREATE TABLE table_2562572_46 (population__2011_ INTEGER, cyrillic_name_other_names VARCHAR) ### Question: What was the population in 2011 of the settlement with the cyrillic name of ватин? ### Answer: SELECT MAX(population__2011_) FROM table_2562572_46 WHERE cyrillic_name_other_names = "Ватин" |
What was the largest ethnic group in sočica? | CREATE TABLE table_2562572_46 (largest_ethnic_group__2002_ VARCHAR, settlement VARCHAR) | SELECT largest_ethnic_group__2002_ FROM table_2562572_46 WHERE settlement = "Sočica" | ### Context: CREATE TABLE table_2562572_46 (largest_ethnic_group__2002_ VARCHAR, settlement VARCHAR) ### Question: What was the largest ethnic group in sočica? ### Answer: SELECT largest_ethnic_group__2002_ FROM table_2562572_46 WHERE settlement = "Sočica" |
What was the 2011 population of pavliš? | CREATE TABLE table_2562572_46 (population__2011_ VARCHAR, settlement VARCHAR) | SELECT population__2011_ FROM table_2562572_46 WHERE settlement = "Pavliš" | ### Context: CREATE TABLE table_2562572_46 (population__2011_ VARCHAR, settlement VARCHAR) ### Question: What was the 2011 population of pavliš? ### Answer: SELECT population__2011_ FROM table_2562572_46 WHERE settlement = "Pavliš" |
What was the largest ethnic group in 2002 of the settlement with the cyrillic name of ватин? | CREATE TABLE table_2562572_46 (largest_ethnic_group__2002_ VARCHAR, cyrillic_name_other_names VARCHAR) | SELECT largest_ethnic_group__2002_ FROM table_2562572_46 WHERE cyrillic_name_other_names = "Ватин" | ### Context: CREATE TABLE table_2562572_46 (largest_ethnic_group__2002_ VARCHAR, cyrillic_name_other_names VARCHAR) ### Question: What was the largest ethnic group in 2002 of the settlement with the cyrillic name of ватин? ### Answer: SELECT largest_ethnic_group__2002_ FROM table_2562572_46 WHERE cyrillic_name_other_names = "Ватин" |
What was the dominant religion (2002) of the Mala Remeta settlement? | CREATE TABLE table_2562572_50 (dominant_religion__2002_ VARCHAR, settlement VARCHAR) | SELECT dominant_religion__2002_ FROM table_2562572_50 WHERE settlement = "Mala Remeta" | ### Context: CREATE TABLE table_2562572_50 (dominant_religion__2002_ VARCHAR, settlement VARCHAR) ### Question: What was the dominant religion (2002) of the Mala Remeta settlement? ### Answer: SELECT dominant_religion__2002_ FROM table_2562572_50 WHERE settlement = "Mala Remeta" |
What type of settlemen is Krušedol Selo? | CREATE TABLE table_2562572_50 (type VARCHAR, settlement VARCHAR) | SELECT type FROM table_2562572_50 WHERE settlement = "Krušedol Selo" | ### Context: CREATE TABLE table_2562572_50 (type VARCHAR, settlement VARCHAR) ### Question: What type of settlemen is Krušedol Selo? ### Answer: SELECT type FROM table_2562572_50 WHERE settlement = "Krušedol Selo" |
How many types of settlement if Neradin? | CREATE TABLE table_2562572_50 (type VARCHAR, settlement VARCHAR) | SELECT COUNT(type) FROM table_2562572_50 WHERE settlement = "Neradin" | ### Context: CREATE TABLE table_2562572_50 (type VARCHAR, settlement VARCHAR) ### Question: How many types of settlement if Neradin? ### Answer: SELECT COUNT(type) FROM table_2562572_50 WHERE settlement = "Neradin" |
What type of settlement is Jazak? | CREATE TABLE table_2562572_50 (type VARCHAR, settlement VARCHAR) | SELECT type FROM table_2562572_50 WHERE settlement = "Jazak" | ### Context: CREATE TABLE table_2562572_50 (type VARCHAR, settlement VARCHAR) ### Question: What type of settlement is Jazak? ### Answer: SELECT type FROM table_2562572_50 WHERE settlement = "Jazak" |
What is the name of the settlement that had a population of 9443 in 2011? | CREATE TABLE table_2562572_53 (settlement VARCHAR, population__2011_ VARCHAR) | SELECT settlement FROM table_2562572_53 WHERE population__2011_ = 9443 | ### Context: CREATE TABLE table_2562572_53 (settlement VARCHAR, population__2011_ VARCHAR) ### Question: What is the name of the settlement that had a population of 9443 in 2011? ### Answer: SELECT settlement FROM table_2562572_53 WHERE population__2011_ = 9443 |
How many different types of settlements does Nova Pazova fall into? | CREATE TABLE table_2562572_53 (type VARCHAR, settlement VARCHAR) | SELECT COUNT(type) FROM table_2562572_53 WHERE settlement = "Nova Pazova" | ### Context: CREATE TABLE table_2562572_53 (type VARCHAR, settlement VARCHAR) ### Question: How many different types of settlements does Nova Pazova fall into? ### Answer: SELECT COUNT(type) FROM table_2562572_53 WHERE settlement = "Nova Pazova" |
What ethnic group had the largest population in сурдук in 2002? | CREATE TABLE table_2562572_53 (largest_ethnic_group__2002_ VARCHAR, cyrillic_name VARCHAR) | SELECT largest_ethnic_group__2002_ FROM table_2562572_53 WHERE cyrillic_name = "Сурдук" | ### Context: CREATE TABLE table_2562572_53 (largest_ethnic_group__2002_ VARCHAR, cyrillic_name VARCHAR) ### Question: What ethnic group had the largest population in сурдук in 2002? ### Answer: SELECT largest_ethnic_group__2002_ FROM table_2562572_53 WHERE cyrillic_name = "Сурдук" |
How many dominant religions were in the settlement that had a population of 17105? | CREATE TABLE table_2562572_53 (dominant_religion__2002_ VARCHAR, population__2011_ VARCHAR) | SELECT COUNT(dominant_religion__2002_) FROM table_2562572_53 WHERE population__2011_ = 17105 | ### Context: CREATE TABLE table_2562572_53 (dominant_religion__2002_ VARCHAR, population__2011_ VARCHAR) ### Question: How many dominant religions were in the settlement that had a population of 17105? ### Answer: SELECT COUNT(dominant_religion__2002_) FROM table_2562572_53 WHERE population__2011_ = 17105 |
What was the population of сурдук in 2011? | CREATE TABLE table_2562572_53 (population__2011_ VARCHAR, cyrillic_name VARCHAR) | SELECT COUNT(population__2011_) FROM table_2562572_53 WHERE cyrillic_name = "Сурдук" | ### Context: CREATE TABLE table_2562572_53 (population__2011_ VARCHAR, cyrillic_name VARCHAR) ### Question: What was the population of сурдук in 2011? ### Answer: SELECT COUNT(population__2011_) FROM table_2562572_53 WHERE cyrillic_name = "Сурдук" |
When extending eminent domain over roads and ways is the description what is the highest means number? | CREATE TABLE table_256286_13 (meas_num INTEGER, description VARCHAR) | SELECT MAX(meas_num) FROM table_256286_13 WHERE description = "Extending Eminent Domain Over Roads and Ways" | ### Context: CREATE TABLE table_256286_13 (meas_num INTEGER, description VARCHAR) ### Question: When extending eminent domain over roads and ways is the description what is the highest means number? ### Answer: SELECT MAX(meas_num) FROM table_256286_13 WHERE description = "Extending Eminent Domain Over Roads and Ways" |
When restoring capital punishment is the description how many types are there? | CREATE TABLE table_256286_13 (type VARCHAR, description VARCHAR) | SELECT COUNT(type) FROM table_256286_13 WHERE description = "Restoring Capital Punishment" | ### Context: CREATE TABLE table_256286_13 (type VARCHAR, description VARCHAR) ### Question: When restoring capital punishment is the description how many types are there? ### Answer: SELECT COUNT(type) FROM table_256286_13 WHERE description = "Restoring Capital Punishment" |
What is the lowest overall amount of no votes? | CREATE TABLE table_256286_13 (no_votes INTEGER) | SELECT MIN(no_votes) FROM table_256286_13 | ### Context: CREATE TABLE table_256286_13 (no_votes INTEGER) ### Question: What is the lowest overall amount of no votes? ### Answer: SELECT MIN(no_votes) FROM table_256286_13 |
What was the urban settlement when the city / municipality was kovin? | CREATE TABLE table_2562572_7 (urban_settlement VARCHAR, city___municipality VARCHAR) | SELECT urban_settlement FROM table_2562572_7 WHERE city___municipality = "Kovin" | ### Context: CREATE TABLE table_2562572_7 (urban_settlement VARCHAR, city___municipality VARCHAR) ### Question: What was the urban settlement when the city / municipality was kovin? ### Answer: SELECT urban_settlement FROM table_2562572_7 WHERE city___municipality = "Kovin" |
What is the population (1991) where population (2002) was 14250? | CREATE TABLE table_2562572_7 (population__1991_ VARCHAR, population__2002_ VARCHAR) | SELECT COUNT(population__1991_) FROM table_2562572_7 WHERE population__2002_ = 14250 | ### Context: CREATE TABLE table_2562572_7 (population__1991_ VARCHAR, population__2002_ VARCHAR) ### Question: What is the population (1991) where population (2002) was 14250? ### Answer: SELECT COUNT(population__1991_) FROM table_2562572_7 WHERE population__2002_ = 14250 |
What is the population (1991) when cyrillic name is панчево? | CREATE TABLE table_2562572_7 (population__1991_ INTEGER, cyrillic_name VARCHAR) | SELECT MIN(population__1991_) FROM table_2562572_7 WHERE cyrillic_name = "Панчево" | ### Context: CREATE TABLE table_2562572_7 (population__1991_ INTEGER, cyrillic_name VARCHAR) ### Question: What is the population (1991) when cyrillic name is панчево? ### Answer: SELECT MIN(population__1991_) FROM table_2562572_7 WHERE cyrillic_name = "Панчево" |
What is the settlement destiny in Aleksandrovo? | CREATE TABLE table_2562572_56 (settlement VARCHAR) | SELECT settlement AS destiny FROM table_2562572_56 WHERE settlement = "Aleksandrovo" | ### Context: CREATE TABLE table_2562572_56 (settlement VARCHAR) ### Question: What is the settlement destiny in Aleksandrovo? ### Answer: SELECT settlement AS destiny FROM table_2562572_56 WHERE settlement = "Aleksandrovo" |
What is the Cyrillic name for Novi Vladimirovac? | CREATE TABLE table_2562572_56 (cyrillic_name_other_names VARCHAR, settlement VARCHAR) | SELECT cyrillic_name_other_names FROM table_2562572_56 WHERE settlement = "Novi Vladimirovac" | ### Context: CREATE TABLE table_2562572_56 (cyrillic_name_other_names VARCHAR, settlement VARCHAR) ### Question: What is the Cyrillic name for Novi Vladimirovac? ### Answer: SELECT cyrillic_name_other_names FROM table_2562572_56 WHERE settlement = "Novi Vladimirovac" |
How many items appear in the population 2011 column for the krčedin settlement? | CREATE TABLE table_2562572_54 (population__2011_ VARCHAR, settlement VARCHAR) | SELECT COUNT(population__2011_) FROM table_2562572_54 WHERE settlement = "Krčedin" | ### Context: CREATE TABLE table_2562572_54 (population__2011_ VARCHAR, settlement VARCHAR) ### Question: How many items appear in the population 2011 column for the krčedin settlement? ### Answer: SELECT COUNT(population__2011_) FROM table_2562572_54 WHERE settlement = "Krčedin" |
What is the dominant religion in 2002 for the population of 2337 in 2011? | CREATE TABLE table_2562572_54 (dominant_religion__2002_ VARCHAR, population__2011_ VARCHAR) | SELECT dominant_religion__2002_ FROM table_2562572_54 WHERE population__2011_ = 2337 | ### Context: CREATE TABLE table_2562572_54 (dominant_religion__2002_ VARCHAR, population__2011_ VARCHAR) ### Question: What is the dominant religion in 2002 for the population of 2337 in 2011? ### Answer: SELECT dominant_religion__2002_ FROM table_2562572_54 WHERE population__2011_ = 2337 |
What is the lowest population in 2011 for the settlement of čortanovci? | CREATE TABLE table_2562572_54 (population__2011_ INTEGER, settlement VARCHAR) | SELECT MIN(population__2011_) FROM table_2562572_54 WHERE settlement = "Čortanovci" | ### Context: CREATE TABLE table_2562572_54 (population__2011_ INTEGER, settlement VARCHAR) ### Question: What is the lowest population in 2011 for the settlement of čortanovci? ### Answer: SELECT MIN(population__2011_) FROM table_2562572_54 WHERE settlement = "Čortanovci" |
What is the largest ethnic group in 2002 for the cyrillic name, other name of бешка? | CREATE TABLE table_2562572_54 (largest_ethnic_group__2002_ VARCHAR, cyrillic_name_other_names VARCHAR) | SELECT largest_ethnic_group__2002_ FROM table_2562572_54 WHERE cyrillic_name_other_names = "Бешка" | ### Context: CREATE TABLE table_2562572_54 (largest_ethnic_group__2002_ VARCHAR, cyrillic_name_other_names VARCHAR) ### Question: What is the largest ethnic group in 2002 for the cyrillic name, other name of бешка? ### Answer: SELECT largest_ethnic_group__2002_ FROM table_2562572_54 WHERE cyrillic_name_other_names = "Бешка" |
What was the lowes population of 2002 when the 2011 population was 30076? | CREATE TABLE table_2562572_8 (population__2002_ INTEGER, population__2011_ VARCHAR) | SELECT MIN(population__2002_) FROM table_2562572_8 WHERE population__2011_ = 30076 | ### Context: CREATE TABLE table_2562572_8 (population__2002_ INTEGER, population__2011_ VARCHAR) ### Question: What was the lowes population of 2002 when the 2011 population was 30076? ### Answer: SELECT MIN(population__2002_) FROM table_2562572_8 WHERE population__2011_ = 30076 |
What is the dominant religion in степановићево during 2002? | CREATE TABLE table_2562572_9 (dominant_religion__2002_ VARCHAR, cyrillic_name_other_names VARCHAR) | SELECT dominant_religion__2002_ FROM table_2562572_9 WHERE cyrillic_name_other_names = "Степановићево" | ### Context: CREATE TABLE table_2562572_9 (dominant_religion__2002_ VARCHAR, cyrillic_name_other_names VARCHAR) ### Question: What is the dominant religion in степановићево during 2002? ### Answer: SELECT dominant_religion__2002_ FROM table_2562572_9 WHERE cyrillic_name_other_names = "Степановићево" |
What is the cyrillic name for the settlement with the population of 2125? | CREATE TABLE table_2562572_9 (cyrillic_name_other_names VARCHAR, population__2011_ VARCHAR) | SELECT cyrillic_name_other_names FROM table_2562572_9 WHERE population__2011_ = 2125 | ### Context: CREATE TABLE table_2562572_9 (cyrillic_name_other_names VARCHAR, population__2011_ VARCHAR) ### Question: What is the cyrillic name for the settlement with the population of 2125? ### Answer: SELECT cyrillic_name_other_names FROM table_2562572_9 WHERE population__2011_ = 2125 |
What type of settlement is футог? | CREATE TABLE table_2562572_9 (type VARCHAR, cyrillic_name_other_names VARCHAR) | SELECT type FROM table_2562572_9 WHERE cyrillic_name_other_names = "Футог" | ### Context: CREATE TABLE table_2562572_9 (type VARCHAR, cyrillic_name_other_names VARCHAR) ### Question: What type of settlement is футог? ### Answer: SELECT type FROM table_2562572_9 WHERE cyrillic_name_other_names = "Футог" |
What is the cyrillic name for the settlement with the population of 5414? | CREATE TABLE table_2562572_9 (cyrillic_name_other_names VARCHAR, population__2011_ VARCHAR) | SELECT cyrillic_name_other_names FROM table_2562572_9 WHERE population__2011_ = 5414 | ### Context: CREATE TABLE table_2562572_9 (cyrillic_name_other_names VARCHAR, population__2011_ VARCHAR) ### Question: What is the cyrillic name for the settlement with the population of 5414? ### Answer: SELECT cyrillic_name_other_names FROM table_2562572_9 WHERE population__2011_ = 5414 |
What is the cyrillic name for Budisava? | CREATE TABLE table_2562572_9 (cyrillic_name_other_names VARCHAR, settlement VARCHAR) | SELECT cyrillic_name_other_names FROM table_2562572_9 WHERE settlement = "Budisava" | ### Context: CREATE TABLE table_2562572_9 (cyrillic_name_other_names VARCHAR, settlement VARCHAR) ### Question: What is the cyrillic name for Budisava? ### Answer: SELECT cyrillic_name_other_names FROM table_2562572_9 WHERE settlement = "Budisava" |
What is the dominant religion for нови сад in 2002? | CREATE TABLE table_2562572_9 (dominant_religion__2002_ VARCHAR, cyrillic_name_other_names VARCHAR) | SELECT dominant_religion__2002_ FROM table_2562572_9 WHERE cyrillic_name_other_names = "Нови Сад" | ### Context: CREATE TABLE table_2562572_9 (dominant_religion__2002_ VARCHAR, cyrillic_name_other_names VARCHAR) ### Question: What is the dominant religion for нови сад in 2002? ### Answer: SELECT dominant_religion__2002_ FROM table_2562572_9 WHERE cyrillic_name_other_names = "Нови Сад" |
What is the largest number of yest votes for the measure with 61307 no votes? | CREATE TABLE table_256286_19 (yes_votes INTEGER, no_votes VARCHAR) | SELECT MAX(yes_votes) FROM table_256286_19 WHERE no_votes = 61307 | ### Context: CREATE TABLE table_256286_19 (yes_votes INTEGER, no_votes VARCHAR) ### Question: What is the largest number of yest votes for the measure with 61307 no votes? ### Answer: SELECT MAX(yes_votes) FROM table_256286_19 WHERE no_votes = 61307 |
What numbered measure had a 58.29% yes%? | CREATE TABLE table_256286_19 (meas_num VARCHAR, _percentage_yes VARCHAR) | SELECT meas_num FROM table_256286_19 WHERE _percentage_yes = "58.29%" | ### Context: CREATE TABLE table_256286_19 (meas_num VARCHAR, _percentage_yes VARCHAR) ### Question: What numbered measure had a 58.29% yes%? ### Answer: SELECT meas_num FROM table_256286_19 WHERE _percentage_yes = "58.29%" |
What was the passing result for the measure with 61307 no votes? | CREATE TABLE table_256286_19 (passed VARCHAR, no_votes VARCHAR) | SELECT passed FROM table_256286_19 WHERE no_votes = 61307 | ### Context: CREATE TABLE table_256286_19 (passed VARCHAR, no_votes VARCHAR) ### Question: What was the passing result for the measure with 61307 no votes? ### Answer: SELECT passed FROM table_256286_19 WHERE no_votes = 61307 |
What is the lowest measure number for the measure with a 33.57% yes percentage? | CREATE TABLE table_256286_19 (meas_num INTEGER, _percentage_yes VARCHAR) | SELECT MIN(meas_num) FROM table_256286_19 WHERE _percentage_yes = "33.57%" | ### Context: CREATE TABLE table_256286_19 (meas_num INTEGER, _percentage_yes VARCHAR) ### Question: What is the lowest measure number for the measure with a 33.57% yes percentage? ### Answer: SELECT MIN(meas_num) FROM table_256286_19 WHERE _percentage_yes = "33.57%" |
What was the passing result for the measure with a description of bus and truck operating license bill? | CREATE TABLE table_256286_19 (passed VARCHAR, description VARCHAR) | SELECT passed FROM table_256286_19 WHERE description = "Bus and Truck Operating License Bill" | ### Context: CREATE TABLE table_256286_19 (passed VARCHAR, description VARCHAR) ### Question: What was the passing result for the measure with a description of bus and truck operating license bill? ### Answer: SELECT passed FROM table_256286_19 WHERE description = "Bus and Truck Operating License Bill" |
What was the result of the ballot that had a 52.49% yes vote percentage? | CREATE TABLE table_256286_22 (passed VARCHAR, _percentage_yes VARCHAR) | SELECT passed FROM table_256286_22 WHERE _percentage_yes = "52.49%" | ### Context: CREATE TABLE table_256286_22 (passed VARCHAR, _percentage_yes VARCHAR) ### Question: What was the result of the ballot that had a 52.49% yes vote percentage? ### Answer: SELECT passed FROM table_256286_22 WHERE _percentage_yes = "52.49%" |
What type of proposal is measure number 3? | CREATE TABLE table_256286_21 (type VARCHAR, meas_num VARCHAR) | SELECT type FROM table_256286_21 WHERE meas_num = 3 | ### Context: CREATE TABLE table_256286_21 (type VARCHAR, meas_num VARCHAR) ### Question: What type of proposal is measure number 3? ### Answer: SELECT type FROM table_256286_21 WHERE meas_num = 3 |
How many yes votes did the measure that got 60.39% yes votes get? | CREATE TABLE table_256286_23 (yes_votes VARCHAR, _percentage_yes VARCHAR) | SELECT yes_votes FROM table_256286_23 WHERE _percentage_yes = "60.39%" | ### Context: CREATE TABLE table_256286_23 (yes_votes VARCHAR, _percentage_yes VARCHAR) ### Question: How many yes votes did the measure that got 60.39% yes votes get? ### Answer: SELECT yes_votes FROM table_256286_23 WHERE _percentage_yes = "60.39%" |
What is the description of the measure that got 39.57% yes votes? | CREATE TABLE table_256286_23 (description VARCHAR, _percentage_yes VARCHAR) | SELECT description FROM table_256286_23 WHERE _percentage_yes = "39.57%" | ### Context: CREATE TABLE table_256286_23 (description VARCHAR, _percentage_yes VARCHAR) ### Question: What is the description of the measure that got 39.57% yes votes? ### Answer: SELECT description FROM table_256286_23 WHERE _percentage_yes = "39.57%" |
What is the number of the tax supervising and conservation bill? | CREATE TABLE table_256286_23 (meas_num INTEGER, description VARCHAR) | SELECT MIN(meas_num) FROM table_256286_23 WHERE description = "Tax Supervising and Conservation Bill" | ### Context: CREATE TABLE table_256286_23 (meas_num INTEGER, description VARCHAR) ### Question: What is the number of the tax supervising and conservation bill? ### Answer: SELECT MIN(meas_num) FROM table_256286_23 WHERE description = "Tax Supervising and Conservation Bill" |
How many ballot measures had a percentage yes of 52.11%? | CREATE TABLE table_256286_39 (passed VARCHAR, _percentage_yes VARCHAR) | SELECT COUNT(passed) FROM table_256286_39 WHERE _percentage_yes = "52.11%" | ### Context: CREATE TABLE table_256286_39 (passed VARCHAR, _percentage_yes VARCHAR) ### Question: How many ballot measures had a percentage yes of 52.11%? ### Answer: SELECT COUNT(passed) FROM table_256286_39 WHERE _percentage_yes = "52.11%" |
What is the measure where the yes% is 44.06%? | CREATE TABLE table_256286_39 (description VARCHAR, _percentage_yes VARCHAR) | SELECT description FROM table_256286_39 WHERE _percentage_yes = "44.06%" | ### Context: CREATE TABLE table_256286_39 (description VARCHAR, _percentage_yes VARCHAR) ### Question: What is the measure where the yes% is 44.06%? ### Answer: SELECT description FROM table_256286_39 WHERE _percentage_yes = "44.06%" |
How many measures had a yes vote of 216545? | CREATE TABLE table_256286_39 (passed VARCHAR, yes_votes VARCHAR) | SELECT COUNT(passed) FROM table_256286_39 WHERE yes_votes = 216545 | ### Context: CREATE TABLE table_256286_39 (passed VARCHAR, yes_votes VARCHAR) ### Question: How many measures had a yes vote of 216545? ### Answer: SELECT COUNT(passed) FROM table_256286_39 WHERE yes_votes = 216545 |
What is the highest measure number? | CREATE TABLE table_256286_39 (meas_num INTEGER) | SELECT MAX(meas_num) FROM table_256286_39 | ### Context: CREATE TABLE table_256286_39 (meas_num INTEGER) ### Question: What is the highest measure number? ### Answer: SELECT MAX(meas_num) FROM table_256286_39 |
What was the percentage of yes votes for the measure where the no votes number 199174? | CREATE TABLE table_256286_45 (_percentage_yes VARCHAR, no_votes VARCHAR) | SELECT _percentage_yes FROM table_256286_45 WHERE no_votes = 199174 | ### Context: CREATE TABLE table_256286_45 (_percentage_yes VARCHAR, no_votes VARCHAR) ### Question: What was the percentage of yes votes for the measure where the no votes number 199174? ### Answer: SELECT _percentage_yes FROM table_256286_45 WHERE no_votes = 199174 |
How many types are there for the measure where there were 312680 yes votes? | CREATE TABLE table_256286_45 (type VARCHAR, yes_votes VARCHAR) | SELECT COUNT(type) FROM table_256286_45 WHERE yes_votes = 312680 | ### Context: CREATE TABLE table_256286_45 (type VARCHAR, yes_votes VARCHAR) ### Question: How many types are there for the measure where there were 312680 yes votes? ### Answer: SELECT COUNT(type) FROM table_256286_45 WHERE yes_votes = 312680 |
How many figures are there for No votes for the Forest Rehabilitation Debt Limit Amendment? | CREATE TABLE table_256286_45 (no_votes VARCHAR, description VARCHAR) | SELECT COUNT(no_votes) FROM table_256286_45 WHERE description = "Forest Rehabilitation Debt Limit Amendment" | ### Context: CREATE TABLE table_256286_45 (no_votes VARCHAR, description VARCHAR) ### Question: How many figures are there for No votes for the Forest Rehabilitation Debt Limit Amendment? ### Answer: SELECT COUNT(no_votes) FROM table_256286_45 WHERE description = "Forest Rehabilitation Debt Limit Amendment" |
What is the type of measure that voted on the Power Development Debt Limit Amendment? | CREATE TABLE table_256286_45 (type VARCHAR, description VARCHAR) | SELECT type FROM table_256286_45 WHERE description = "Power Development Debt Limit Amendment" | ### Context: CREATE TABLE table_256286_45 (type VARCHAR, description VARCHAR) ### Question: What is the type of measure that voted on the Power Development Debt Limit Amendment? ### Answer: SELECT type FROM table_256286_45 WHERE description = "Power Development Debt Limit Amendment" |
What vote passed for the measure with the description, authorizing state acceptance of certain gifts? | CREATE TABLE table_256286_40 (passed VARCHAR, description VARCHAR) | SELECT passed FROM table_256286_40 WHERE description = "Authorizing State Acceptance of Certain Gifts" | ### Context: CREATE TABLE table_256286_40 (passed VARCHAR, description VARCHAR) ### Question: What vote passed for the measure with the description, authorizing state acceptance of certain gifts? ### Answer: SELECT passed FROM table_256286_40 WHERE description = "Authorizing State Acceptance of Certain Gifts" |
How many votes passed are listed on the measure that had 390338 yes votes? | CREATE TABLE table_256286_40 (passed VARCHAR, yes_votes VARCHAR) | SELECT COUNT(passed) FROM table_256286_40 WHERE yes_votes = 390338 | ### Context: CREATE TABLE table_256286_40 (passed VARCHAR, yes_votes VARCHAR) ### Question: How many votes passed are listed on the measure that had 390338 yes votes? ### Answer: SELECT COUNT(passed) FROM table_256286_40 WHERE yes_votes = 390338 |
What was the type when there were 175932 yes votes? | CREATE TABLE table_256286_40 (type VARCHAR, yes_votes VARCHAR) | SELECT type FROM table_256286_40 WHERE yes_votes = 175932 | ### Context: CREATE TABLE table_256286_40 (type VARCHAR, yes_votes VARCHAR) ### Question: What was the type when there were 175932 yes votes? ### Answer: SELECT type FROM table_256286_40 WHERE yes_votes = 175932 |
What is the aggregate number of yes votes where no votes is littler than 299939.1619948521 and % yes is 66.49% | CREATE TABLE table_256286_41 (yes_votes VARCHAR, no_votes VARCHAR, _percentage_yes VARCHAR) | SELECT COUNT(yes_votes) FROM table_256286_41 WHERE no_votes < 299939.1619948521 AND _percentage_yes = "66.49%" | ### Context: CREATE TABLE table_256286_41 (yes_votes VARCHAR, no_votes VARCHAR, _percentage_yes VARCHAR) ### Question: What is the aggregate number of yes votes where no votes is littler than 299939.1619948521 and % yes is 66.49% ### Answer: SELECT COUNT(yes_votes) FROM table_256286_41 WHERE no_votes < 299939.1619948521 AND _percentage_yes = "66.49%" |
What is the description of the measure that got 78.27% yes votes? | CREATE TABLE table_256286_55 (description VARCHAR, _percentage_yes VARCHAR) | SELECT description FROM table_256286_55 WHERE _percentage_yes = "78.27%" | ### Context: CREATE TABLE table_256286_55 (description VARCHAR, _percentage_yes VARCHAR) ### Question: What is the description of the measure that got 78.27% yes votes? ### Answer: SELECT description FROM table_256286_55 WHERE _percentage_yes = "78.27%" |
What is the highest measure number? | CREATE TABLE table_256286_55 (meas_num INTEGER) | SELECT MAX(meas_num) FROM table_256286_55 | ### Context: CREATE TABLE table_256286_55 (meas_num INTEGER) ### Question: What is the highest measure number? ### Answer: SELECT MAX(meas_num) FROM table_256286_55 |
How many type classifications are given to the measure with the description, calling convention to revise state constitution? | CREATE TABLE table_256286_5 (type VARCHAR, description VARCHAR) | SELECT COUNT(type) FROM table_256286_5 WHERE description = "Calling Convention to revise State Constitution" | ### Context: CREATE TABLE table_256286_5 (type VARCHAR, description VARCHAR) ### Question: How many type classifications are given to the measure with the description, calling convention to revise state constitution? ### Answer: SELECT COUNT(type) FROM table_256286_5 WHERE description = "Calling Convention to revise State Constitution" |
What is the yes percentage in the measure that had 35270 yes votes? | CREATE TABLE table_256286_5 (_percentage_yes VARCHAR, yes_votes VARCHAR) | SELECT _percentage_yes FROM table_256286_5 WHERE yes_votes = 35270 | ### Context: CREATE TABLE table_256286_5 (_percentage_yes VARCHAR, yes_votes VARCHAR) ### Question: What is the yes percentage in the measure that had 35270 yes votes? ### Answer: SELECT _percentage_yes FROM table_256286_5 WHERE yes_votes = 35270 |
When the no votes was 322682, what was the max meas. number? | CREATE TABLE table_256286_54 (meas_num INTEGER, no_votes VARCHAR) | SELECT MAX(meas_num) FROM table_256286_54 WHERE no_votes = 322682 | ### Context: CREATE TABLE table_256286_54 (meas_num INTEGER, no_votes VARCHAR) ### Question: When the no votes was 322682, what was the max meas. number? ### Answer: SELECT MAX(meas_num) FROM table_256286_54 WHERE no_votes = 322682 |
How yes votes were there for measure 4? | CREATE TABLE table_256286_60 (yes_votes INTEGER, meas_num VARCHAR) | SELECT MAX(yes_votes) FROM table_256286_60 WHERE meas_num = 4 | ### Context: CREATE TABLE table_256286_60 (yes_votes INTEGER, meas_num VARCHAR) ### Question: How yes votes were there for measure 4? ### Answer: SELECT MAX(yes_votes) FROM table_256286_60 WHERE meas_num = 4 |
What was the lowest measure number? | CREATE TABLE table_256286_60 (meas_num INTEGER) | SELECT MIN(meas_num) FROM table_256286_60 | ### Context: CREATE TABLE table_256286_60 (meas_num INTEGER) ### Question: What was the lowest measure number? ### Answer: SELECT MIN(meas_num) FROM table_256286_60 |
What was the type of ballot measures if the % of yes vote is 32.47%? | CREATE TABLE table_256286_8 (type VARCHAR, _percentage_yes VARCHAR) | SELECT type FROM table_256286_8 WHERE _percentage_yes = "32.47%" | ### Context: CREATE TABLE table_256286_8 (type VARCHAR, _percentage_yes VARCHAR) ### Question: What was the type of ballot measures if the % of yes vote is 32.47%? ### Answer: SELECT type FROM table_256286_8 WHERE _percentage_yes = "32.47%" |
What was the type of ballot measure with the description of Department of Industry and Public Works Amendment? | CREATE TABLE table_256286_8 (type VARCHAR, description VARCHAR) | SELECT type FROM table_256286_8 WHERE description = "Department of Industry and Public Works Amendment" | ### Context: CREATE TABLE table_256286_8 (type VARCHAR, description VARCHAR) ### Question: What was the type of ballot measure with the description of Department of Industry and Public Works Amendment? ### Answer: SELECT type FROM table_256286_8 WHERE description = "Department of Industry and Public Works Amendment" |
How many data are there under NO vote with a description of $1500 tax exemption amendment? | CREATE TABLE table_256286_8 (no_votes VARCHAR, description VARCHAR) | SELECT COUNT(no_votes) FROM table_256286_8 WHERE description = "$1500 Tax Exemption Amendment" | ### Context: CREATE TABLE table_256286_8 (no_votes VARCHAR, description VARCHAR) ### Question: How many data are there under NO vote with a description of $1500 tax exemption amendment? ### Answer: SELECT COUNT(no_votes) FROM table_256286_8 WHERE description = "$1500 Tax Exemption Amendment" |
What is the percentage of yes when there were 218846 yes votes | CREATE TABLE table_256286_61 (_percentage_yes VARCHAR, yes_votes VARCHAR) | SELECT _percentage_yes FROM table_256286_61 WHERE yes_votes = 218846 | ### Context: CREATE TABLE table_256286_61 (_percentage_yes VARCHAR, yes_votes VARCHAR) ### Question: What is the percentage of yes when there were 218846 yes votes ### Answer: SELECT _percentage_yes FROM table_256286_61 WHERE yes_votes = 218846 |
How many type catagories are listed when the percentage of yes is 68.91%? | CREATE TABLE table_256286_61 (type VARCHAR, _percentage_yes VARCHAR) | SELECT COUNT(type) FROM table_256286_61 WHERE _percentage_yes = "68.91%" | ### Context: CREATE TABLE table_256286_61 (type VARCHAR, _percentage_yes VARCHAR) ### Question: How many type catagories are listed when the percentage of yes is 68.91%? ### Answer: SELECT COUNT(type) FROM table_256286_61 WHERE _percentage_yes = "68.91%" |
What is the type when yes votes are 546255? | CREATE TABLE table_256286_61 (type VARCHAR, yes_votes VARCHAR) | SELECT type FROM table_256286_61 WHERE yes_votes = 546255 | ### Context: CREATE TABLE table_256286_61 (type VARCHAR, yes_votes VARCHAR) ### Question: What is the type when yes votes are 546255? ### Answer: SELECT type FROM table_256286_61 WHERE yes_votes = 546255 |
What is the measure number for the bill described as obscenity and sexual conduct bill? | CREATE TABLE table_256286_61 (meas_num VARCHAR, description VARCHAR) | SELECT meas_num FROM table_256286_61 WHERE description = "Obscenity and sexual conduct bill" | ### Context: CREATE TABLE table_256286_61 (meas_num VARCHAR, description VARCHAR) ### Question: What is the measure number for the bill described as obscenity and sexual conduct bill? ### Answer: SELECT meas_num FROM table_256286_61 WHERE description = "Obscenity and sexual conduct bill" |
How many points did art renner have? | CREATE TABLE table_25647137_2 (points VARCHAR, player VARCHAR) | SELECT COUNT(points) FROM table_25647137_2 WHERE player = "Art Renner" | ### Context: CREATE TABLE table_25647137_2 (points VARCHAR, player VARCHAR) ### Question: How many points did art renner have? ### Answer: SELECT COUNT(points) FROM table_25647137_2 WHERE player = "Art Renner" |
How many touchdowns did bill culligan have? | CREATE TABLE table_25647137_2 (touchdowns VARCHAR, player VARCHAR) | SELECT COUNT(touchdowns) FROM table_25647137_2 WHERE player = "Bill Culligan" | ### Context: CREATE TABLE table_25647137_2 (touchdowns VARCHAR, player VARCHAR) ### Question: How many touchdowns did bill culligan have? ### Answer: SELECT COUNT(touchdowns) FROM table_25647137_2 WHERE player = "Bill Culligan" |
What was the highest number of touchdowns by a player? | CREATE TABLE table_25647137_2 (touchdowns INTEGER) | SELECT MAX(touchdowns) FROM table_25647137_2 | ### Context: CREATE TABLE table_25647137_2 (touchdowns INTEGER) ### Question: What was the highest number of touchdowns by a player? ### Answer: SELECT MAX(touchdowns) FROM table_25647137_2 |
How many points did robert stenberg have? | CREATE TABLE table_25647137_2 (points INTEGER, player VARCHAR) | SELECT MIN(points) FROM table_25647137_2 WHERE player = "Robert Stenberg" | ### Context: CREATE TABLE table_25647137_2 (points INTEGER, player VARCHAR) ### Question: How many points did robert stenberg have? ### Answer: SELECT MIN(points) FROM table_25647137_2 WHERE player = "Robert Stenberg" |
Where was the quake that began at 14:07? | CREATE TABLE table_25643046_1 (location VARCHAR, origin_time VARCHAR) | SELECT location FROM table_25643046_1 WHERE origin_time = "14:07" | ### Context: CREATE TABLE table_25643046_1 (location VARCHAR, origin_time VARCHAR) ### Question: Where was the quake that began at 14:07? ### Answer: SELECT location FROM table_25643046_1 WHERE origin_time = "14:07" |
What was the epicenter latitude for the quake that started at 17:09? | CREATE TABLE table_25643046_1 (epicentre__lat VARCHAR, _s_ VARCHAR, origin_time VARCHAR) | SELECT epicentre__lat, _s_ FROM table_25643046_1 WHERE origin_time = "17:09" | ### Context: CREATE TABLE table_25643046_1 (epicentre__lat VARCHAR, _s_ VARCHAR, origin_time VARCHAR) ### Question: What was the epicenter latitude for the quake that started at 17:09? ### Answer: SELECT epicentre__lat, _s_ FROM table_25643046_1 WHERE origin_time = "17:09" |
When 12 is the season number how many series numbers are there? | CREATE TABLE table_25649467_2 (series__number VARCHAR, season__number VARCHAR) | SELECT COUNT(series__number) FROM table_25649467_2 WHERE season__number = 12 | ### Context: CREATE TABLE table_25649467_2 (series__number VARCHAR, season__number VARCHAR) ### Question: When 12 is the season number how many series numbers are there? ### Answer: SELECT COUNT(series__number) FROM table_25649467_2 WHERE season__number = 12 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.