training_input stringlengths 118 1.06k |
|---|
###context:CREATE TABLE table_25531112_2 (circuit VARCHAR, event VARCHAR)
###human: What circuit was the Clipsal 500 on?
###assistant: SELECT circuit FROM table_25531112_2 WHERE event = "Clipsal 500" |
###context:CREATE TABLE table_25531112_2 (challenge VARCHAR, circuit VARCHAR)
###human: Who made the challenge on the Albert Park Grand Prix Circuit?
###assistant: SELECT challenge FROM table_25531112_2 WHERE circuit = "Albert Park Grand Prix circuit" |
###context:CREATE TABLE table_25531112_2 (rd VARCHAR, circuit VARCHAR)
###human: In what round was the circuit Eastern Creek Raceway?
###assistant: SELECT rd FROM table_25531112_2 WHERE circuit = "Eastern Creek Raceway" |
###context:CREATE TABLE table_25531112_2 (challenge VARCHAR, event VARCHAR)
###human: Who made the challenge in the Australian Grand Prix?
###assistant: SELECT challenge FROM table_25531112_2 WHERE event = "Australian Grand Prix" |
###context:CREATE TABLE table_25527255_2 (shirt_sponsor VARCHAR, average_squad_age VARCHAR)
###human: Who is the shirt sponsor of the team with an average squad age of 25.46?
###assistant: SELECT shirt_sponsor FROM table_25527255_2 WHERE average_squad_age = "25.46" |
###context:CREATE TABLE table_25527255_2 (shirt_sponsor VARCHAR, team VARCHAR)
###human: Who is the shirt sponsor for FC Bunyodkor?
###assistant: SELECT shirt_sponsor FROM table_25527255_2 WHERE team = "FC Bunyodkor" |
###context:CREATE TABLE table_25527255_2 (average_squad_age VARCHAR, shirt_sponsor VARCHAR, kit_manufacturer VARCHAR)
###human: What is the average squad age of the team whose shirt sponsor is Sho'rtan Gaz Mahsulot and whose kit manufacturer is Adidas?
###assistant: SELECT average_squad_age FROM table_25527255... |
###context:CREATE TABLE table_25527255_2 (captain VARCHAR, kit_manufacturer VARCHAR)
###human: Who is the captain of the team whose kit manufacturer is Nike?
###assistant: SELECT captain FROM table_25527255_2 WHERE kit_manufacturer = "Nike" |
###context:CREATE TABLE table_25527255_2 (manager VARCHAR, team VARCHAR)
###human: Who is the manager of FK Andijan?
###assistant: SELECT manager FROM table_25527255_2 WHERE team = "FK Andijan" |
###context:CREATE TABLE table_2553861_1 (year VARCHAR, open_cup VARCHAR, playoffs VARCHAR)
###human: Name the year for open cup did not qualify and national final
###assistant: SELECT COUNT(year) FROM table_2553861_1 WHERE open_cup = "Did not qualify" AND playoffs = "National Final" |
###context:CREATE TABLE table_2553861_1 (league VARCHAR, year VARCHAR)
###human: Name the league for 2000
###assistant: SELECT league FROM table_2553861_1 WHERE year = 2000 |
###context:CREATE TABLE table_2553861_1 (league VARCHAR, playoffs VARCHAR)
###human: Name the league for conference finals
###assistant: SELECT league FROM table_2553861_1 WHERE playoffs = "Conference Finals" |
###context:CREATE TABLE table_25547943_1 (directed_by VARCHAR, written_by VARCHAR)
###human: Who directed the episode that was written by Bill Lawrence?
###assistant: SELECT directed_by FROM table_25547943_1 WHERE written_by = "Bill Lawrence" |
###context:CREATE TABLE table_2554479_2 (series VARCHAR, season VARCHAR)
###human: Name the series result for season being 1998
###assistant: SELECT series AS result FROM table_2554479_2 WHERE season = "1998" |
###context:CREATE TABLE table_2554479_2 (tests_won_by_australia VARCHAR, series VARCHAR)
###human: Name the total number of tests won by australia for series 10
###assistant: SELECT COUNT(tests_won_by_australia) FROM table_2554479_2 WHERE series = 10 |
###context:CREATE TABLE table_25551880_2 (winner VARCHAR, mountains_classification VARCHAR)
###human: How many winners were there when the mountains classification was not awarded?
###assistant: SELECT COUNT(winner) FROM table_25551880_2 WHERE mountains_classification = "not awarded" |
###context:CREATE TABLE table_25551880_2 (mountains_classification VARCHAR, winner VARCHAR)
###human: Who was awarded mountains classifications when Mikel Nieve was the winner?
###assistant: SELECT mountains_classification FROM table_25551880_2 WHERE winner = "Mikel Nieve" |
###context:CREATE TABLE table_25551880_2 (mountains_classification VARCHAR, winner VARCHAR)
###human: Who was awarded mountains classification when Alessandro petacchi won?
###assistant: SELECT mountains_classification FROM table_25551880_2 WHERE winner = "Alessandro Petacchi" |
###context:CREATE TABLE table_25548213_1 (production_code VARCHAR, directed_by VARCHAR)
###human: List the number of episodes directed by linda mendoza.
###assistant: SELECT COUNT(production_code) FROM table_25548213_1 WHERE directed_by = "Linda Mendoza" |
###context:CREATE TABLE table_25548213_1 (us_viewers__million_ VARCHAR, written_by VARCHAR)
###human: How many million viewers watch the episode that kevin biegel & aseem batra wrote?
###assistant: SELECT us_viewers__million_ FROM table_25548213_1 WHERE written_by = "Kevin Biegel & Aseem Batra" |
###context:CREATE TABLE table_25548213_1 (series__number INTEGER, us_viewers__million_ VARCHAR)
###human: What is the series number that had 5.31 million viewers?
###assistant: SELECT MAX(series__number) FROM table_25548213_1 WHERE us_viewers__million_ = "5.31" |
###context:CREATE TABLE table_25548213_1 (title VARCHAR, directed_by VARCHAR)
###human: What was the name of the episode that bill lawrence directed?
###assistant: SELECT title FROM table_25548213_1 WHERE directed_by = "Bill Lawrence" |
###context:CREATE TABLE table_25548213_1 (title VARCHAR, us_viewers__million_ VARCHAR)
###human: What was the name of the episode that had 4.65 million viewers?
###assistant: SELECT title FROM table_25548213_1 WHERE us_viewers__million_ = "4.65" |
###context:CREATE TABLE table_25548505_1 (production_code VARCHAR, directed_by VARCHAR)
###human: What is the production code of the episode directed by Michael McDonald?
###assistant: SELECT production_code FROM table_25548505_1 WHERE directed_by = "Michael McDonald" |
###context:CREATE TABLE table_25548505_1 (original_air_date VARCHAR, us_viewers__millions_ VARCHAR)
###human: What was the original air date of the episode that had 5.30 million U.S. viewers?
###assistant: SELECT original_air_date FROM table_25548505_1 WHERE us_viewers__millions_ = "5.30" |
###context:CREATE TABLE table_25548505_1 (title VARCHAR, directed_by VARCHAR)
###human: What is the title of the episode directed by Linda Mendoza?
###assistant: SELECT title FROM table_25548505_1 WHERE directed_by = "Linda Mendoza" |
###context:CREATE TABLE table_255602_1 (type VARCHAR, area__km²_ VARCHAR)
###human: What are all the political types where area is 155.77?
###assistant: SELECT type FROM table_255602_1 WHERE area__km²_ = "155.77" |
###context:CREATE TABLE table_255602_1 (no_of_barangays INTEGER, type VARCHAR)
###human: What is the minimum number of barangays where the type is component city?
###assistant: SELECT MIN(no_of_barangays) FROM table_255602_1 WHERE type = "Component City" |
###context:CREATE TABLE table_255602_1 (city__municipality VARCHAR, area__km²_ VARCHAR)
###human: What city/municipality has area of 176.40?
###assistant: SELECT city__municipality FROM table_255602_1 WHERE area__km²_ = "176.40" |
###context:CREATE TABLE table_255602_1 (area__km²_ VARCHAR, population__2010_ VARCHAR)
###human: What is the area where population in 2010 is 38062?
###assistant: SELECT area__km²_ FROM table_255602_1 WHERE population__2010_ = 38062 |
###context:CREATE TABLE table_255602_1 (pop_density__per_km²_ VARCHAR, area__km²_ VARCHAR)
###human: What is the population density where area is 48.67?
###assistant: SELECT COUNT(pop_density__per_km²_) FROM table_255602_1 WHERE area__km²_ = "48.67" |
###context:CREATE TABLE table_25557556_5 (couple VARCHAR, average VARCHAR)
###human: What couple averaged 21.0?
###assistant: SELECT couple FROM table_25557556_5 WHERE average = "21.0" |
###context:CREATE TABLE table_25557556_5 (number_of_dances INTEGER, competition_finish VARCHAR)
###human: What was the number of dances for the competition finish of 3?
###assistant: SELECT MAX(number_of_dances) FROM table_25557556_5 WHERE competition_finish = 3 |
###context:CREATE TABLE table_25557880_1 (wins INTEGER)
###human: What was his minimum number wins in a single year?
###assistant: SELECT MIN(wins) FROM table_25557880_1 |
###context:CREATE TABLE table_25557880_1 (series VARCHAR, position VARCHAR)
###human: In which series was his position NC† ?
###assistant: SELECT series FROM table_25557880_1 WHERE position = "NC†" |
###context:CREATE TABLE table_25557880_1 (position VARCHAR, points VARCHAR)
###human: What was his position when he garnered 38 points?
###assistant: SELECT position FROM table_25557880_1 WHERE points = "38" |
###context:CREATE TABLE table_25561560_3 (sail_number VARCHAR, yacht VARCHAR)
###human: What was the sail number of Two True?
###assistant: SELECT sail_number FROM table_25561560_3 WHERE yacht = "Two True" |
###context:CREATE TABLE table_25561560_3 (yacht VARCHAR, skipper VARCHAR)
###human: What yacht did Andrew Saies sail on?
###assistant: SELECT yacht FROM table_25561560_3 WHERE skipper = "Andrew Saies" |
###context:CREATE TABLE table_25561560_2 (position VARCHAR, skipper VARCHAR)
###human: In what position did skipper Mark Richards place?
###assistant: SELECT position FROM table_25561560_2 WHERE skipper = "Mark Richards" |
###context:CREATE TABLE table_25561560_2 (yacht VARCHAR)
###human: What is the yacht type of Icap Leopard?
###assistant: SELECT yacht AS type FROM table_25561560_2 WHERE yacht = "ICAP Leopard" |
###context:CREATE TABLE table_25561560_2 (skipper VARCHAR, sail_number VARCHAR)
###human: what skipper has the sail number aus60000?
###assistant: SELECT skipper FROM table_25561560_2 WHERE sail_number = "AUS60000" |
###context:CREATE TABLE table_25580292_13 (aggressive_rider VARCHAR, winner VARCHAR)
###human: Who was the aggressive rider when the winner was luis león sánchez?
###assistant: SELECT aggressive_rider FROM table_25580292_13 WHERE winner = "Luis León Sánchez" |
###context:CREATE TABLE table_25580292_13 (aggressive_rider VARCHAR, sprint_classification VARCHAR, mountains_classification VARCHAR)
###human: Who was the aggressive rider when the sprint classification was andré greipel and mountains classification was timothy roe?
###assistant: SELECT aggressive_rider FROM ... |
###context:CREATE TABLE table_25580292_13 (stage VARCHAR, winner VARCHAR)
###human: What was the stage when the winner was luis león sánchez?
###assistant: SELECT stage FROM table_25580292_13 WHERE winner = "Luis León Sánchez" |
###context:CREATE TABLE table_25580292_13 (young_rider_classification VARCHAR, winner VARCHAR)
###human: What was the young rider classification when manuel cardoso was the winner?
###assistant: SELECT young_rider_classification FROM table_25580292_13 WHERE winner = "Manuel Cardoso" |
###context:CREATE TABLE table_25580292_13 (winner VARCHAR, stage VARCHAR)
###human: How many winners were there for stage 5?
###assistant: SELECT COUNT(winner) FROM table_25580292_13 WHERE stage = 5 |
###context:CREATE TABLE table_255829_1 (population__2007_ VARCHAR, municipality VARCHAR)
###human: What is the 2007 population of Gigmoto?
###assistant: SELECT COUNT(population__2007_) FROM table_255829_1 WHERE municipality = "Gigmoto" |
###context:CREATE TABLE table_255829_1 (population__2010_ VARCHAR, no_of_barangays VARCHAR)
###human: What is the 2010 population of the municipality with 31 barangays?
###assistant: SELECT population__2010_ FROM table_255829_1 WHERE no_of_barangays = 31 |
###context:CREATE TABLE table_255829_1 (pop_density__per_km_2__ VARCHAR, municipality VARCHAR)
###human: What is the population density of Caramoran?
###assistant: SELECT pop_density__per_km_2__ FROM table_255829_1 WHERE municipality = "Caramoran" |
###context:CREATE TABLE table_255829_1 (municipality VARCHAR, pop_density__per_km_2__ VARCHAR)
###human: What municipality has a 130.6 pupulation density?
###assistant: SELECT municipality FROM table_255829_1 WHERE pop_density__per_km_2__ = "130.6" |
###context:CREATE TABLE table_255885_1 (no_of_s_barangay VARCHAR, municipality VARCHAR)
###human: What is the number of S Barangay for Paracale?
###assistant: SELECT no_of_s_barangay FROM table_255885_1 WHERE municipality = "Paracale" |
###context:CREATE TABLE table_255885_1 (municipality VARCHAR, area__km²_ VARCHAR)
###human: What is the municipality that has an area of exactly 199.35 sq. km?
###assistant: SELECT municipality FROM table_255885_1 WHERE area__km²_ = "199.35" |
###context:CREATE TABLE table_255885_1 (municipality VARCHAR, area__km²_ VARCHAR)
###human: What is the municipality that has an area of exactly 214.44 sq. km?
###assistant: SELECT municipality FROM table_255885_1 WHERE area__km²_ = "214.44" |
###context:CREATE TABLE table_25572118_1 (winning_team VARCHAR, series VARCHAR)
###human: When fr2.0 9 is the series who is the winning team?
###assistant: SELECT winning_team FROM table_25572118_1 WHERE series = "FR2.0 9" |
###context:CREATE TABLE table_25572118_1 (date VARCHAR, winning_driver VARCHAR)
###human: When fairuz fauzy is the winning driver what is the date?
###assistant: SELECT date FROM table_25572118_1 WHERE winning_driver = "Fairuz Fauzy" |
###context:CREATE TABLE table_25572118_1 (date VARCHAR, series VARCHAR)
###human: When emt 9 is the series what is the date?
###assistant: SELECT date FROM table_25572118_1 WHERE series = "EMT 9" |
###context:CREATE TABLE table_25594271_1 (state_country VARCHAR, race_number VARCHAR)
###human: what are all the state/nation where the race number is 36
###assistant: SELECT state_country FROM table_25594271_1 WHERE race_number = "36" |
###context:CREATE TABLE table_25594888_1 (state_country VARCHAR, skipper VARCHAR)
###human: What State/Country is Sean Langman the skipper?
###assistant: SELECT state_country FROM table_25594888_1 WHERE skipper = "Sean Langman" |
###context:CREATE TABLE table_25594888_1 (yacht VARCHAR, skipper VARCHAR)
###human: What yacht type is involved where Bob Oatley is the skipper?
###assistant: SELECT yacht AS type FROM table_25594888_1 WHERE skipper = "Bob Oatley" |
###context:CREATE TABLE table_25594888_1 (race_number VARCHAR, yacht VARCHAR)
###human: How many races was Loki in?
###assistant: SELECT COUNT(race_number) FROM table_25594888_1 WHERE yacht = "Loki" |
###context:CREATE TABLE table_25595107_1 (loa__metres_ VARCHAR, skipper VARCHAR)
###human: What were the LOA (metres) for the yacht where the skipper was Jez Fanstone?
###assistant: SELECT loa__metres_ FROM table_25595107_1 WHERE skipper = "Jez Fanstone" |
###context:CREATE TABLE table_25595107_1 (state_country VARCHAR, loa__metres_ VARCHAR)
###human: What state/country was the yacht from that had 15.79 LOA (metres)?
###assistant: SELECT state_country FROM table_25595107_1 WHERE loa__metres_ = "15.79" |
###context:CREATE TABLE table_25595209_1 (sail_number VARCHAR, skipper VARCHAR)
###human: What is Matt Allen's sail number?
###assistant: SELECT sail_number FROM table_25595209_1 WHERE skipper = "Matt Allen" |
###context:CREATE TABLE table_25595209_1 (loa__metres_ VARCHAR, yacht VARCHAR)
###human: What is the LOA of Brindabella?
###assistant: SELECT loa__metres_ FROM table_25595209_1 WHERE yacht = "Brindabella" |
###context:CREATE TABLE table_25595209_1 (state_country VARCHAR, loa__metres_ VARCHAR)
###human: What the is the state that the boat is from with LOA of 19.50?
###assistant: SELECT state_country FROM table_25595209_1 WHERE loa__metres_ = "19.50" |
###context:CREATE TABLE table_25595209_1 (state_country VARCHAR, skipper VARCHAR)
###human: How many states is Grant Wharington from?
###assistant: SELECT COUNT(state_country) FROM table_25595209_1 WHERE skipper = "Grant Wharington" |
###context:CREATE TABLE table_25597136_1 (current_status VARCHAR, date_first_lit VARCHAR)
###human: The date first lit is 1853 total number of current status.
###assistant: SELECT COUNT(current_status) FROM table_25597136_1 WHERE date_first_lit = "1853" |
###context:CREATE TABLE table_25597136_1 (focal_plane_in_ft__m_ VARCHAR, location VARCHAR)
###human: Location for focal plane in ft (m) is naidi hills, basco.
###assistant: SELECT focal_plane_in_ft__m_ FROM table_25597136_1 WHERE location = "Naidi Hills, Basco" |
###context:CREATE TABLE table_25597136_1 (date_first_lit VARCHAR, focal_plane_in_ft__m_ VARCHAR)
###human: Focal plane in ft (m) is 43ft (13.1m) is the first date lit.
###assistant: SELECT date_first_lit FROM table_25597136_1 WHERE focal_plane_in_ft__m_ = "43ft (13.1m)" |
###context:CREATE TABLE table_25597136_1 (province_city VARCHAR, lighthouse VARCHAR)
###human: The province/city corregidor island (2) is where the lighthouse is located.
###assistant: SELECT province_city FROM table_25597136_1 WHERE lighthouse = "Corregidor Island (2)" |
###context:CREATE TABLE table_25597136_1 (focal_plane_in_ft__m_ VARCHAR, tower_height_in_ft__m_ VARCHAR)
###human: Where tower height in ft (m) is 46ft (14.0m) the focal plane is ft (m).
###assistant: SELECT focal_plane_in_ft__m_ FROM table_25597136_1 WHERE tower_height_in_ft__m_ = "46ft (14.0m)" |
###context:CREATE TABLE table_25604014_6 (no_in_series VARCHAR, directed_by VARCHAR, no_in_season VARCHAR)
###human: What are the number in series of the pieces directed by Win Phelps and which number in season is 11?
###assistant: SELECT no_in_series FROM table_25604014_6 WHERE directed_by = "Win Phelps" AND n... |
###context:CREATE TABLE table_25604014_6 (title VARCHAR, no_in_season VARCHAR)
###human: What are the titles of the pieces that are number 2 in season?
###assistant: SELECT title FROM table_25604014_6 WHERE no_in_season = 2 |
###context:CREATE TABLE table_25604014_4 (production_code VARCHAR, directed_by VARCHAR)
###human: What is the production code for the episode directed by Sam weisman?
###assistant: SELECT production_code FROM table_25604014_4 WHERE directed_by = "Sam Weisman" |
###context:CREATE TABLE table_25604014_5 (written_by VARCHAR, no_in_series VARCHAR)
###human: Who wrote episode number 81 in the series?
###assistant: SELECT written_by FROM table_25604014_5 WHERE no_in_series = 81 |
###context:CREATE TABLE table_25604014_5 (no_in_season VARCHAR, directed_by VARCHAR)
###human: How many episodes directed by david carson?
###assistant: SELECT COUNT(no_in_season) FROM table_25604014_5 WHERE directed_by = "David Carson" |
###context:CREATE TABLE table_25604014_5 (directed_by VARCHAR, production_code VARCHAR)
###human: Who direcred the episode with production code 7d03?
###assistant: SELECT directed_by FROM table_25604014_5 WHERE production_code = "7D03" |
###context:CREATE TABLE table_2562572_19 (settlement VARCHAR, population__2011_ VARCHAR)
###human: In what settlement is the population 1114?
###assistant: SELECT settlement FROM table_2562572_19 WHERE population__2011_ = 1114 |
###context:CREATE TABLE table_2562572_19 (type VARCHAR, settlement VARCHAR)
###human: What type is the settlement of Lok?
###assistant: SELECT type FROM table_2562572_19 WHERE settlement = "Lok" |
###context:CREATE TABLE table_2562572_12 (population__2011_ VARCHAR, settlement VARCHAR)
###human: How many populations are listed for mladenovo?
###assistant: SELECT COUNT(population__2011_) FROM table_2562572_12 WHERE settlement = "Mladenovo" |
###context:CREATE TABLE table_2562572_12 (dominant_religion__2002_ VARCHAR, population__2011_ VARCHAR)
###human: What is the dominate religion in the location with a population of 4831?
###assistant: SELECT dominant_religion__2002_ FROM table_2562572_12 WHERE population__2011_ = 4831 |
###context:CREATE TABLE table_2562113_1 (type VARCHAR, institution VARCHAR)
###human: What type of institution is San Diego Christian college?
###assistant: SELECT type FROM table_2562113_1 WHERE institution = "San Diego Christian College" |
###context:CREATE TABLE table_2562113_1 (enrollment INTEGER, nickname VARCHAR)
###human: What is the enrollment for the hawks?
###assistant: SELECT MAX(enrollment) FROM table_2562113_1 WHERE nickname = "Hawks" |
###context:CREATE TABLE table_2562113_1 (enrollment INTEGER, joined VARCHAR)
###human: What is the enrollment for the institution that joined in 1987?
###assistant: SELECT MIN(enrollment) FROM table_2562113_1 WHERE joined = 1987 |
###context:CREATE TABLE table_2562113_1 (location VARCHAR, nickname VARCHAR)
###human: What is the location of the institution nicknamed Lions?
###assistant: SELECT location FROM table_2562113_1 WHERE nickname = "Lions" |
###context:CREATE TABLE table_2562572_2 (population__2011_ VARCHAR, cyrillic_name VARCHAR)
###human: How many 2011 populations have a Cyrillic name of футог?
###assistant: SELECT COUNT(population__2011_) FROM table_2562572_2 WHERE cyrillic_name = "Футог" |
###context:CREATE TABLE table_2562572_2 (population__2002_ VARCHAR, population__2011_ VARCHAR)
###human: What is the number of 2002 populations having a 2011 population of exactly 5399?
###assistant: SELECT COUNT(population__2002_) FROM table_2562572_2 WHERE population__2011_ = 5399 |
###context:CREATE TABLE table_2562572_2 (population__1991_ VARCHAR, city___municipality VARCHAR)
###human: What is the number of 1991 populations named Bečej?
###assistant: SELECT COUNT(population__1991_) FROM table_2562572_2 WHERE city___municipality = "Bečej" |
###context:CREATE TABLE table_2562572_2 (population__1991_ VARCHAR, urban_settlement VARCHAR)
###human: What is the 1991 population for the urban settlement named Bački Jarak?
###assistant: SELECT population__1991_ FROM table_2562572_2 WHERE urban_settlement = "Bački Jarak" |
###context:CREATE TABLE table_2562572_2 (population__2011_ VARCHAR, population__2002_ VARCHAR)
###human: What is the number of 2011 populations having a 2002 population of 29449?
###assistant: SELECT COUNT(population__2011_) FROM table_2562572_2 WHERE population__2002_ = 29449 |
###context:CREATE TABLE table_2562572_2 (city___municipality VARCHAR, urban_settlement VARCHAR)
###human: What is the number of cities/municipalities having an urban settlement of Srbobran?
###assistant: SELECT COUNT(city___municipality) FROM table_2562572_2 WHERE urban_settlement = "Srbobran" |
###context:CREATE TABLE table_2562572_25 (settlement VARCHAR, type VARCHAR)
###human: When town is the type what is the settlement?
###assistant: SELECT settlement FROM table_2562572_25 WHERE type = "town" |
###context:CREATE TABLE table_2562572_25 (type VARCHAR, cyrillic_name_other_names VARCHAR)
###human: When оџаци is the cyrillic name other names what is the type?
###assistant: SELECT type FROM table_2562572_25 WHERE cyrillic_name_other_names = "Оџаци" |
###context:CREATE TABLE table_2562572_25 (cyrillic_name_other_names VARCHAR, settlement VARCHAR)
###human: When ratkovo is the settlement what is the cyrllic name other names?
###assistant: SELECT cyrillic_name_other_names FROM table_2562572_25 WHERE settlement = "Ratkovo" |
###context:CREATE TABLE table_2562572_25 (settlement VARCHAR, cyrillic_name_other_names VARCHAR, dominant_religion__2002_ VARCHAR, type VARCHAR)
###human: When ратково is cyrillic name other names and village is the type and orthodox Christianity is the dominant religion of 2002 what is the settlement?
###as... |
###context:CREATE TABLE table_2562572_25 (largest_ethnic_group__2002_ VARCHAR, cyrillic_name_other_names VARCHAR)
###human: When дероње is the cyrillic name other names what is the largest ethnic group of 2002?
###assistant: SELECT largest_ethnic_group__2002_ FROM table_2562572_25 WHERE cyrillic_name_other_name... |
###context:CREATE TABLE table_2562572_27 (largest_ethnic_group__2002_ VARCHAR, settlement VARCHAR)
###human: What are the largest ethnic groups in gunaroš?
###assistant: SELECT largest_ethnic_group__2002_ FROM table_2562572_27 WHERE settlement = "Gunaroš" |
###context:CREATE TABLE table_2562572_27 (largest_ethnic_group__2002_ VARCHAR, cyrillic_name_other_names VARCHAR)
###human: What are the largest ethnic groups where the cyrillic name and other names is пачир (hungarian: pacsér)?
###assistant: SELECT largest_ethnic_group__2002_ FROM table_2562572_27 WHERE cyrill... |
###context:CREATE TABLE table_2562572_27 (settlement VARCHAR, cyrillic_name_other_names VARCHAR)
###human: How many places have as their cyrillic name and other names његошево?
###assistant: SELECT COUNT(settlement) FROM table_2562572_27 WHERE cyrillic_name_other_names = "Његошево" |
###context:CREATE TABLE table_2562572_27 (dominant_religion__2002_ VARCHAR, population__2011_ VARCHAR)
###human: What are the dominant religions in the place with a population of 83?
###assistant: SELECT dominant_religion__2002_ FROM table_2562572_27 WHERE population__2011_ = "83" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.