id int64 0 9.43k | db_id stringclasses 69
values | schema stringclasses 69
values | question stringlengths 24 325 | output stringlengths 23 804 | evidence stringlengths 0 673 | filtered_schema listlengths 0 16 |
|---|---|---|---|---|---|---|
8,300 | mondial_geo | CREATE TABLE "borders"
(
Country1 TEXT default '' not null
constraint borders_ibfk_1
references country,
Country2 TEXT default '' not null
constraint borders_ibfk_2
references country,
Length REAL,
primary key (Country1, Country2)
);
CREATE TABLE "city"
(
N... | Please list the mountains in the country with the lowest inflation rate. | SELECT Mountain FROM geo_mountain WHERE Country = ( SELECT Country FROM economy ORDER BY Inflation ASC LIMIT 1 ) | [
"economy.Country",
"economy.Inflation"
] | |
8,301 | mondial_geo | CREATE TABLE "borders"
(
Country1 TEXT default '' not null
constraint borders_ibfk_1
references country,
Country2 TEXT default '' not null
constraint borders_ibfk_2
references country,
Length REAL,
primary key (Country1, Country2)
);
CREATE TABLE "city"
(
N... | Among the independent countries whose type of government is republic, what is the biggest number of deserts they have? | SELECT COUNT(T3.Desert) FROM country AS T1 INNER JOIN politics AS T2 ON T1.Code = T2.Country INNER JOIN geo_desert AS T3 ON T3.Country = T2.Country WHERE T2.Government = 'republic' | [
"country.Code",
"geo_desert.Country",
"geo_desert.Desert",
"politics.Country",
"politics.Government"
] | |
8,302 | mondial_geo | CREATE TABLE "borders"
(
Country1 TEXT default '' not null
constraint borders_ibfk_1
references country,
Country2 TEXT default '' not null
constraint borders_ibfk_2
references country,
Length REAL,
primary key (Country1, Country2)
);
CREATE TABLE "city"
(
N... | Please list the deserts in the countries whose population is over 100000 and covers an area of under 500000. | SELECT T2.Desert FROM country AS T1 INNER JOIN geo_desert AS T2 ON T1.Code = T2.Country WHERE T1.Area > 100000 AND T1.Population < 500000 | [
"country.Area",
"country.Code",
"country.Population",
"geo_desert.Country",
"geo_desert.Desert"
] | |
8,303 | mondial_geo | CREATE TABLE "borders"
(
Country1 TEXT default '' not null
constraint borders_ibfk_1
references country,
Country2 TEXT default '' not null
constraint borders_ibfk_2
references country,
Length REAL,
primary key (Country1, Country2)
);
CREATE TABLE "city"
(
N... | How many deserts are there in a country where over 90% of people speaks Armenian? | SELECT COUNT(T2.Desert) FROM country AS T1 INNER JOIN geo_desert AS T2 ON T1.Code = T2.Country INNER JOIN language AS T3 ON T1.Code = T2.Country WHERE T3.Name = 'Armenian' AND T3.Percentage > 90 | [
"country.Code",
"geo_desert.Country",
"geo_desert.Desert",
"language.Name",
"language.Percentage"
] | |
8,304 | mondial_geo | CREATE TABLE "borders"
(
Country1 TEXT default '' not null
constraint borders_ibfk_1
references country,
Country2 TEXT default '' not null
constraint borders_ibfk_2
references country,
Length REAL,
primary key (Country1, Country2)
);
CREATE TABLE "city"
(
N... | Which mountain is the highest in an independent country? | SELECT T4.Name FROM country AS T1 INNER JOIN politics AS T2 ON T1.Code = T2.Country INNER JOIN geo_mountain AS T3 ON T3.Country = T2.Country INNER JOIN mountain AS T4 ON T4.Name = T3.Mountain WHERE T2.Independence IS NOT NULL ORDER BY T4.Height DESC LIMIT 1 | [
"country.Code",
"geo_mountain.Country",
"geo_mountain.Mountain",
"mountain.Height",
"mountain.Name",
"politics.Country",
"politics.Independence"
] | |
8,305 | mondial_geo | CREATE TABLE "borders"
(
Country1 TEXT default '' not null
constraint borders_ibfk_1
references country,
Country2 TEXT default '' not null
constraint borders_ibfk_2
references country,
Length REAL,
primary key (Country1, Country2)
);
CREATE TABLE "city"
(
N... | How many volcanic mountains are there in countries whose population is no more than 5000000? | SELECT COUNT(DISTINCT T3.Name) FROM country AS T1 INNER JOIN geo_mountain AS T2 ON T1.Code = T2.Country INNER JOIN mountain AS T3 ON T3.Name = T2.Mountain WHERE T3.Type = 'volcanic' AND T1.Population <= 5000000 | [
"country.Code",
"country.Population",
"geo_mountain.Country",
"geo_mountain.Mountain",
"mountain.Name",
"mountain.Type"
] | |
8,306 | mondial_geo | CREATE TABLE "borders"
(
Country1 TEXT default '' not null
constraint borders_ibfk_1
references country,
Country2 TEXT default '' not null
constraint borders_ibfk_2
references country,
Length REAL,
primary key (Country1, Country2)
);
CREATE TABLE "city"
(
N... | Among the countries with a GDP of over 1000000, how many of them have mountains higher than 1000? | SELECT COUNT(DISTINCT T1.Name) FROM country AS T1 INNER JOIN geo_mountain AS T2 ON T1.Code = T2.Country INNER JOIN economy AS T3 ON T3.Country = T1.Code INNER JOIN mountain AS T4 ON T4.Name = T2.Mountain WHERE T3.GDP > 1000000 AND T4.Height > 1000 | [
"country.Code",
"country.Name",
"economy.Country",
"economy.GDP",
"geo_mountain.Country",
"geo_mountain.Mountain",
"mountain.Height",
"mountain.Name"
] | |
8,307 | mondial_geo | CREATE TABLE "borders"
(
Country1 TEXT default '' not null
constraint borders_ibfk_1
references country,
Country2 TEXT default '' not null
constraint borders_ibfk_2
references country,
Length REAL,
primary key (Country1, Country2)
);
CREATE TABLE "city"
(
N... | What is the greatest length of the border between 2 independent countries? | SELECT MAX(T3.Length) FROM country AS T1 INNER JOIN politics AS T2 ON T1.Code = T2.Country INNER JOIN borders AS T3 ON T3.Country1 = T2.Country WHERE T2.Independence IS NOT NULL | [
"borders.Country1",
"borders.Length",
"country.Code",
"politics.Country",
"politics.Independence"
] | |
8,308 | mondial_geo | CREATE TABLE "borders"
(
Country1 TEXT default '' not null
constraint borders_ibfk_1
references country,
Country2 TEXT default '' not null
constraint borders_ibfk_2
references country,
Length REAL,
primary key (Country1, Country2)
);
CREATE TABLE "city"
(
N... | Among the countries whose government type is republic, how many of them shares a border that's longer than 200? | SELECT COUNT(DISTINCT T1.Name) FROM country AS T1 INNER JOIN politics AS T2 ON T1.Code = T2.Country INNER JOIN borders AS T3 ON T3.Country1 = T2.Country WHERE T2.Government = 'republic' AND T3.Length > 200 | [
"borders.Country1",
"borders.Length",
"country.Code",
"country.Name",
"politics.Country",
"politics.Government"
] | |
8,309 | mondial_geo | CREATE TABLE "borders"
(
Country1 TEXT default '' not null
constraint borders_ibfk_1
references country,
Country2 TEXT default '' not null
constraint borders_ibfk_2
references country,
Length REAL,
primary key (Country1, Country2)
);
CREATE TABLE "city"
(
N... | Please list the countries that share the shortest border. | SELECT T1.Name FROM country AS T1 INNER JOIN borders AS T2 ON T1.Code = T2.Country1 ORDER BY T2.Length ASC LIMIT 1 | [
"borders.Country1",
"borders.Length",
"country.Code",
"country.Name"
] | |
8,310 | mondial_geo | CREATE TABLE "borders"
(
Country1 TEXT default '' not null
constraint borders_ibfk_1
references country,
Country2 TEXT default '' not null
constraint borders_ibfk_2
references country,
Length REAL,
primary key (Country1, Country2)
);
CREATE TABLE "city"
(
N... | What is the GDP of the European Continent? | SELECT SUM(T4.GDP) FROM country AS T1 INNER JOIN encompasses AS T2 ON T1.Code = T2.Country INNER JOIN continent AS T3 ON T3.Name = T2.Continent INNER JOIN economy AS T4 ON T4.Country = T1.Code WHERE T3.Name = 'Europe' | [
"continent.Name",
"country.Code",
"economy.Country",
"economy.GDP",
"encompasses.Continent",
"encompasses.Country"
] | |
8,311 | mondial_geo | CREATE TABLE "borders"
(
Country1 TEXT default '' not null
constraint borders_ibfk_1
references country,
Country2 TEXT default '' not null
constraint borders_ibfk_2
references country,
Length REAL,
primary key (Country1, Country2)
);
CREATE TABLE "city"
(
N... | How many mountains are there on the African Continent? | SELECT COUNT(T3.Name) FROM country AS T1 INNER JOIN encompasses AS T2 ON T1.Code = T2.Country INNER JOIN continent AS T3 ON T3.Name = T2.Continent INNER JOIN province AS T4 ON T4.Country = T1.Code INNER JOIN geo_mountain AS T5 ON T5.Province = T4.Name WHERE T3.Name = 'European' | [
"continent.Name",
"country.Code",
"encompasses.Continent",
"encompasses.Country",
"geo_mountain.Province",
"province.Country",
"province.Name"
] | |
8,312 | mondial_geo | CREATE TABLE "borders"
(
Country1 TEXT default '' not null
constraint borders_ibfk_1
references country,
Country2 TEXT default '' not null
constraint borders_ibfk_2
references country,
Length REAL,
primary key (Country1, Country2)
);
CREATE TABLE "city"
(
N... | Of the deserts on the America Continent, which one covers the greatest area? | SELECT T5.Name FROM country AS T1 INNER JOIN encompasses AS T2 ON T1.Code = T2.Country INNER JOIN continent AS T3 ON T3.Name = T2.Continent INNER JOIN geo_desert AS T4 ON T4.Country = T1.Code INNER JOIN desert AS T5 ON T5.Name = T4.Desert WHERE T3.Name = 'America' ORDER BY T5.Area DESC LIMIT 1 | [
"continent.Name",
"country.Code",
"desert.Area",
"desert.Name",
"encompasses.Continent",
"encompasses.Country",
"geo_desert.Country",
"geo_desert.Desert"
] | |
8,313 | mondial_geo | CREATE TABLE "borders"
(
Country1 TEXT default '' not null
constraint borders_ibfk_1
references country,
Country2 TEXT default '' not null
constraint borders_ibfk_2
references country,
Length REAL,
primary key (Country1, Country2)
);
CREATE TABLE "city"
(
N... | Please list the countries on the European Continent that have a population growth of more than 3%. | SELECT T2.Country FROM country AS T1 INNER JOIN encompasses AS T2 ON T1.Code = T2.Country INNER JOIN continent AS T3 ON T3.Name = T2.Continent INNER JOIN population AS T4 ON T4.Country = T1.Code WHERE T3.Name = 'Europe' AND T4.Population_Growth > 0.03 | [
"continent.Name",
"country.Code",
"encompasses.Continent",
"encompasses.Country",
"population.Country",
"population.Population_Growth"
] | |
8,314 | mondial_geo | CREATE TABLE "borders"
(
Country1 TEXT default '' not null
constraint borders_ibfk_1
references country,
Country2 TEXT default '' not null
constraint borders_ibfk_2
references country,
Length REAL,
primary key (Country1, Country2)
);
CREATE TABLE "city"
(
N... | How many countries on the European Continent has an infant mortality rate per thousand of over 100? | SELECT COUNT(T1.Name) FROM country AS T1 INNER JOIN encompasses AS T2 ON T1.Code = T2.Country INNER JOIN continent AS T3 ON T3.Name = T2.Continent INNER JOIN population AS T4 ON T4.Country = T1.Code WHERE T3.Name = 'Europe' AND T4.Infant_Mortality < 100 | [
"continent.Name",
"country.Code",
"country.Name",
"encompasses.Continent",
"encompasses.Country",
"population.Country",
"population.Infant_Mortality"
] | |
8,315 | mondial_geo | CREATE TABLE "borders"
(
Country1 TEXT default '' not null
constraint borders_ibfk_1
references country,
Country2 TEXT default '' not null
constraint borders_ibfk_2
references country,
Length REAL,
primary key (Country1, Country2)
);
CREATE TABLE "city"
(
N... | Among the countries that use Bosnian as their language, how many of them don't have a positive population growth rate? | SELECT COUNT(DISTINCT T1.Name) FROM country AS T1 INNER JOIN language AS T2 ON T1.Code = T2.Country INNER JOIN population AS T3 ON T3.Country = T2.Country WHERE T2.Name = 'Bosnian' AND T3.Population_Growth < 0 | [
"country.Code",
"country.Name",
"language.Country",
"language.Name",
"population.Country",
"population.Population_Growth"
] | |
8,316 | mondial_geo | CREATE TABLE "borders"
(
Country1 TEXT default '' not null
constraint borders_ibfk_1
references country,
Country2 TEXT default '' not null
constraint borders_ibfk_2
references country,
Length REAL,
primary key (Country1, Country2)
);
CREATE TABLE "city"
(
N... | What is the average percentage of agriculture of GDP in countries on the African Continent? | SELECT AVG(T4.Agriculture) FROM continent AS T1 INNER JOIN encompasses AS T2 ON T1.Name = T2.Continent INNER JOIN country AS T3 ON T3.Code = T2.Country INNER JOIN economy AS T4 ON T4.Country = T3.Code WHERE T1.Name = 'Africa' | [
"continent.Name",
"country.Code",
"economy.Agriculture",
"economy.Country",
"encompasses.Continent",
"encompasses.Country"
] | |
8,317 | mondial_geo | CREATE TABLE "borders"
(
Country1 TEXT default '' not null
constraint borders_ibfk_1
references country,
Country2 TEXT default '' not null
constraint borders_ibfk_2
references country,
Length REAL,
primary key (Country1, Country2)
);
CREATE TABLE "city"
(
N... | Among the independent countries, how many of them has a GDP per capita of over 5000? | SELECT COUNT(DISTINCT T1.Name) FROM country AS T1 INNER JOIN politics AS T2 ON T1.Code = T2.Country INNER JOIN economy AS T3 ON T3.Country = T2.Country WHERE T2.Independence IS NOT NULL AND T3.GDP > 5000 | [
"country.Code",
"country.Name",
"economy.Country",
"economy.GDP",
"politics.Country",
"politics.Independence"
] | |
8,318 | mondial_geo | CREATE TABLE "borders"
(
Country1 TEXT default '' not null
constraint borders_ibfk_1
references country,
Country2 TEXT default '' not null
constraint borders_ibfk_2
references country,
Length REAL,
primary key (Country1, Country2)
);
CREATE TABLE "city"
(
N... | What is the average inflation rate of the biggest continent? | SELECT AVG(T4.Inflation) FROM continent AS T1 INNER JOIN encompasses AS T2 ON T1.Name = T2.Continent INNER JOIN country AS T3 ON T3.Code = T2.Country INNER JOIN economy AS T4 ON T4.Country = T3.Code WHERE T1.Name = ( SELECT Name FROM continent ORDER BY Area DESC LIMIT 1 ) | [
"continent.Area",
"continent.Name",
"country.Code",
"economy.Country",
"economy.Inflation",
"encompasses.Continent",
"encompasses.Country"
] | |
8,319 | mondial_geo | CREATE TABLE "borders"
(
Country1 TEXT default '' not null
constraint borders_ibfk_1
references country,
Country2 TEXT default '' not null
constraint borders_ibfk_2
references country,
Length REAL,
primary key (Country1, Country2)
);
CREATE TABLE "city"
(
N... | Which island is city Balikpapan located on? How big is the island? | SELECT T3.Name, T3.Area FROM city AS T1 INNER JOIN locatedOn AS T2 ON T1.Name = T2.City INNER JOIN island AS T3 ON T3.Name = T2.Island WHERE T1.Name = 'Balikpapan' | [
"city.Name",
"island.Area",
"island.Name",
"locatedOn.City",
"locatedOn.Island"
] | |
8,320 | mondial_geo | CREATE TABLE "borders"
(
Country1 TEXT default '' not null
constraint borders_ibfk_1
references country,
Country2 TEXT default '' not null
constraint borders_ibfk_2
references country,
Length REAL,
primary key (Country1, Country2)
);
CREATE TABLE "city"
(
N... | List all the cities in Sumatra and state the population of each city. | SELECT T1.Name, T1.Population FROM city AS T1 INNER JOIN locatedOn AS T2 ON T1.Name = T2.City INNER JOIN island AS T3 ON T3.Name = T2.Island WHERE T3.Name = 'Sumatra' | Sumatra is an island | [
"city.Name",
"city.Population",
"island.Name",
"locatedOn.City",
"locatedOn.Island"
] |
8,321 | mondial_geo | CREATE TABLE "borders"
(
Country1 TEXT default '' not null
constraint borders_ibfk_1
references country,
Country2 TEXT default '' not null
constraint borders_ibfk_2
references country,
Length REAL,
primary key (Country1, Country2)
);
CREATE TABLE "city"
(
N... | On which island does South Yorkshire situated? State it's longtitude and latitude. | SELECT DISTINCT T3.Longitude, T3.Latitude FROM city AS T1 INNER JOIN locatedOn AS T2 ON T1.Name = T2.City INNER JOIN island AS T3 ON T3.Name = T2.Island WHERE T1.Province = 'South Yorkshire' | 'South Yorkshire' is a province | [
"city.Name",
"city.Province",
"island.Latitude",
"island.Longitude",
"island.Name",
"locatedOn.City",
"locatedOn.Island"
] |
8,322 | mondial_geo | CREATE TABLE "borders"
(
Country1 TEXT default '' not null
constraint borders_ibfk_1
references country,
Country2 TEXT default '' not null
constraint borders_ibfk_2
references country,
Length REAL,
primary key (Country1, Country2)
);
CREATE TABLE "city"
(
N... | List all islands that are greater than the island on which Warwickshire is located. | SELECT DISTINCT Name FROM island WHERE Area > ( SELECT DISTINCT T3.Area FROM city AS T1 INNER JOIN locatedOn AS T2 ON T1.Name = T2.City INNER JOIN island AS T3 ON T3.Name = T2.Island WHERE T1.Province = 'Warwickshire' ) | Warwickshire is a province | [
"city.Name",
"city.Province",
"island.Area",
"island.Name",
"locatedOn.City",
"locatedOn.Island"
] |
8,323 | mondial_geo | CREATE TABLE "borders"
(
Country1 TEXT default '' not null
constraint borders_ibfk_1
references country,
Country2 TEXT default '' not null
constraint borders_ibfk_2
references country,
Length REAL,
primary key (Country1, Country2)
);
CREATE TABLE "city"
(
N... | For island area less than 200, list the island name and city it belongs to. | SELECT DISTINCT T3.Name, T1.Name FROM city AS T1 INNER JOIN locatedOn AS T2 ON T1.Name = T2.City INNER JOIN island AS T3 ON T3.Name = T2.Island WHERE T3.Area < 200 | [
"city.Name",
"island.Area",
"island.Name",
"locatedOn.City",
"locatedOn.Island"
] | |
8,324 | mondial_geo | CREATE TABLE "borders"
(
Country1 TEXT default '' not null
constraint borders_ibfk_1
references country,
Country2 TEXT default '' not null
constraint borders_ibfk_2
references country,
Length REAL,
primary key (Country1, Country2)
);
CREATE TABLE "city"
(
N... | In which province is city Glenrothes located? What is the capital of the province? | SELECT T2.Province, T1.Capital FROM province AS T1 INNER JOIN city AS T2 ON T1.Name = T2.Province AND T1.Country = T2.Country WHERE T2.Name = 'Glenrothes' | [
"city.Country",
"city.Name",
"city.Province",
"province.Capital",
"province.Country",
"province.Name"
] | |
8,325 | mondial_geo | CREATE TABLE "borders"
(
Country1 TEXT default '' not null
constraint borders_ibfk_1
references country,
Country2 TEXT default '' not null
constraint borders_ibfk_2
references country,
Length REAL,
primary key (Country1, Country2)
);
CREATE TABLE "city"
(
N... | List the all the cities and its city population for provinces with population more than 1000000. | SELECT T1.Name, T1.Population FROM city AS T1 INNER JOIN province AS T2 ON T2.Name = T1.Province WHERE T2.Population > 1000000 | [
"city.Name",
"city.Population",
"city.Province",
"province.Name",
"province.Population"
] | |
8,326 | mondial_geo | CREATE TABLE "borders"
(
Country1 TEXT default '' not null
constraint borders_ibfk_1
references country,
Country2 TEXT default '' not null
constraint borders_ibfk_2
references country,
Length REAL,
primary key (Country1, Country2)
);
CREATE TABLE "city"
(
N... | List all the coral islands along with its city and province. | SELECT City, Province FROM locatedOn WHERE Island IN ( SELECT Name FROM island WHERE Type = 'coral' ) | Baltic Sea is a sea located in Northern Europe | [
"island.Name",
"island.Type"
] |
8,327 | mondial_geo | CREATE TABLE "borders"
(
Country1 TEXT default '' not null
constraint borders_ibfk_1
references country,
Country2 TEXT default '' not null
constraint borders_ibfk_2
references country,
Length REAL,
primary key (Country1, Country2)
);
CREATE TABLE "city"
(
N... | What is the average population for all cities location at Baltic Sea? | SELECT AVG(T1.Population) FROM city AS T1 INNER JOIN located AS T2 ON T1.Name = T2.City INNER JOIN sea AS T3 ON T3.Name = T2.Sea WHERE T3.Name = 'Baltic Sea' | Baltic Sea is a sea located in Northern Europe | [
"city.Name",
"city.Population",
"located.City",
"located.Sea",
"sea.Name"
] |
8,328 | mondial_geo | CREATE TABLE "borders"
(
Country1 TEXT default '' not null
constraint borders_ibfk_1
references country,
Country2 TEXT default '' not null
constraint borders_ibfk_2
references country,
Length REAL,
primary key (Country1, Country2)
);
CREATE TABLE "city"
(
N... | Calculate the percentage of population in Edmonton city to the population of its province. | SELECT CAST(T1.Population AS REAL) * 100 / T2.Population FROM city AS T1 INNER JOIN province AS T2 ON T1.Province = T2.Name WHERE T1.Name = 'Edmonton' | Percentage of population in each city = population(city) / population(province) * 100% | [
"city.Name",
"city.Population",
"city.Province",
"province.Name",
"province.Population"
] |
8,329 | mondial_geo | CREATE TABLE "borders"
(
Country1 TEXT default '' not null
constraint borders_ibfk_1
references country,
Country2 TEXT default '' not null
constraint borders_ibfk_2
references country,
Length REAL,
primary key (Country1, Country2)
);
CREATE TABLE "city"
(
N... | Which are the rivers that flows to Black Sea? | SELECT Name FROM river WHERE Sea = 'Black Sea' | Black Sea is a sea located in Eastern Europe and Western Asia | [
"river.Name",
"river.Sea"
] |
8,330 | mondial_geo | CREATE TABLE "borders"
(
Country1 TEXT default '' not null
constraint borders_ibfk_1
references country,
Country2 TEXT default '' not null
constraint borders_ibfk_2
references country,
Length REAL,
primary key (Country1, Country2)
);
CREATE TABLE "city"
(
N... | State the name of the lake in Albania province and in which city does it located at. | SELECT Lake, City FROM located WHERE Province = 'Albania' AND Lake IS NOT NULL | [
"located.City",
"located.Lake",
"located.Province"
] | |
8,331 | mondial_geo | CREATE TABLE "borders"
(
Country1 TEXT default '' not null
constraint borders_ibfk_1
references country,
Country2 TEXT default '' not null
constraint borders_ibfk_2
references country,
Length REAL,
primary key (Country1, Country2)
);
CREATE TABLE "city"
(
N... | Name the tallest mountain on Himalaya and what is its height. | SELECT Name, Height FROM mountain WHERE Mountains = 'Himalaya' ORDER BY Height DESC LIMIT 1 | Tallest refers to max(height) | [
"mountain.Height",
"mountain.Mountains",
"mountain.Name"
] |
8,332 | mondial_geo | CREATE TABLE "borders"
(
Country1 TEXT default '' not null
constraint borders_ibfk_1
references country,
Country2 TEXT default '' not null
constraint borders_ibfk_2
references country,
Length REAL,
primary key (Country1, Country2)
);
CREATE TABLE "city"
(
N... | List all the mountains that are volcanic along with its longitude and latitude. | SELECT Name, Latitude, Longitude FROM mountain WHERE Type = 'volcano' | [
"mountain.Latitude",
"mountain.Longitude",
"mountain.Name",
"mountain.Type"
] | |
8,333 | mondial_geo | CREATE TABLE "borders"
(
Country1 TEXT default '' not null
constraint borders_ibfk_1
references country,
Country2 TEXT default '' not null
constraint borders_ibfk_2
references country,
Length REAL,
primary key (Country1, Country2)
);
CREATE TABLE "city"
(
N... | Name all the volcano mountains between the height of 2000 to 4000. | SELECT Name FROM mountain WHERE Type = 'volcano' AND Height BETWEEN 2000 AND 4000 | [
"mountain.Height",
"mountain.Name",
"mountain.Type"
] | |
8,334 | mondial_geo | CREATE TABLE "borders"
(
Country1 TEXT default '' not null
constraint borders_ibfk_1
references country,
Country2 TEXT default '' not null
constraint borders_ibfk_2
references country,
Length REAL,
primary key (Country1, Country2)
);
CREATE TABLE "city"
(
N... | Please state the longest river that flows to the Mediterranean Sea. | SELECT Name FROM river WHERE Sea = 'Mediterranean Sea' ORDER BY Length DESC LIMIT 1 | [
"river.Length",
"river.Name",
"river.Sea"
] | |
8,335 | mondial_geo | CREATE TABLE "borders"
(
Country1 TEXT default '' not null
constraint borders_ibfk_1
references country,
Country2 TEXT default '' not null
constraint borders_ibfk_2
references country,
Length REAL,
primary key (Country1, Country2)
);
CREATE TABLE "city"
(
N... | How many percent of the mountains on Andes which are non-volcanic? | SELECT CAST(SUM(CASE WHEN type != 'volcano' THEN 1 ELSE 0 END) AS REAL) * 100 / COUNT(*) FROM mountain WHERE Mountains = 'Andes' | Percent of non-volcanic mountains = count(mountains = 'Andes' & type ! = 'volcano') / count(mountains = 'Andes') * 100% | [
"mountain.Mountains",
"mountain.type"
] |
8,336 | mondial_geo | CREATE TABLE "borders"
(
Country1 TEXT default '' not null
constraint borders_ibfk_1
references country,
Country2 TEXT default '' not null
constraint borders_ibfk_2
references country,
Length REAL,
primary key (Country1, Country2)
);
CREATE TABLE "city"
(
N... | List all the cities and provinces located at the rivers that flows to Atlantic Ocean. | SELECT T1.Name, T1.Province FROM city AS T1 INNER JOIN located AS T2 ON T1.Name = T2.City INNER JOIN river AS T3 ON T3.Name = T2.River WHERE T3.Sea = 'Atlantic Ocean' | Atlantic Ocean is the second-largest ocean on Earth, after the Pacific Ocean; Ocean and sea share the same meaning | [
"city.Name",
"city.Province",
"located.City",
"located.River",
"river.Name",
"river.Sea"
] |
8,337 | mondial_geo | CREATE TABLE "borders"
(
Country1 TEXT default '' not null
constraint borders_ibfk_1
references country,
Country2 TEXT default '' not null
constraint borders_ibfk_2
references country,
Length REAL,
primary key (Country1, Country2)
);
CREATE TABLE "city"
(
N... | What is the name and length of rivers located at 'Orleans' city? | SELECT T3.Name, T3.Length FROM city AS T1 INNER JOIN located AS T2 ON T1.Name = T2.City INNER JOIN river AS T3 ON T3.Name = T2.River WHERE T1.Name = 'Orleans' | Orleans is a city in north-central France | [
"city.Name",
"located.City",
"located.River",
"river.Length",
"river.Name"
] |
8,338 | mondial_geo | CREATE TABLE "borders"
(
Country1 TEXT default '' not null
constraint borders_ibfk_1
references country,
Country2 TEXT default '' not null
constraint borders_ibfk_2
references country,
Length REAL,
primary key (Country1, Country2)
);
CREATE TABLE "city"
(
N... | What is the height of the mountain on which river 'Lech' is located? Please also provide its longitude and latitude. | SELECT T1.Height, T1.Latitude, T1.Longitude FROM mountain AS T1 INNER JOIN geo_mountain AS T2 ON T1.Name = T2.Mountain INNER JOIN province AS T3 ON T3.Name = T2.Province INNER JOIN located AS T4 ON T4.Province = T3.Name WHERE T4.River = 'Lech' | [
"geo_mountain.Mountain",
"geo_mountain.Province",
"located.Province",
"located.River",
"mountain.Height",
"mountain.Latitude",
"mountain.Longitude",
"mountain.Name",
"province.Name"
] | |
8,339 | mondial_geo | CREATE TABLE "borders"
(
Country1 TEXT default '' not null
constraint borders_ibfk_1
references country,
Country2 TEXT default '' not null
constraint borders_ibfk_2
references country,
Length REAL,
primary key (Country1, Country2)
);
CREATE TABLE "city"
(
N... | Name the river of which Lorraine is on. Please name the mountains where to source flow from? | SELECT T1.SourceLongitude, T1.SourceLatitude, T1.SourceAltitude FROM river AS T1 INNER JOIN geo_river AS T2 ON T2.River = T1.Name WHERE T2.Province = 'Lorraine' | Lorraine is a province | [
"geo_river.Province",
"geo_river.River",
"river.Name",
"river.SourceAltitude",
"river.SourceLatitude",
"river.SourceLongitude"
] |
8,340 | mondial_geo | CREATE TABLE "borders"
(
Country1 TEXT default '' not null
constraint borders_ibfk_1
references country,
Country2 TEXT default '' not null
constraint borders_ibfk_2
references country,
Length REAL,
primary key (Country1, Country2)
);
CREATE TABLE "city"
(
N... | Which mountain does the river source Blue Nile located? State the height of the mountain. | SELECT T1.Name, T1.Height FROM mountain AS T1 INNER JOIN geo_mountain AS T2 ON T1.Name = T2.Mountain INNER JOIN province AS T3 ON T3.Name = T2.Province INNER JOIN geo_source AS T4 ON T4.Province = T3.Name WHERE T4.River = 'Blue Nile' | [
"geo_mountain.Mountain",
"geo_mountain.Province",
"geo_source.Province",
"geo_source.River",
"mountain.Height",
"mountain.Name",
"province.Name"
] | |
8,341 | mondial_geo | CREATE TABLE "borders"
(
Country1 TEXT default '' not null
constraint borders_ibfk_1
references country,
Country2 TEXT default '' not null
constraint borders_ibfk_2
references country,
Length REAL,
primary key (Country1, Country2)
);
CREATE TABLE "city"
(
N... | Name the river at Little Rock city. State the length of the river. | SELECT T3.Length FROM city AS T1 INNER JOIN located AS T2 ON T1.Name = T2.City INNER JOIN river AS T3 ON T3.Name = T2.River WHERE T1.Name = 'Little Rock' | [
"city.Name",
"located.City",
"located.River",
"river.Length",
"river.Name"
] | |
8,342 | mondial_geo | CREATE TABLE "borders"
(
Country1 TEXT default '' not null
constraint borders_ibfk_1
references country,
Country2 TEXT default '' not null
constraint borders_ibfk_2
references country,
Length REAL,
primary key (Country1, Country2)
);
CREATE TABLE "city"
(
N... | List all rivers and province it is located that is greater than 1000 in length. | SELECT T1.Province, T2.Name FROM geo_river AS T1 INNER JOIN river AS T2 ON T1.River = T2.Name WHERE T2.Length > 1000 | [
"geo_river.Province",
"geo_river.River",
"river.Length",
"river.Name"
] | |
8,343 | mondial_geo | CREATE TABLE "borders"
(
Country1 TEXT default '' not null
constraint borders_ibfk_1
references country,
Country2 TEXT default '' not null
constraint borders_ibfk_2
references country,
Length REAL,
primary key (Country1, Country2)
);
CREATE TABLE "city"
(
N... | In which province and country does Moldoveanu located? State its height. | SELECT T2.Province, T2.Country, T1.Height FROM mountain AS T1 INNER JOIN geo_mountain AS T2 ON T1.Name = T2.Mountain WHERE T1.Name = 'Moldoveanu' | Moldoveanu is a mountain | [
"geo_mountain.Country",
"geo_mountain.Mountain",
"geo_mountain.Province",
"mountain.Height",
"mountain.Name"
] |
8,344 | mondial_geo | CREATE TABLE "borders"
(
Country1 TEXT default '' not null
constraint borders_ibfk_1
references country,
Country2 TEXT default '' not null
constraint borders_ibfk_2
references country,
Length REAL,
primary key (Country1, Country2)
);
CREATE TABLE "city"
(
N... | Provide all rivers name and length in USA. | SELECT DISTINCT T3.Name, T3.Length FROM city AS T1 INNER JOIN located AS T2 ON T1.Name = T2.City INNER JOIN river AS T3 ON T3.Name = T2.River WHERE T2.Country = 'USA' | USA is a country | [
"city.Name",
"located.City",
"located.Country",
"located.River",
"river.Length",
"river.Name"
] |
8,345 | mondial_geo | CREATE TABLE "borders"
(
Country1 TEXT default '' not null
constraint borders_ibfk_1
references country,
Country2 TEXT default '' not null
constraint borders_ibfk_2
references country,
Length REAL,
primary key (Country1, Country2)
);
CREATE TABLE "city"
(
N... | What is the average height of all mountains in Nepal? | SELECT AVG(T1.Height) FROM mountain AS T1 INNER JOIN geo_mountain AS T2 ON T1.Name = T2.Mountain WHERE T2.Province = 'Nepal' | Nepal is a province | [
"geo_mountain.Mountain",
"geo_mountain.Province",
"mountain.Height",
"mountain.Name"
] |
8,346 | mondial_geo | CREATE TABLE "borders"
(
Country1 TEXT default '' not null
constraint borders_ibfk_1
references country,
Country2 TEXT default '' not null
constraint borders_ibfk_2
references country,
Length REAL,
primary key (Country1, Country2)
);
CREATE TABLE "city"
(
N... | For all cities where Seine is located at, which city has the greatest population? Calculate the difference from the city with least population. | SELECT MAX(T1.Population) - MIN(T1.population) FROM city AS T1 INNER JOIN located AS T2 ON T1.Name = T2.City INNER JOIN river AS T3 ON T3.Name = T2.River WHERE T3.Name = 'Seine' | Seince is a river; Population disparity refers to difference between cities with greatest and least population; Difference between cities with greatest and least population means max(population) - min(population) | [
"city.Name",
"city.Population",
"city.population",
"located.City",
"located.River",
"river.Name"
] |
8,347 | mondial_geo | CREATE TABLE "borders"
(
Country1 TEXT default '' not null
constraint borders_ibfk_1
references country,
Country2 TEXT default '' not null
constraint borders_ibfk_2
references country,
Length REAL,
primary key (Country1, Country2)
);
CREATE TABLE "city"
(
N... | Which are the 2 rivers located at Belgrade city? Which river is longer and how by much? | SELECT T1.Name, T1.Length FROM river AS T1 INNER JOIN located AS T2 ON T1.Name = T2.River INNER JOIN city AS T3 ON T3.Name = T2.City WHERE T3.Name = 'Belgrade' | [
"city.Name",
"located.City",
"located.River",
"river.Length",
"river.Name"
] | |
8,348 | mondial_geo | CREATE TABLE "borders"
(
Country1 TEXT default '' not null
constraint borders_ibfk_1
references country,
Country2 TEXT default '' not null
constraint borders_ibfk_2
references country,
Length REAL,
primary key (Country1, Country2)
);
CREATE TABLE "city"
(
N... | Which nations have a 100% Spanish-speaking population? | SELECT Country FROM language WHERE Name = 'Spanish' AND Percentage = 100 | [
"language.Country",
"language.Name",
"language.Percentage"
] | |
8,349 | mondial_geo | CREATE TABLE "borders"
(
Country1 TEXT default '' not null
constraint borders_ibfk_1
references country,
Country2 TEXT default '' not null
constraint borders_ibfk_2
references country,
Length REAL,
primary key (Country1, Country2)
);
CREATE TABLE "city"
(
N... | Which countries are dependent on the British Crown? | SELECT Country FROM politics WHERE Government = 'British crown dependency' | [
"politics.Country",
"politics.Government"
] | |
8,350 | mondial_geo | CREATE TABLE "borders"
(
Country1 TEXT default '' not null
constraint borders_ibfk_1
references country,
Country2 TEXT default '' not null
constraint borders_ibfk_2
references country,
Length REAL,
primary key (Country1, Country2)
);
CREATE TABLE "city"
(
N... | What are the names of the rivers in Canada? | SELECT DISTINCT T1.River FROM located AS T1 INNER JOIN country AS T2 ON T1.Country = T2.Code WHERE T2.Name = 'Canada' AND T1.River IS NOT NULL | [
"country.Code",
"country.Name",
"located.Country",
"located.River"
] | |
8,351 | mondial_geo | CREATE TABLE "borders"
(
Country1 TEXT default '' not null
constraint borders_ibfk_1
references country,
Country2 TEXT default '' not null
constraint borders_ibfk_2
references country,
Length REAL,
primary key (Country1, Country2)
);
CREATE TABLE "city"
(
N... | What is the name of the country whose citizens have the lowest purchasing power? | SELECT T2.Name FROM economy AS T1 INNER JOIN country AS T2 ON T1.Country = T2.Code ORDER BY T1.Inflation DESC LIMIT 1 | Inflation can reduce purchasing power over time for recipients and payers. | [
"country.Code",
"country.Name",
"economy.Country",
"economy.Inflation"
] |
8,352 | mondial_geo | CREATE TABLE "borders"
(
Country1 TEXT default '' not null
constraint borders_ibfk_1
references country,
Country2 TEXT default '' not null
constraint borders_ibfk_2
references country,
Length REAL,
primary key (Country1, Country2)
);
CREATE TABLE "city"
(
N... | What province does the 4th most populous city in the United Kingdom belong to, and how many people live there? | SELECT T1.Province, T1.Population FROM city AS T1 INNER JOIN country AS T2 ON T1.Country = T2.Code WHERE T2.Name = 'United Kingdom' ORDER BY T1.Population DESC LIMIT 3, 1 | [
"city.Country",
"city.Population",
"city.Province",
"country.Code",
"country.Name"
] | |
8,353 | mondial_geo | CREATE TABLE "borders"
(
Country1 TEXT default '' not null
constraint borders_ibfk_1
references country,
Country2 TEXT default '' not null
constraint borders_ibfk_2
references country,
Length REAL,
primary key (Country1, Country2)
);
CREATE TABLE "city"
(
N... | How many Jewish residents are there in Moldova? | SELECT T2.Percentage * T1.Population FROM country AS T1 INNER JOIN ethnicGroup AS T2 ON T1.Code = T2.Country WHERE T1.Name = 'Moldova' AND T2.Name = 'Jewish' | Moldova is one country located in Eastern Europe; The number of residents can be computed by percentage * population | [
"country.Code",
"country.Name",
"country.Population",
"ethnicGroup.Country",
"ethnicGroup.Name",
"ethnicGroup.Percentage"
] |
8,354 | mondial_geo | CREATE TABLE "borders"
(
Country1 TEXT default '' not null
constraint borders_ibfk_1
references country,
Country2 TEXT default '' not null
constraint borders_ibfk_2
references country,
Length REAL,
primary key (Country1, Country2)
);
CREATE TABLE "city"
(
N... | What is the average area of Asian countries? | SELECT AVG(Area) FROM country AS T1 INNER JOIN encompasses AS T2 ON T1.Code = T2.Country WHERE T2.Continent = 'Asia' | Asia is a continent | [
"country.Code",
"encompasses.Continent",
"encompasses.Country"
] |
8,355 | mondial_geo | CREATE TABLE "borders"
(
Country1 TEXT default '' not null
constraint borders_ibfk_1
references country,
Country2 TEXT default '' not null
constraint borders_ibfk_2
references country,
Length REAL,
primary key (Country1, Country2)
);
CREATE TABLE "city"
(
N... | Which country is home to the world's tiniest desert, and what are its longitude and latitude? | SELECT T2.Country, T1.Latitude, T1.Longitude FROM desert AS T1 INNER JOIN geo_desert AS T2 ON T1.Name = T2.Desert WHERE T1.Name = ( SELECT Name FROM desert ORDER BY Area ASC LIMIT 1 ) | [
"desert.Area",
"desert.Latitude",
"desert.Longitude",
"desert.Name",
"geo_desert.Country",
"geo_desert.Desert"
] | |
8,356 | mondial_geo | CREATE TABLE "borders"
(
Country1 TEXT default '' not null
constraint borders_ibfk_1
references country,
Country2 TEXT default '' not null
constraint borders_ibfk_2
references country,
Length REAL,
primary key (Country1, Country2)
);
CREATE TABLE "city"
(
N... | How many people in Montenegro speaks Serbian? | SELECT T1.Percentage * T2.Population FROM language AS T1 INNER JOIN country AS T2 ON T1.Country = T2.Code WHERE T1.Name = 'Serbian' AND T2.Name = 'Montenegro' | Serbian is one language; Montenegro is a country located in Southeastern Europe | [
"country.Code",
"country.Name",
"country.Population",
"language.Country",
"language.Name",
"language.Percentage"
] |
8,357 | mondial_geo | CREATE TABLE "borders"
(
Country1 TEXT default '' not null
constraint borders_ibfk_1
references country,
Country2 TEXT default '' not null
constraint borders_ibfk_2
references country,
Length REAL,
primary key (Country1, Country2)
);
CREATE TABLE "city"
(
N... | How many mountains are there in the country with the most land area? | SELECT COUNT(Mountain) FROM geo_mountain WHERE Country = ( SELECT Code FROM country ORDER BY Area DESC LIMIT 1 ) | [
"country.Area",
"country.Code"
] | |
8,358 | mondial_geo | CREATE TABLE "borders"
(
Country1 TEXT default '' not null
constraint borders_ibfk_1
references country,
Country2 TEXT default '' not null
constraint borders_ibfk_2
references country,
Length REAL,
primary key (Country1, Country2)
);
CREATE TABLE "city"
(
N... | Which sea is the shallowest and which country surrounds it? | SELECT DISTINCT T2.Name FROM located AS T1 INNER JOIN country AS T2 ON T1.Country = T2.Code WHERE Sea = ( SELECT Name FROM sea ORDER BY Depth ASC LIMIT 1 ) | Shallow sea refers to the sea with less depth | [
"country.Code",
"country.Name",
"located.Country",
"sea.Depth",
"sea.Name"
] |
8,359 | mondial_geo | CREATE TABLE "borders"
(
Country1 TEXT default '' not null
constraint borders_ibfk_1
references country,
Country2 TEXT default '' not null
constraint borders_ibfk_2
references country,
Length REAL,
primary key (Country1, Country2)
);
CREATE TABLE "city"
(
N... | Which nation's GDP is the lowest among those that are communist states? | SELECT T2.Country FROM politics AS T1 INNER JOIN economy AS T2 ON T1.Country = T2.Country WHERE T1.Government = 'Communist state' ORDER BY T2.GDP ASC LIMIT 1 | Communist is a government form | [
"economy.Country",
"economy.GDP",
"politics.Country",
"politics.Government"
] |
8,360 | mondial_geo | CREATE TABLE "borders"
(
Country1 TEXT default '' not null
constraint borders_ibfk_1
references country,
Country2 TEXT default '' not null
constraint borders_ibfk_2
references country,
Length REAL,
primary key (Country1, Country2)
);
CREATE TABLE "city"
(
N... | What kind of political system is in place in the country with the highest inflation rate? | SELECT T1.Government FROM politics AS T1 INNER JOIN economy AS T2 ON T1.Country = T2.Country ORDER BY T2.Inflation DESC LIMIT 1 | Political system refers to government form | [
"economy.Country",
"economy.Inflation",
"politics.Country",
"politics.Government"
] |
8,361 | mondial_geo | CREATE TABLE "borders"
(
Country1 TEXT default '' not null
constraint borders_ibfk_1
references country,
Country2 TEXT default '' not null
constraint borders_ibfk_2
references country,
Length REAL,
primary key (Country1, Country2)
);
CREATE TABLE "city"
(
N... | Which nation has the greatest infant mortality rate among those that attained independence in 1960? | SELECT T1.Country FROM politics AS T1 INNER JOIN population AS T2 ON T1.Country = T2.Country WHERE STRFTIME('%Y', T1.Independence) = '1960' ORDER BY T2.Infant_Mortality DESC LIMIT 1 | [
"politics.Country",
"politics.Independence",
"population.Country",
"population.Infant_Mortality"
] | |
8,362 | mondial_geo | CREATE TABLE "borders"
(
Country1 TEXT default '' not null
constraint borders_ibfk_1
references country,
Country2 TEXT default '' not null
constraint borders_ibfk_2
references country,
Length REAL,
primary key (Country1, Country2)
);
CREATE TABLE "city"
(
N... | What is the smallest border's length, and what form of government do the two nations bordering it have? | SELECT T1.Government, T3.Government FROM politics AS T1 INNER JOIN borders AS T2 ON T1.Country = T2.Country1 INNER JOIN politics AS T3 ON T3.Country = T2.Country2 ORDER BY T2.Length ASC LIMIT 1 | [
"borders.Country1",
"borders.Country2",
"borders.Length",
"politics.Country",
"politics.Government"
] | |
8,363 | mondial_geo | CREATE TABLE "borders"
(
Country1 TEXT default '' not null
constraint borders_ibfk_1
references country,
Country2 TEXT default '' not null
constraint borders_ibfk_2
references country,
Length REAL,
primary key (Country1, Country2)
);
CREATE TABLE "city"
(
N... | Which Arabic-speaking country has the smallest population? | SELECT T1.Name FROM country AS T1 INNER JOIN language AS T2 ON T1.Code = T2.Country WHERE T2.Name = 'Arabic' AND T2.Percentage = 100 ORDER BY T1.Population ASC LIMIT 1 | Arabic-speaking country = country that speaks 100% Arabic | [
"country.Code",
"country.Name",
"country.Population",
"language.Country",
"language.Name",
"language.Percentage"
] |
8,364 | mondial_geo | CREATE TABLE "borders"
(
Country1 TEXT default '' not null
constraint borders_ibfk_1
references country,
Country2 TEXT default '' not null
constraint borders_ibfk_2
references country,
Length REAL,
primary key (Country1, Country2)
);
CREATE TABLE "city"
(
N... | What provinces encompass the world's biggest desert in terms of overall area? | SELECT Province FROM geo_desert WHERE Desert = ( SELECT Name FROM desert ORDER BY Area DESC LIMIT 1 ) | [
"desert.Area",
"desert.Name"
] | |
8,365 | mondial_geo | CREATE TABLE "borders"
(
Country1 TEXT default '' not null
constraint borders_ibfk_1
references country,
Country2 TEXT default '' not null
constraint borders_ibfk_2
references country,
Length REAL,
primary key (Country1, Country2)
);
CREATE TABLE "city"
(
N... | How many lakes are there in the 4th most populous African country with a republican form of government? | SELECT COUNT(*) FROM geo_lake WHERE Country = ( SELECT T4.Code FROM ( SELECT T2.Code, T2.Population FROM encompasses AS T1 INNER JOIN country AS T2 ON T1.Country = T2.Code INNER JOIN politics AS T3 ON T1.Country = T3.Country WHERE T1.Continent = 'Africa' AND T1.Percentage = 100 AND T3.Government = 'republic' ORDER BY P... | [
"T4.Code",
"country.Code",
"country.Population",
"encompasses.Continent",
"encompasses.Country",
"encompasses.Percentage",
"politics.Country",
"politics.Government"
] | |
8,366 | mondial_geo | CREATE TABLE "borders"
(
Country1 TEXT default '' not null
constraint borders_ibfk_1
references country,
Country2 TEXT default '' not null
constraint borders_ibfk_2
references country,
Length REAL,
primary key (Country1, Country2)
);
CREATE TABLE "city"
(
N... | Which religion is most prevalent in Asia? | SELECT T4.Name FROM continent AS T1 INNER JOIN encompasses AS T2 ON T1.Name = T2.Continent INNER JOIN country AS T3 ON T3.Code = T2.Country INNER JOIN religion AS T4 ON T4.Country = T3.Code WHERE T1.Name = 'Asia' GROUP BY T4.Name ORDER BY SUM(T4.Percentage) DESC LIMIT 1 | Most prevalent religion refers to the religion with the most population percentage | [
"continent.Name",
"country.Code",
"encompasses.Continent",
"encompasses.Country",
"religion.Country",
"religion.Name",
"religion.Percentage"
] |
8,367 | mondial_geo | CREATE TABLE "borders"
(
Country1 TEXT default '' not null
constraint borders_ibfk_1
references country,
Country2 TEXT default '' not null
constraint borders_ibfk_2
references country,
Length REAL,
primary key (Country1, Country2)
);
CREATE TABLE "city"
(
N... | What is the difference in population between the two nations where the tallest peak is located? | SELECT * FROM mountain AS T1 INNER JOIN geo_mountain AS T2 ON T1.Name = T2.Mountain INNER JOIN province AS T3 ON T3.Country = T2.Country INNER JOIN country AS T4 ON T4.Code = T3.Country WHERE T1.Name = ( SELECT Name FROM mountain ORDER BY Height DESC LIMIT 1 ) | [
"country.Code",
"geo_mountain.Country",
"geo_mountain.Mountain",
"mountain.Height",
"mountain.Name",
"province.Country"
] | |
8,368 | mondial_geo | CREATE TABLE "borders"
(
Country1 TEXT default '' not null
constraint borders_ibfk_1
references country,
Country2 TEXT default '' not null
constraint borders_ibfk_2
references country,
Length REAL,
primary key (Country1, Country2)
);
CREATE TABLE "city"
(
N... | What are the names of the sea that can be found on the island with the biggest area? | SELECT T2.Name FROM islandIn AS T1 INNER JOIN sea AS T2 ON T2.Name = T1.Sea WHERE T1.Island = ( SELECT Name FROM island ORDER BY Area DESC LIMIT 1 ) | [
"island.Area",
"island.Name",
"islandIn.Island",
"islandIn.Sea",
"sea.Name"
] | |
8,369 | mondial_geo | CREATE TABLE "borders"
(
Country1 TEXT default '' not null
constraint borders_ibfk_1
references country,
Country2 TEXT default '' not null
constraint borders_ibfk_2
references country,
Length REAL,
primary key (Country1, Country2)
);
CREATE TABLE "city"
(
N... | What are the names of the three nations where the longest river that empties into the Atlantic Ocean stretches to? | SELECT DISTINCT T1.Country FROM city AS T1 INNER JOIN located AS T2 ON T1.Name = T2.City INNER JOIN river AS T3 ON T3.Name = T2.River WHERE T3.Name = ( SELECT Name FROM river WHERE Sea = 'Atlantic Ocean' ORDER BY Length DESC LIMIT 1 ) | Empties into the Atlantic Ocean = flows to the Atlantic Ocean | [
"city.Country",
"city.Name",
"located.City",
"located.River",
"river.Length",
"river.Name",
"river.Sea"
] |
8,370 | mondial_geo | CREATE TABLE "borders"
(
Country1 TEXT default '' not null
constraint borders_ibfk_1
references country,
Country2 TEXT default '' not null
constraint borders_ibfk_2
references country,
Length REAL,
primary key (Country1, Country2)
);
CREATE TABLE "city"
(
N... | How many people reside in the nation's capital city, which is situated in the nation that attained independence on 8/15/1947? | SELECT T3.Population FROM politics AS T1 INNER JOIN country AS T2 ON T1.Country = T2.Code INNER JOIN city AS T3 ON T3.Name = T2.Capital WHERE T1.Independence = '1947-08-15' | [
"city.Name",
"city.Population",
"country.Capital",
"country.Code",
"politics.Country",
"politics.Independence"
] | |
8,371 | mondial_geo | CREATE TABLE "borders"
(
Country1 TEXT default '' not null
constraint borders_ibfk_1
references country,
Country2 TEXT default '' not null
constraint borders_ibfk_2
references country,
Length REAL,
primary key (Country1, Country2)
);
CREATE TABLE "city"
(
N... | What is the total number of Afro-Asian people in the most populous Asian country governed by a monarchy? | SELECT T5.Percentage * T6.Population FROM ethnicGroup AS T5 INNER JOIN country AS T6 ON T5.Country = T6.Code WHERE Country = ( SELECT T3.Code FROM continent AS T1 INNER JOIN encompasses AS T2 ON T1.Name = T2.Continent INNER JOIN country AS T3 ON T3.Code = T2.Country INNER JOIN politics AS T4 ON T4.Country = T3.Code WHE... | Total Number of People = Percentage * Population | [
"continent.Name",
"country.Code",
"country.Population",
"encompasses.Continent",
"encompasses.Country",
"ethnicGroup.Country",
"ethnicGroup.Name",
"ethnicGroup.Percentage",
"politics.Country",
"politics.Government"
] |
8,372 | mondial_geo | CREATE TABLE "borders"
(
Country1 TEXT default '' not null
constraint borders_ibfk_1
references country,
Country2 TEXT default '' not null
constraint borders_ibfk_2
references country,
Length REAL,
primary key (Country1, Country2)
);
CREATE TABLE "city"
(
N... | What are the names of the cities along the Euphrat River's course? Indicate the capital city of the nation where the Euphrat River flows. | SELECT T2.City, T1.Capital FROM country AS T1 INNER JOIN located AS T2 ON T1.Code = T2.Country INNER JOIN river AS T3 ON T3.Name = T2.River WHERE T3.Name = 'Euphrat' | [
"country.Capital",
"country.Code",
"located.City",
"located.Country",
"located.River",
"river.Name"
] | |
8,373 | mondial_geo | CREATE TABLE "borders"
(
Country1 TEXT default '' not null
constraint borders_ibfk_1
references country,
Country2 TEXT default '' not null
constraint borders_ibfk_2
references country,
Length REAL,
primary key (Country1, Country2)
);
CREATE TABLE "city"
(
N... | What is the proportion of English-speaking citizens in the countries that rely on the United States compared to the total number of citizens in those countries? | SELECT T2.Percentage * T1.Population FROM country AS T1 INNER JOIN language AS T2 ON T1.Code = T2.Country INNER JOIN politics AS T3 ON T3.Country = T2.Country WHERE T3.Dependent = 'USA' AND T2.Name = 'English' | [
"country.Code",
"country.Population",
"language.Country",
"language.Name",
"language.Percentage",
"politics.Country",
"politics.Dependent"
] | |
8,374 | mondial_geo | CREATE TABLE "borders"
(
Country1 TEXT default '' not null
constraint borders_ibfk_1
references country,
Country2 TEXT default '' not null
constraint borders_ibfk_2
references country,
Length REAL,
primary key (Country1, Country2)
);
CREATE TABLE "city"
(
N... | Which federal republic country in Europe has the most provinces, and what proportion of GDP is devoted to services?
Calculate the population density as well. | SELECT T1.Country, T2.Service , SUM(T1.Population) / SUM(T1.Area) FROM province AS T1 INNER JOIN economy AS T2 ON T1.Country = T2.Country WHERE T1.Country IN ( SELECT Country FROM encompasses WHERE Continent = 'Europe' ) GROUP BY T1.Country, T2.Service ORDER BY COUNT(T1.Name) DESC LIMIT 1 | Republic is on of government forms; Percentage of Services of the GDP was mentioned in economy.Service; Population Density = Population / Area | [
"economy.Country",
"economy.Service",
"encompasses.Continent",
"encompasses.Country",
"province.Area",
"province.Country",
"province.Name",
"province.Population"
] |
8,375 | mondial_geo | CREATE TABLE "borders"
(
Country1 TEXT default '' not null
constraint borders_ibfk_1
references country,
Country2 TEXT default '' not null
constraint borders_ibfk_2
references country,
Length REAL,
primary key (Country1, Country2)
);
CREATE TABLE "city"
(
N... | What is the capital of the 3rd most populated country in Asia and what is the capital city's ratio in percentage (%) against the overall population of the country? | SELECT T4.Capital, CAST(T3.Population AS REAL) * 100 / T4.Population FROM city AS T3 INNER JOIN ( SELECT T1.Capital , T1.Population FROM country AS T1 INNER JOIN encompasses AS T2 ON T1.Code = T2.Country WHERE T2.Continent = 'Asia' ORDER BY T1.Population DESC LIMIT 2, 1 ) AS T4 ON T3.Name = T4.Capital | [
"T4.Capital",
"T4.Population",
"city.Name",
"city.Population",
"country.Capital",
"country.Code",
"country.Population",
"encompasses.Continent",
"encompasses.Country"
] | |
8,376 | mondial_geo | CREATE TABLE "borders"
(
Country1 TEXT default '' not null
constraint borders_ibfk_1
references country,
Country2 TEXT default '' not null
constraint borders_ibfk_2
references country,
Length REAL,
primary key (Country1, Country2)
);
CREATE TABLE "city"
(
N... | What's the name of the second biggest desert? | SELECT Name FROM desert ORDER BY Area DESC LIMIT 1, 1 | [
"desert.Area",
"desert.Name"
] | |
8,377 | mondial_geo | CREATE TABLE "borders"
(
Country1 TEXT default '' not null
constraint borders_ibfk_1
references country,
Country2 TEXT default '' not null
constraint borders_ibfk_2
references country,
Length REAL,
primary key (Country1, Country2)
);
CREATE TABLE "city"
(
N... | What is the main spoken language in MNE? | SELECT Name FROM language WHERE Country = 'MNE' ORDER BY Percentage DESC LIMIT 1 | MNE is one country | [
"language.Country",
"language.Name",
"language.Percentage"
] |
8,378 | mondial_geo | CREATE TABLE "borders"
(
Country1 TEXT default '' not null
constraint borders_ibfk_1
references country,
Country2 TEXT default '' not null
constraint borders_ibfk_2
references country,
Length REAL,
primary key (Country1, Country2)
);
CREATE TABLE "city"
(
N... | What's the percentage of people in Cayman Islands speak English? | SELECT T1.Percentage FROM language AS T1 INNER JOIN country AS T2 ON T1.Country = T2.Code WHERE T2.Name = 'Cayman Islands' AND T1.Name = 'English' | Cayman Islands is a country | [
"country.Code",
"country.Name",
"language.Country",
"language.Name",
"language.Percentage"
] |
8,379 | mondial_geo | CREATE TABLE "borders"
(
Country1 TEXT default '' not null
constraint borders_ibfk_1
references country,
Country2 TEXT default '' not null
constraint borders_ibfk_2
references country,
Length REAL,
primary key (Country1, Country2)
);
CREATE TABLE "city"
(
N... | Which country was the source of Pjandsh River? Give the full name of the country. | SELECT T1.Name FROM country AS T1 INNER JOIN located AS T2 ON T1.Code = T2.Country WHERE T2.River = 'Pjandsh' | [
"country.Code",
"country.Name",
"located.Country",
"located.River"
] | |
8,380 | mondial_geo | CREATE TABLE "borders"
(
Country1 TEXT default '' not null
constraint borders_ibfk_1
references country,
Country2 TEXT default '' not null
constraint borders_ibfk_2
references country,
Length REAL,
primary key (Country1, Country2)
);
CREATE TABLE "city"
(
N... | For the countries have the population north of a billion, which one has the lowest GDP? Give the full name of the country. | SELECT T1.Name FROM country AS T1 INNER JOIN economy AS T2 ON T1.Code = T2.Country WHERE T1.Population > 1000000000 ORDER BY T2.GDP ASC LIMIT 1 | billion = 1000000000 | [
"country.Code",
"country.Name",
"country.Population",
"economy.Country",
"economy.GDP"
] |
8,381 | mondial_geo | CREATE TABLE "borders"
(
Country1 TEXT default '' not null
constraint borders_ibfk_1
references country,
Country2 TEXT default '' not null
constraint borders_ibfk_2
references country,
Length REAL,
primary key (Country1, Country2)
);
CREATE TABLE "city"
(
N... | What is the capital of the country that has the Licancabur Mountain? | SELECT T4.Capital FROM mountain AS T1 INNER JOIN geo_mountain AS T2 ON T1.Name = T2.Mountain INNER JOIN province AS T3 ON T3.Name = T2.Province INNER JOIN country AS T4 ON T4.Province = T3.Name WHERE T1.Name = 'Licancabur' | [
"country.Capital",
"country.Province",
"geo_mountain.Mountain",
"geo_mountain.Province",
"mountain.Name",
"province.Name"
] | |
8,382 | mondial_geo | CREATE TABLE "borders"
(
Country1 TEXT default '' not null
constraint borders_ibfk_1
references country,
Country2 TEXT default '' not null
constraint borders_ibfk_2
references country,
Length REAL,
primary key (Country1, Country2)
);
CREATE TABLE "city"
(
N... | How much sea is around the island where Kerinci Mountain is located? | SELECT COUNT(T4.Sea) FROM mountain AS T1 INNER JOIN mountainOnIsland AS T2 ON T1.Name = T2.Mountain INNER JOIN island AS T3 ON T3.Name = T2.Island INNER JOIN islandIn AS T4 ON T4.Island = T3.Name WHERE T1.Name = 'Kerinci' | [
"island.Name",
"islandIn.Island",
"islandIn.Sea",
"mountain.Name",
"mountainOnIsland.Island",
"mountainOnIsland.Mountain"
] | |
8,383 | mondial_geo | CREATE TABLE "borders"
(
Country1 TEXT default '' not null
constraint borders_ibfk_1
references country,
Country2 TEXT default '' not null
constraint borders_ibfk_2
references country,
Length REAL,
primary key (Country1, Country2)
);
CREATE TABLE "city"
(
N... | Which three countries does the Amazonas flow through? Give the full name of the countries. | SELECT DISTINCT T4.Name FROM city AS T1 INNER JOIN located AS T2 ON T1.Name = T2.City INNER JOIN river AS T3 ON T3.Name = T2.River INNER JOIN country AS T4 ON T4.Code = T2.Country WHERE T3.Name = 'Amazonas' | Amazonas flow is a river | [
"city.Name",
"country.Code",
"country.Name",
"located.City",
"located.Country",
"located.River",
"river.Name"
] |
8,384 | mondial_geo | CREATE TABLE "borders"
(
Country1 TEXT default '' not null
constraint borders_ibfk_1
references country,
Country2 TEXT default '' not null
constraint borders_ibfk_2
references country,
Length REAL,
primary key (Country1, Country2)
);
CREATE TABLE "city"
(
N... | Which country became independent on 1492-01-01? Give the full name of the country. | SELECT T1.Name FROM country AS T1 INNER JOIN politics AS T2 ON T1.Code = T2.Country WHERE T2.Independence = '1492-01-01' | [
"country.Code",
"country.Name",
"politics.Country",
"politics.Independence"
] | |
8,385 | mondial_geo | CREATE TABLE "borders"
(
Country1 TEXT default '' not null
constraint borders_ibfk_1
references country,
Country2 TEXT default '' not null
constraint borders_ibfk_2
references country,
Length REAL,
primary key (Country1, Country2)
);
CREATE TABLE "city"
(
N... | How many cities in France have a population of more than 100,000? | SELECT COUNT(T2.Name) FROM country AS T1 INNER JOIN city AS T2 ON T2.Country = T1.Code WHERE T1.Name = 'France' AND T2.Population > 100000 | [
"city.Country",
"city.Name",
"city.Population",
"country.Code",
"country.Name"
] | |
8,386 | mondial_geo | CREATE TABLE "borders"
(
Country1 TEXT default '' not null
constraint borders_ibfk_1
references country,
Country2 TEXT default '' not null
constraint borders_ibfk_2
references country,
Length REAL,
primary key (Country1, Country2)
);
CREATE TABLE "city"
(
N... | Among all the rivers finally flows to the sea of 540m in depth, which one has the longest length? | SELECT T2.Name FROM sea AS T1 INNER JOIN river AS T2 ON T2.Sea = T1.Name WHERE T1.Depth = 540 ORDER BY T2.Length DESC LIMIT 1 | [
"river.Length",
"river.Name",
"river.Sea",
"sea.Depth",
"sea.Name"
] | |
8,387 | mondial_geo | CREATE TABLE "borders"
(
Country1 TEXT default '' not null
constraint borders_ibfk_1
references country,
Country2 TEXT default '' not null
constraint borders_ibfk_2
references country,
Length REAL,
primary key (Country1, Country2)
);
CREATE TABLE "city"
(
N... | In which Country is the second highest volcanic mountain located in? Give the code of the country. | SELECT T3.Country FROM mountain AS T1 INNER JOIN geo_mountain AS T2 ON T1.Name = T2.Mountain INNER JOIN province AS T3 ON T3.Name = T2.Province ORDER BY T1.Height DESC LIMIT 1, 1 | [
"geo_mountain.Mountain",
"geo_mountain.Province",
"mountain.Height",
"mountain.Name",
"province.Country",
"province.Name"
] | |
8,388 | mondial_geo | CREATE TABLE "borders"
(
Country1 TEXT default '' not null
constraint borders_ibfk_1
references country,
Country2 TEXT default '' not null
constraint borders_ibfk_2
references country,
Length REAL,
primary key (Country1, Country2)
);
CREATE TABLE "city"
(
N... | What is the longitude of the island on which Mount Olympos is located? | SELECT T3.Longitude FROM mountain AS T1 INNER JOIN mountainOnIsland AS T2 ON T1.Name = T2.Mountain INNER JOIN island AS T3 ON T3.Name = T2.Island WHERE T1.Name = 'Olympos' | [
"island.Longitude",
"island.Name",
"mountain.Name",
"mountainOnIsland.Island",
"mountainOnIsland.Mountain"
] | |
8,389 | mondial_geo | CREATE TABLE "borders"
(
Country1 TEXT default '' not null
constraint borders_ibfk_1
references country,
Country2 TEXT default '' not null
constraint borders_ibfk_2
references country,
Length REAL,
primary key (Country1, Country2)
);
CREATE TABLE "city"
(
N... | For all the countries that is smaller than 100 square kilometres, which one has the most GDP? | SELECT T1.Name FROM country AS T1 INNER JOIN economy AS T2 ON T1.Code = T2.Country WHERE T1.Area < 100 ORDER BY T2.GDP DESC LIMIT 1 | [
"country.Area",
"country.Code",
"country.Name",
"economy.Country",
"economy.GDP"
] | |
8,390 | mondial_geo | CREATE TABLE "borders"
(
Country1 TEXT default '' not null
constraint borders_ibfk_1
references country,
Country2 TEXT default '' not null
constraint borders_ibfk_2
references country,
Length REAL,
primary key (Country1, Country2)
);
CREATE TABLE "city"
(
N... | What is the total number of cities that Japan have? | SELECT COUNT(T3.Name) FROM country AS T1 INNER JOIN province AS T2 ON T1.Code = T2.Country INNER JOIN city AS T3 ON T3.Province = T2.Name WHERE T1.Name = 'Japan' | Japan is a country | [
"city.Name",
"city.Province",
"country.Code",
"country.Name",
"province.Country",
"province.Name"
] |
8,391 | mondial_geo | CREATE TABLE "borders"
(
Country1 TEXT default '' not null
constraint borders_ibfk_1
references country,
Country2 TEXT default '' not null
constraint borders_ibfk_2
references country,
Length REAL,
primary key (Country1, Country2)
);
CREATE TABLE "city"
(
N... | Which city has most population other than its capital in Bangladesh? | SELECT T3.Name FROM country AS T1 INNER JOIN province AS T2 ON T1.Code = T2.Country INNER JOIN city AS T3 ON T3.Province = T2.Name WHERE T1.Name = 'Bangladesh' AND T3.Name <> T1.Capital ORDER BY T3.Population DESC LIMIT 1 | Bangladesh is a country | [
"city.Name",
"city.Population",
"city.Province",
"country.Capital",
"country.Code",
"country.Name",
"province.Country",
"province.Name"
] |
8,392 | mondial_geo | CREATE TABLE "borders"
(
Country1 TEXT default '' not null
constraint borders_ibfk_1
references country,
Country2 TEXT default '' not null
constraint borders_ibfk_2
references country,
Length REAL,
primary key (Country1, Country2)
);
CREATE TABLE "city"
(
N... | Which non capital city has the most people of all? | SELECT T3.Name FROM country AS T1 INNER JOIN province AS T2 ON T1.Code = T2.Country INNER JOIN city AS T3 ON T3.Province = T2.Name WHERE T3.Name <> T1.Capital ORDER BY T3.Population DESC LIMIT 1 | [
"city.Name",
"city.Population",
"city.Province",
"country.Capital",
"country.Code",
"province.Country",
"province.Name"
] | |
8,393 | mondial_geo | CREATE TABLE "borders"
(
Country1 TEXT default '' not null
constraint borders_ibfk_1
references country,
Country2 TEXT default '' not null
constraint borders_ibfk_2
references country,
Length REAL,
primary key (Country1, Country2)
);
CREATE TABLE "city"
(
N... | In which country is the city of Grozny? Give the full name of the country. | SELECT T1.Name FROM country AS T1 INNER JOIN province AS T2 ON T1.Code = T2.Country INNER JOIN city AS T3 ON T3.Province = T2.Name WHERE T3.Name = 'Grozny' | Grozny is a province | [
"city.Name",
"city.Province",
"country.Code",
"country.Name",
"province.Country",
"province.Name"
] |
8,394 | mondial_geo | CREATE TABLE "borders"
(
Country1 TEXT default '' not null
constraint borders_ibfk_1
references country,
Country2 TEXT default '' not null
constraint borders_ibfk_2
references country,
Length REAL,
primary key (Country1, Country2)
);
CREATE TABLE "city"
(
N... | Which religion has the majority of the people in Japan? | SELECT T2.Name FROM country AS T1 INNER JOIN religion AS T2 ON T1.Code = T2.Country WHERE T1.Name = 'Japan' ORDER BY T2.Percentage DESC LIMIT 1 | Japan is a country | [
"country.Code",
"country.Name",
"religion.Country",
"religion.Name",
"religion.Percentage"
] |
8,395 | mondial_geo | CREATE TABLE "borders"
(
Country1 TEXT default '' not null
constraint borders_ibfk_1
references country,
Country2 TEXT default '' not null
constraint borders_ibfk_2
references country,
Length REAL,
primary key (Country1, Country2)
);
CREATE TABLE "city"
(
N... | Which two countries have the border in length of 803 km? Give the full names of the countries. | SELECT T1.Name, T3.Name FROM country AS T1 INNER JOIN borders AS T2 ON T1.Code = T2.Country1 INNER JOIN country AS T3 ON T3.Code = T2.Country2 WHERE T2.Length = 803 | [
"borders.Country1",
"borders.Country2",
"borders.Length",
"country.Code",
"country.Name"
] | |
8,396 | mondial_geo | CREATE TABLE "borders"
(
Country1 TEXT default '' not null
constraint borders_ibfk_1
references country,
Country2 TEXT default '' not null
constraint borders_ibfk_2
references country,
Length REAL,
primary key (Country1, Country2)
);
CREATE TABLE "city"
(
N... | How many percent of the total area of Russia is in Europe? | SELECT T2.Percentage FROM continent AS T1 INNER JOIN encompasses AS T2 ON T1.Name = T2.Continent INNER JOIN country AS T3 ON T3.Code = T2.Country WHERE T3.Name = 'Russia' AND T1.Name = 'Europe' | [
"continent.Name",
"country.Code",
"country.Name",
"encompasses.Continent",
"encompasses.Country",
"encompasses.Percentage"
] | |
8,397 | mondial_geo | CREATE TABLE "borders"
(
Country1 TEXT default '' not null
constraint borders_ibfk_1
references country,
Country2 TEXT default '' not null
constraint borders_ibfk_2
references country,
Length REAL,
primary key (Country1, Country2)
);
CREATE TABLE "city"
(
N... | Give the full names of the countries that are located in more than one continent. | SELECT T3.Name FROM continent AS T1 INNER JOIN encompasses AS T2 ON T1.Name = T2.Continent INNER JOIN country AS T3 ON T3.Code = T2.Country GROUP BY T3.Name HAVING COUNT(T3.Name) > 1 | [
"continent.Name",
"country.Code",
"country.Name",
"encompasses.Continent",
"encompasses.Country"
] | |
8,398 | mondial_geo | CREATE TABLE "borders"
(
Country1 TEXT default '' not null
constraint borders_ibfk_1
references country,
Country2 TEXT default '' not null
constraint borders_ibfk_2
references country,
Length REAL,
primary key (Country1, Country2)
);
CREATE TABLE "city"
(
N... | How many people are there in Fareham's mother country? | SELECT T1.Population FROM country AS T1 INNER JOIN province AS T2 ON T1.Code = T2.Country INNER JOIN city AS T3 ON T3.Province = T2.Name WHERE T3.Name = 'Fareham' | Mother country refers to home country | [
"city.Name",
"city.Province",
"country.Code",
"country.Population",
"province.Country",
"province.Name"
] |
8,399 | mondial_geo | CREATE TABLE "borders"
(
Country1 TEXT default '' not null
constraint borders_ibfk_1
references country,
Country2 TEXT default '' not null
constraint borders_ibfk_2
references country,
Length REAL,
primary key (Country1, Country2)
);
CREATE TABLE "city"
(
N... | What's the number of infant mortality in Switzerland in a year? | SELECT T2.Infant_Mortality * T1.Population * T2.Population_Growth FROM country AS T1 INNER JOIN population AS T2 ON T1.Code = T2.Country WHERE T1.Name = 'Switzerland' | Number can be calculated = Infant_Mortality * Population * Population_Growth | [
"country.Code",
"country.Name",
"country.Population",
"population.Country",
"population.Infant_Mortality",
"population.Population_Growth"
] |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.