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