context
stringlengths 11
9.12k
| question
stringlengths 0
1.06k
| SQL
stringlengths 2
4.44k
| source
stringclasses 28
values |
---|---|---|---|
CREATE TABLE mondial_geo (Country1 text, Country2 text, Length real, Name text, Country text, Province text, Population integer, Longitude real, Latitude real, Name text, Area real, Name text, Code text, Capital text, Province text, Area real, Population integer, Name text, Area real, Longitude real, Latitude real, Country text, GDP real, Agriculture real, Service real, Industry real, Inflation real, Country text, Continent text, Percentage real, Country text, Name text, Percentage real, Desert text, Country text, Province text, River text, Country text, Province text, Island text, Country text, Province text, Lake text, Country text, Province text, Mountain text, Country text, Province text, River text, Country text, Province text, Sea text, Country text, Province text, River text, Country text, Province text, Name text, Islands text, Area real, Height real, Type text, Longitude real, Latitude real, Island text, Sea text, Lake text, River text, Country text, Organization text, Type text, Name text, Area real, Depth real, Altitude real, Type text, River text, Longitude real, Latitude real, Country text, Name text, Percentage real, City text, Province text, Country text, River text, Lake text, Sea text, City text, Province text, Country text, Island text, Sea1 text, Sea2 text, Name text, Mountains text, Height real, Type text, Longitude real, Latitude real, Mountain text, Island text, Abbreviation text, Name text, City text, Country text, Province text, Established date, Country text, Independence date, Dependent text, Government text, Country text, Population_Growth real, Infant_Mortality real, Name text, Country text, Population integer, Area real, Capital text, CapProv text, Country text, Name text, Percentage real, Name text, River text, Lake text, Sea text, Length real, SourceLongitude real, SourceLatitude real, Mountains text, SourceAltitude real, EstuaryLongitude real, EstuaryLatitude real, Name text, Depth real, Country text, Target text) | List the infant mortality of country with the least Amerindian. | SELECT T1.Infant_Mortality FROM population AS T1 INNER JOIN ethnicGroup AS T2 ON T1.Country = T2.Country WHERE T2.Name = 'Amerindian' ORDER BY T2.Percentage ASC LIMIT 1 | bird |
CREATE TABLE mondial_geo (Country1 text, Country2 text, Length real, Name text, Country text, Province text, Population integer, Longitude real, Latitude real, Name text, Area real, Name text, Code text, Capital text, Province text, Area real, Population integer, Name text, Area real, Longitude real, Latitude real, Country text, GDP real, Agriculture real, Service real, Industry real, Inflation real, Country text, Continent text, Percentage real, Country text, Name text, Percentage real, Desert text, Country text, Province text, River text, Country text, Province text, Island text, Country text, Province text, Lake text, Country text, Province text, Mountain text, Country text, Province text, River text, Country text, Province text, Sea text, Country text, Province text, River text, Country text, Province text, Name text, Islands text, Area real, Height real, Type text, Longitude real, Latitude real, Island text, Sea text, Lake text, River text, Country text, Organization text, Type text, Name text, Area real, Depth real, Altitude real, Type text, River text, Longitude real, Latitude real, Country text, Name text, Percentage real, City text, Province text, Country text, River text, Lake text, Sea text, City text, Province text, Country text, Island text, Sea1 text, Sea2 text, Name text, Mountains text, Height real, Type text, Longitude real, Latitude real, Mountain text, Island text, Abbreviation text, Name text, City text, Country text, Province text, Established date, Country text, Independence date, Dependent text, Government text, Country text, Population_Growth real, Infant_Mortality real, Name text, Country text, Population integer, Area real, Capital text, CapProv text, Country text, Name text, Percentage real, Name text, River text, Lake text, Sea text, Length real, SourceLongitude real, SourceLatitude real, Mountains text, SourceAltitude real, EstuaryLongitude real, EstuaryLatitude real, Name text, Depth real, Country text, Target text) | For country with area greater than 600000, what is agriculture percentage of GDP the country contributes? | SELECT T2.Agriculture FROM country AS T1 INNER JOIN economy AS T2 ON T1.Code = T2.Country WHERE T1.Area > 600000 AND T2.Agriculture IS NOT NULL | bird |
CREATE TABLE mondial_geo (Country1 text, Country2 text, Length real, Name text, Country text, Province text, Population integer, Longitude real, Latitude real, Name text, Area real, Name text, Code text, Capital text, Province text, Area real, Population integer, Name text, Area real, Longitude real, Latitude real, Country text, GDP real, Agriculture real, Service real, Industry real, Inflation real, Country text, Continent text, Percentage real, Country text, Name text, Percentage real, Desert text, Country text, Province text, River text, Country text, Province text, Island text, Country text, Province text, Lake text, Country text, Province text, Mountain text, Country text, Province text, River text, Country text, Province text, Sea text, Country text, Province text, River text, Country text, Province text, Name text, Islands text, Area real, Height real, Type text, Longitude real, Latitude real, Island text, Sea text, Lake text, River text, Country text, Organization text, Type text, Name text, Area real, Depth real, Altitude real, Type text, River text, Longitude real, Latitude real, Country text, Name text, Percentage real, City text, Province text, Country text, River text, Lake text, Sea text, City text, Province text, Country text, Island text, Sea1 text, Sea2 text, Name text, Mountains text, Height real, Type text, Longitude real, Latitude real, Mountain text, Island text, Abbreviation text, Name text, City text, Country text, Province text, Established date, Country text, Independence date, Dependent text, Government text, Country text, Population_Growth real, Infant_Mortality real, Name text, Country text, Population integer, Area real, Capital text, CapProv text, Country text, Name text, Percentage real, Name text, River text, Lake text, Sea text, Length real, SourceLongitude real, SourceLatitude real, Mountains text, SourceAltitude real, EstuaryLongitude real, EstuaryLatitude real, Name text, Depth real, Country text, Target text) | Provide the country with republic government which has the highest population growth? | SELECT T2.Country FROM population AS T1 INNER JOIN politics AS T2 ON T1.Country = T2.Country WHERE T2.Government = 'republic' ORDER BY T1.Population_Growth DESC LIMIT 1 | bird |
CREATE TABLE mondial_geo (Country1 text, Country2 text, Length real, Name text, Country text, Province text, Population integer, Longitude real, Latitude real, Name text, Area real, Name text, Code text, Capital text, Province text, Area real, Population integer, Name text, Area real, Longitude real, Latitude real, Country text, GDP real, Agriculture real, Service real, Industry real, Inflation real, Country text, Continent text, Percentage real, Country text, Name text, Percentage real, Desert text, Country text, Province text, River text, Country text, Province text, Island text, Country text, Province text, Lake text, Country text, Province text, Mountain text, Country text, Province text, River text, Country text, Province text, Sea text, Country text, Province text, River text, Country text, Province text, Name text, Islands text, Area real, Height real, Type text, Longitude real, Latitude real, Island text, Sea text, Lake text, River text, Country text, Organization text, Type text, Name text, Area real, Depth real, Altitude real, Type text, River text, Longitude real, Latitude real, Country text, Name text, Percentage real, City text, Province text, Country text, River text, Lake text, Sea text, City text, Province text, Country text, Island text, Sea1 text, Sea2 text, Name text, Mountains text, Height real, Type text, Longitude real, Latitude real, Mountain text, Island text, Abbreviation text, Name text, City text, Country text, Province text, Established date, Country text, Independence date, Dependent text, Government text, Country text, Population_Growth real, Infant_Mortality real, Name text, Country text, Population integer, Area real, Capital text, CapProv text, Country text, Name text, Percentage real, Name text, River text, Lake text, Sea text, Length real, SourceLongitude real, SourceLatitude real, Mountains text, SourceAltitude real, EstuaryLongitude real, EstuaryLatitude real, Name text, Depth real, Country text, Target text) | When did 'Bulgaria' gain independence? | SELECT T2.Independence FROM country AS T1 INNER JOIN politics AS T2 ON T1.Code = T2.Country WHERE T1.Name = 'Bulgaria' | bird |
CREATE TABLE mondial_geo (Country1 text, Country2 text, Length real, Name text, Country text, Province text, Population integer, Longitude real, Latitude real, Name text, Area real, Name text, Code text, Capital text, Province text, Area real, Population integer, Name text, Area real, Longitude real, Latitude real, Country text, GDP real, Agriculture real, Service real, Industry real, Inflation real, Country text, Continent text, Percentage real, Country text, Name text, Percentage real, Desert text, Country text, Province text, River text, Country text, Province text, Island text, Country text, Province text, Lake text, Country text, Province text, Mountain text, Country text, Province text, River text, Country text, Province text, Sea text, Country text, Province text, River text, Country text, Province text, Name text, Islands text, Area real, Height real, Type text, Longitude real, Latitude real, Island text, Sea text, Lake text, River text, Country text, Organization text, Type text, Name text, Area real, Depth real, Altitude real, Type text, River text, Longitude real, Latitude real, Country text, Name text, Percentage real, City text, Province text, Country text, River text, Lake text, Sea text, City text, Province text, Country text, Island text, Sea1 text, Sea2 text, Name text, Mountains text, Height real, Type text, Longitude real, Latitude real, Mountain text, Island text, Abbreviation text, Name text, City text, Country text, Province text, Established date, Country text, Independence date, Dependent text, Government text, Country text, Population_Growth real, Infant_Mortality real, Name text, Country text, Population integer, Area real, Capital text, CapProv text, Country text, Name text, Percentage real, Name text, River text, Lake text, Sea text, Length real, SourceLongitude real, SourceLatitude real, Mountains text, SourceAltitude real, EstuaryLongitude real, EstuaryLatitude real, Name text, Depth real, Country text, Target text) | Calculate the population of Arab in each country? | SELECT T2.Percentage * T1.Population FROM country AS T1 INNER JOIN ethnicGroup AS T2 ON T1.Code = T2.Country WHERE T2.Name = 'Arab' | bird |
CREATE TABLE mondial_geo (Country1 text, Country2 text, Length real, Name text, Country text, Province text, Population integer, Longitude real, Latitude real, Name text, Area real, Name text, Code text, Capital text, Province text, Area real, Population integer, Name text, Area real, Longitude real, Latitude real, Country text, GDP real, Agriculture real, Service real, Industry real, Inflation real, Country text, Continent text, Percentage real, Country text, Name text, Percentage real, Desert text, Country text, Province text, River text, Country text, Province text, Island text, Country text, Province text, Lake text, Country text, Province text, Mountain text, Country text, Province text, River text, Country text, Province text, Sea text, Country text, Province text, River text, Country text, Province text, Name text, Islands text, Area real, Height real, Type text, Longitude real, Latitude real, Island text, Sea text, Lake text, River text, Country text, Organization text, Type text, Name text, Area real, Depth real, Altitude real, Type text, River text, Longitude real, Latitude real, Country text, Name text, Percentage real, City text, Province text, Country text, River text, Lake text, Sea text, City text, Province text, Country text, Island text, Sea1 text, Sea2 text, Name text, Mountains text, Height real, Type text, Longitude real, Latitude real, Mountain text, Island text, Abbreviation text, Name text, City text, Country text, Province text, Established date, Country text, Independence date, Dependent text, Government text, Country text, Population_Growth real, Infant_Mortality real, Name text, Country text, Population integer, Area real, Capital text, CapProv text, Country text, Name text, Percentage real, Name text, River text, Lake text, Sea text, Length real, SourceLongitude real, SourceLatitude real, Mountains text, SourceAltitude real, EstuaryLongitude real, EstuaryLatitude real, Name text, Depth real, Country text, Target text) | What is the population of African in 'Turks and Caicos Islands'? | SELECT T2.Percentage * T1.Population FROM country AS T1 INNER JOIN ethnicGroup AS T2 ON T1.Code = T2.Country WHERE T2.Name = 'African' AND T1.Name = 'Turks and Caicos Islands' | bird |
CREATE TABLE mondial_geo (Country1 text, Country2 text, Length real, Name text, Country text, Province text, Population integer, Longitude real, Latitude real, Name text, Area real, Name text, Code text, Capital text, Province text, Area real, Population integer, Name text, Area real, Longitude real, Latitude real, Country text, GDP real, Agriculture real, Service real, Industry real, Inflation real, Country text, Continent text, Percentage real, Country text, Name text, Percentage real, Desert text, Country text, Province text, River text, Country text, Province text, Island text, Country text, Province text, Lake text, Country text, Province text, Mountain text, Country text, Province text, River text, Country text, Province text, Sea text, Country text, Province text, River text, Country text, Province text, Name text, Islands text, Area real, Height real, Type text, Longitude real, Latitude real, Island text, Sea text, Lake text, River text, Country text, Organization text, Type text, Name text, Area real, Depth real, Altitude real, Type text, River text, Longitude real, Latitude real, Country text, Name text, Percentage real, City text, Province text, Country text, River text, Lake text, Sea text, City text, Province text, Country text, Island text, Sea1 text, Sea2 text, Name text, Mountains text, Height real, Type text, Longitude real, Latitude real, Mountain text, Island text, Abbreviation text, Name text, City text, Country text, Province text, Established date, Country text, Independence date, Dependent text, Government text, Country text, Population_Growth real, Infant_Mortality real, Name text, Country text, Population integer, Area real, Capital text, CapProv text, Country text, Name text, Percentage real, Name text, River text, Lake text, Sea text, Length real, SourceLongitude real, SourceLatitude real, Mountains text, SourceAltitude real, EstuaryLongitude real, EstuaryLatitude real, Name text, Depth real, Country text, Target text) | What is the number of growth population for country with the lowest infant mortality? | SELECT T2.Population_Growth * T1.Population FROM country AS T1 INNER JOIN population AS T2 ON T1.Code = T2.Country WHERE T2.Infant_Mortality IS NOT NULL ORDER BY T2.Infant_Mortality ASC LIMIT 1 | bird |
CREATE TABLE mondial_geo (Country1 text, Country2 text, Length real, Name text, Country text, Province text, Population integer, Longitude real, Latitude real, Name text, Area real, Name text, Code text, Capital text, Province text, Area real, Population integer, Name text, Area real, Longitude real, Latitude real, Country text, GDP real, Agriculture real, Service real, Industry real, Inflation real, Country text, Continent text, Percentage real, Country text, Name text, Percentage real, Desert text, Country text, Province text, River text, Country text, Province text, Island text, Country text, Province text, Lake text, Country text, Province text, Mountain text, Country text, Province text, River text, Country text, Province text, Sea text, Country text, Province text, River text, Country text, Province text, Name text, Islands text, Area real, Height real, Type text, Longitude real, Latitude real, Island text, Sea text, Lake text, River text, Country text, Organization text, Type text, Name text, Area real, Depth real, Altitude real, Type text, River text, Longitude real, Latitude real, Country text, Name text, Percentage real, City text, Province text, Country text, River text, Lake text, Sea text, City text, Province text, Country text, Island text, Sea1 text, Sea2 text, Name text, Mountains text, Height real, Type text, Longitude real, Latitude real, Mountain text, Island text, Abbreviation text, Name text, City text, Country text, Province text, Established date, Country text, Independence date, Dependent text, Government text, Country text, Population_Growth real, Infant_Mortality real, Name text, Country text, Population integer, Area real, Capital text, CapProv text, Country text, Name text, Percentage real, Name text, River text, Lake text, Sea text, Length real, SourceLongitude real, SourceLatitude real, Mountains text, SourceAltitude real, EstuaryLongitude real, EstuaryLatitude real, Name text, Depth real, Country text, Target text) | Among countries with more than 400,000 GDP, state its capital and population. | SELECT T1.Capital, T1.Population FROM country AS T1 INNER JOIN economy AS T2 ON T1.Code = T2.Country WHERE T2.GDP > 400000 | bird |
CREATE TABLE mondial_geo (Country1 text, Country2 text, Length real, Name text, Country text, Province text, Population integer, Longitude real, Latitude real, Name text, Area real, Name text, Code text, Capital text, Province text, Area real, Population integer, Name text, Area real, Longitude real, Latitude real, Country text, GDP real, Agriculture real, Service real, Industry real, Inflation real, Country text, Continent text, Percentage real, Country text, Name text, Percentage real, Desert text, Country text, Province text, River text, Country text, Province text, Island text, Country text, Province text, Lake text, Country text, Province text, Mountain text, Country text, Province text, River text, Country text, Province text, Sea text, Country text, Province text, River text, Country text, Province text, Name text, Islands text, Area real, Height real, Type text, Longitude real, Latitude real, Island text, Sea text, Lake text, River text, Country text, Organization text, Type text, Name text, Area real, Depth real, Altitude real, Type text, River text, Longitude real, Latitude real, Country text, Name text, Percentage real, City text, Province text, Country text, River text, Lake text, Sea text, City text, Province text, Country text, Island text, Sea1 text, Sea2 text, Name text, Mountains text, Height real, Type text, Longitude real, Latitude real, Mountain text, Island text, Abbreviation text, Name text, City text, Country text, Province text, Established date, Country text, Independence date, Dependent text, Government text, Country text, Population_Growth real, Infant_Mortality real, Name text, Country text, Population integer, Area real, Capital text, CapProv text, Country text, Name text, Percentage real, Name text, River text, Lake text, Sea text, Length real, SourceLongitude real, SourceLatitude real, Mountains text, SourceAltitude real, EstuaryLongitude real, EstuaryLatitude real, Name text, Depth real, Country text, Target text) | Calculate the service of GDP for Brazil. | SELECT T2.Service * T2.GDP FROM country AS T1 INNER JOIN economy AS T2 ON T1.Code = T2.Country WHERE T1.Name = 'Brazil' | bird |
CREATE TABLE mondial_geo (Country1 text, Country2 text, Length real, Name text, Country text, Province text, Population integer, Longitude real, Latitude real, Name text, Area real, Name text, Code text, Capital text, Province text, Area real, Population integer, Name text, Area real, Longitude real, Latitude real, Country text, GDP real, Agriculture real, Service real, Industry real, Inflation real, Country text, Continent text, Percentage real, Country text, Name text, Percentage real, Desert text, Country text, Province text, River text, Country text, Province text, Island text, Country text, Province text, Lake text, Country text, Province text, Mountain text, Country text, Province text, River text, Country text, Province text, Sea text, Country text, Province text, River text, Country text, Province text, Name text, Islands text, Area real, Height real, Type text, Longitude real, Latitude real, Island text, Sea text, Lake text, River text, Country text, Organization text, Type text, Name text, Area real, Depth real, Altitude real, Type text, River text, Longitude real, Latitude real, Country text, Name text, Percentage real, City text, Province text, Country text, River text, Lake text, Sea text, City text, Province text, Country text, Island text, Sea1 text, Sea2 text, Name text, Mountains text, Height real, Type text, Longitude real, Latitude real, Mountain text, Island text, Abbreviation text, Name text, City text, Country text, Province text, Established date, Country text, Independence date, Dependent text, Government text, Country text, Population_Growth real, Infant_Mortality real, Name text, Country text, Population integer, Area real, Capital text, CapProv text, Country text, Name text, Percentage real, Name text, River text, Lake text, Sea text, Length real, SourceLongitude real, SourceLatitude real, Mountains text, SourceAltitude real, EstuaryLongitude real, EstuaryLatitude real, Name text, Depth real, Country text, Target text) | Which country has the highest infant mortality? Also state its population growth. | SELECT T1.Name, T2.Population_Growth FROM country AS T1 INNER JOIN population AS T2 ON T1.Code = T2.Country ORDER BY T2.Infant_Mortality DESC LIMIT 1 | bird |
CREATE TABLE mondial_geo (Country1 text, Country2 text, Length real, Name text, Country text, Province text, Population integer, Longitude real, Latitude real, Name text, Area real, Name text, Code text, Capital text, Province text, Area real, Population integer, Name text, Area real, Longitude real, Latitude real, Country text, GDP real, Agriculture real, Service real, Industry real, Inflation real, Country text, Continent text, Percentage real, Country text, Name text, Percentage real, Desert text, Country text, Province text, River text, Country text, Province text, Island text, Country text, Province text, Lake text, Country text, Province text, Mountain text, Country text, Province text, River text, Country text, Province text, Sea text, Country text, Province text, River text, Country text, Province text, Name text, Islands text, Area real, Height real, Type text, Longitude real, Latitude real, Island text, Sea text, Lake text, River text, Country text, Organization text, Type text, Name text, Area real, Depth real, Altitude real, Type text, River text, Longitude real, Latitude real, Country text, Name text, Percentage real, City text, Province text, Country text, River text, Lake text, Sea text, City text, Province text, Country text, Island text, Sea1 text, Sea2 text, Name text, Mountains text, Height real, Type text, Longitude real, Latitude real, Mountain text, Island text, Abbreviation text, Name text, City text, Country text, Province text, Established date, Country text, Independence date, Dependent text, Government text, Country text, Population_Growth real, Infant_Mortality real, Name text, Country text, Population integer, Area real, Capital text, CapProv text, Country text, Name text, Percentage real, Name text, River text, Lake text, Sea text, Length real, SourceLongitude real, SourceLatitude real, Mountains text, SourceAltitude real, EstuaryLongitude real, EstuaryLatitude real, Name text, Depth real, Country text, Target text) | List all countries with negative growth in population. State the country, population and growth. | SELECT T1.Name, T1.Population, T2.Population_Growth FROM country AS T1 INNER JOIN population AS T2 ON T1.Code = T2.Country WHERE T2.Population_Growth < 0 | bird |
CREATE TABLE mondial_geo (Country1 text, Country2 text, Length real, Name text, Country text, Province text, Population integer, Longitude real, Latitude real, Name text, Area real, Name text, Code text, Capital text, Province text, Area real, Population integer, Name text, Area real, Longitude real, Latitude real, Country text, GDP real, Agriculture real, Service real, Industry real, Inflation real, Country text, Continent text, Percentage real, Country text, Name text, Percentage real, Desert text, Country text, Province text, River text, Country text, Province text, Island text, Country text, Province text, Lake text, Country text, Province text, Mountain text, Country text, Province text, River text, Country text, Province text, Sea text, Country text, Province text, River text, Country text, Province text, Name text, Islands text, Area real, Height real, Type text, Longitude real, Latitude real, Island text, Sea text, Lake text, River text, Country text, Organization text, Type text, Name text, Area real, Depth real, Altitude real, Type text, River text, Longitude real, Latitude real, Country text, Name text, Percentage real, City text, Province text, Country text, River text, Lake text, Sea text, City text, Province text, Country text, Island text, Sea1 text, Sea2 text, Name text, Mountains text, Height real, Type text, Longitude real, Latitude real, Mountain text, Island text, Abbreviation text, Name text, City text, Country text, Province text, Established date, Country text, Independence date, Dependent text, Government text, Country text, Population_Growth real, Infant_Mortality real, Name text, Country text, Population integer, Area real, Capital text, CapProv text, Country text, Name text, Percentage real, Name text, River text, Lake text, Sea text, Length real, SourceLongitude real, SourceLatitude real, Mountains text, SourceAltitude real, EstuaryLongitude real, EstuaryLatitude real, Name text, Depth real, Country text, Target text) | For countries with area between 500000 to 1000000, state the country and infant mortality rate. | SELECT T1.Name, T2.Infant_Mortality FROM country AS T1 INNER JOIN population AS T2 ON T1.Code = T2.Country WHERE T1.Area BETWEEN 500000 AND 1000000 | bird |
CREATE TABLE mondial_geo (Country1 text, Country2 text, Length real, Name text, Country text, Province text, Population integer, Longitude real, Latitude real, Name text, Area real, Name text, Code text, Capital text, Province text, Area real, Population integer, Name text, Area real, Longitude real, Latitude real, Country text, GDP real, Agriculture real, Service real, Industry real, Inflation real, Country text, Continent text, Percentage real, Country text, Name text, Percentage real, Desert text, Country text, Province text, River text, Country text, Province text, Island text, Country text, Province text, Lake text, Country text, Province text, Mountain text, Country text, Province text, River text, Country text, Province text, Sea text, Country text, Province text, River text, Country text, Province text, Name text, Islands text, Area real, Height real, Type text, Longitude real, Latitude real, Island text, Sea text, Lake text, River text, Country text, Organization text, Type text, Name text, Area real, Depth real, Altitude real, Type text, River text, Longitude real, Latitude real, Country text, Name text, Percentage real, City text, Province text, Country text, River text, Lake text, Sea text, City text, Province text, Country text, Island text, Sea1 text, Sea2 text, Name text, Mountains text, Height real, Type text, Longitude real, Latitude real, Mountain text, Island text, Abbreviation text, Name text, City text, Country text, Province text, Established date, Country text, Independence date, Dependent text, Government text, Country text, Population_Growth real, Infant_Mortality real, Name text, Country text, Population integer, Area real, Capital text, CapProv text, Country text, Name text, Percentage real, Name text, River text, Lake text, Sea text, Length real, SourceLongitude real, SourceLatitude real, Mountains text, SourceAltitude real, EstuaryLongitude real, EstuaryLatitude real, Name text, Depth real, Country text, Target text) | Among the countries with more than 3% population growth rate, state the country name in full along with its GDP. | SELECT T1.Name, T3.GDP FROM country AS T1 INNER JOIN population AS T2 ON T1.Code = T2.Country INNER JOIN economy AS T3 ON T3.Country = T2.Country WHERE T2.Population_Growth > 3 | bird |
CREATE TABLE mondial_geo (Country1 text, Country2 text, Length real, Name text, Country text, Province text, Population integer, Longitude real, Latitude real, Name text, Area real, Name text, Code text, Capital text, Province text, Area real, Population integer, Name text, Area real, Longitude real, Latitude real, Country text, GDP real, Agriculture real, Service real, Industry real, Inflation real, Country text, Continent text, Percentage real, Country text, Name text, Percentage real, Desert text, Country text, Province text, River text, Country text, Province text, Island text, Country text, Province text, Lake text, Country text, Province text, Mountain text, Country text, Province text, River text, Country text, Province text, Sea text, Country text, Province text, River text, Country text, Province text, Name text, Islands text, Area real, Height real, Type text, Longitude real, Latitude real, Island text, Sea text, Lake text, River text, Country text, Organization text, Type text, Name text, Area real, Depth real, Altitude real, Type text, River text, Longitude real, Latitude real, Country text, Name text, Percentage real, City text, Province text, Country text, River text, Lake text, Sea text, City text, Province text, Country text, Island text, Sea1 text, Sea2 text, Name text, Mountains text, Height real, Type text, Longitude real, Latitude real, Mountain text, Island text, Abbreviation text, Name text, City text, Country text, Province text, Established date, Country text, Independence date, Dependent text, Government text, Country text, Population_Growth real, Infant_Mortality real, Name text, Country text, Population integer, Area real, Capital text, CapProv text, Country text, Name text, Percentage real, Name text, River text, Lake text, Sea text, Length real, SourceLongitude real, SourceLatitude real, Mountains text, SourceAltitude real, EstuaryLongitude real, EstuaryLatitude real, Name text, Depth real, Country text, Target text) | What is the infant mortality rate for Ethiopia? | SELECT T2.Infant_Mortality FROM country AS T1 INNER JOIN population AS T2 ON T1.Code = T2.Country WHERE T1.Name = 'Ethiopia' | bird |
CREATE TABLE mondial_geo (Country1 text, Country2 text, Length real, Name text, Country text, Province text, Population integer, Longitude real, Latitude real, Name text, Area real, Name text, Code text, Capital text, Province text, Area real, Population integer, Name text, Area real, Longitude real, Latitude real, Country text, GDP real, Agriculture real, Service real, Industry real, Inflation real, Country text, Continent text, Percentage real, Country text, Name text, Percentage real, Desert text, Country text, Province text, River text, Country text, Province text, Island text, Country text, Province text, Lake text, Country text, Province text, Mountain text, Country text, Province text, River text, Country text, Province text, Sea text, Country text, Province text, River text, Country text, Province text, Name text, Islands text, Area real, Height real, Type text, Longitude real, Latitude real, Island text, Sea text, Lake text, River text, Country text, Organization text, Type text, Name text, Area real, Depth real, Altitude real, Type text, River text, Longitude real, Latitude real, Country text, Name text, Percentage real, City text, Province text, Country text, River text, Lake text, Sea text, City text, Province text, Country text, Island text, Sea1 text, Sea2 text, Name text, Mountains text, Height real, Type text, Longitude real, Latitude real, Mountain text, Island text, Abbreviation text, Name text, City text, Country text, Province text, Established date, Country text, Independence date, Dependent text, Government text, Country text, Population_Growth real, Infant_Mortality real, Name text, Country text, Population integer, Area real, Capital text, CapProv text, Country text, Name text, Percentage real, Name text, River text, Lake text, Sea text, Length real, SourceLongitude real, SourceLatitude real, Mountains text, SourceAltitude real, EstuaryLongitude real, EstuaryLatitude real, Name text, Depth real, Country text, Target text) | How much does the gross domestic products goes to the industry sector for Singapore? | SELECT T2.GDP * T2.Industry FROM country AS T1 INNER JOIN economy AS T2 ON T1.Code = T2.Country WHERE T1.Name = 'Singapore' | bird |
CREATE TABLE mondial_geo (Country1 text, Country2 text, Length real, Name text, Country text, Province text, Population integer, Longitude real, Latitude real, Name text, Area real, Name text, Code text, Capital text, Province text, Area real, Population integer, Name text, Area real, Longitude real, Latitude real, Country text, GDP real, Agriculture real, Service real, Industry real, Inflation real, Country text, Continent text, Percentage real, Country text, Name text, Percentage real, Desert text, Country text, Province text, River text, Country text, Province text, Island text, Country text, Province text, Lake text, Country text, Province text, Mountain text, Country text, Province text, River text, Country text, Province text, Sea text, Country text, Province text, River text, Country text, Province text, Name text, Islands text, Area real, Height real, Type text, Longitude real, Latitude real, Island text, Sea text, Lake text, River text, Country text, Organization text, Type text, Name text, Area real, Depth real, Altitude real, Type text, River text, Longitude real, Latitude real, Country text, Name text, Percentage real, City text, Province text, Country text, River text, Lake text, Sea text, City text, Province text, Country text, Island text, Sea1 text, Sea2 text, Name text, Mountains text, Height real, Type text, Longitude real, Latitude real, Mountain text, Island text, Abbreviation text, Name text, City text, Country text, Province text, Established date, Country text, Independence date, Dependent text, Government text, Country text, Population_Growth real, Infant_Mortality real, Name text, Country text, Population integer, Area real, Capital text, CapProv text, Country text, Name text, Percentage real, Name text, River text, Lake text, Sea text, Length real, SourceLongitude real, SourceLatitude real, Mountains text, SourceAltitude real, EstuaryLongitude real, EstuaryLatitude real, Name text, Depth real, Country text, Target text) | How much is her GDP in agriculture for the country with the least area? | SELECT T2.GDP * T2.Agriculture FROM country AS T1 INNER JOIN economy AS T2 ON T1.Code = T2.Country ORDER BY T1.Area ASC LIMIT 1 | bird |
CREATE TABLE mondial_geo (Country1 text, Country2 text, Length real, Name text, Country text, Province text, Population integer, Longitude real, Latitude real, Name text, Area real, Name text, Code text, Capital text, Province text, Area real, Population integer, Name text, Area real, Longitude real, Latitude real, Country text, GDP real, Agriculture real, Service real, Industry real, Inflation real, Country text, Continent text, Percentage real, Country text, Name text, Percentage real, Desert text, Country text, Province text, River text, Country text, Province text, Island text, Country text, Province text, Lake text, Country text, Province text, Mountain text, Country text, Province text, River text, Country text, Province text, Sea text, Country text, Province text, River text, Country text, Province text, Name text, Islands text, Area real, Height real, Type text, Longitude real, Latitude real, Island text, Sea text, Lake text, River text, Country text, Organization text, Type text, Name text, Area real, Depth real, Altitude real, Type text, River text, Longitude real, Latitude real, Country text, Name text, Percentage real, City text, Province text, Country text, River text, Lake text, Sea text, City text, Province text, Country text, Island text, Sea1 text, Sea2 text, Name text, Mountains text, Height real, Type text, Longitude real, Latitude real, Mountain text, Island text, Abbreviation text, Name text, City text, Country text, Province text, Established date, Country text, Independence date, Dependent text, Government text, Country text, Population_Growth real, Infant_Mortality real, Name text, Country text, Population integer, Area real, Capital text, CapProv text, Country text, Name text, Percentage real, Name text, River text, Lake text, Sea text, Length real, SourceLongitude real, SourceLatitude real, Mountains text, SourceAltitude real, EstuaryLongitude real, EstuaryLatitude real, Name text, Depth real, Country text, Target text) | Which country has the biggest percentage of the albanian ethnic group? | SELECT T1.Name FROM country AS T1 INNER JOIN ethnicGroup AS T2 ON T1.Code = T2.Country WHERE T2.Name = 'Albanian' ORDER BY T2.Percentage DESC LIMIT 1 | bird |
CREATE TABLE mondial_geo (Country1 text, Country2 text, Length real, Name text, Country text, Province text, Population integer, Longitude real, Latitude real, Name text, Area real, Name text, Code text, Capital text, Province text, Area real, Population integer, Name text, Area real, Longitude real, Latitude real, Country text, GDP real, Agriculture real, Service real, Industry real, Inflation real, Country text, Continent text, Percentage real, Country text, Name text, Percentage real, Desert text, Country text, Province text, River text, Country text, Province text, Island text, Country text, Province text, Lake text, Country text, Province text, Mountain text, Country text, Province text, River text, Country text, Province text, Sea text, Country text, Province text, River text, Country text, Province text, Name text, Islands text, Area real, Height real, Type text, Longitude real, Latitude real, Island text, Sea text, Lake text, River text, Country text, Organization text, Type text, Name text, Area real, Depth real, Altitude real, Type text, River text, Longitude real, Latitude real, Country text, Name text, Percentage real, City text, Province text, Country text, River text, Lake text, Sea text, City text, Province text, Country text, Island text, Sea1 text, Sea2 text, Name text, Mountains text, Height real, Type text, Longitude real, Latitude real, Mountain text, Island text, Abbreviation text, Name text, City text, Country text, Province text, Established date, Country text, Independence date, Dependent text, Government text, Country text, Population_Growth real, Infant_Mortality real, Name text, Country text, Population integer, Area real, Capital text, CapProv text, Country text, Name text, Percentage real, Name text, River text, Lake text, Sea text, Length real, SourceLongitude real, SourceLatitude real, Mountains text, SourceAltitude real, EstuaryLongitude real, EstuaryLatitude real, Name text, Depth real, Country text, Target text) | Among the countries with the African ethnic group, how many of them has a population of over 10000000? | SELECT COUNT(T1.Name) FROM country AS T1 INNER JOIN ethnicGroup AS T2 ON T1.Code = T2.Country WHERE T2.Name = 'African' AND T1.Area > 10000000 | bird |
CREATE TABLE mondial_geo (Country1 text, Country2 text, Length real, Name text, Country text, Province text, Population integer, Longitude real, Latitude real, Name text, Area real, Name text, Code text, Capital text, Province text, Area real, Population integer, Name text, Area real, Longitude real, Latitude real, Country text, GDP real, Agriculture real, Service real, Industry real, Inflation real, Country text, Continent text, Percentage real, Country text, Name text, Percentage real, Desert text, Country text, Province text, River text, Country text, Province text, Island text, Country text, Province text, Lake text, Country text, Province text, Mountain text, Country text, Province text, River text, Country text, Province text, Sea text, Country text, Province text, River text, Country text, Province text, Name text, Islands text, Area real, Height real, Type text, Longitude real, Latitude real, Island text, Sea text, Lake text, River text, Country text, Organization text, Type text, Name text, Area real, Depth real, Altitude real, Type text, River text, Longitude real, Latitude real, Country text, Name text, Percentage real, City text, Province text, Country text, River text, Lake text, Sea text, City text, Province text, Country text, Island text, Sea1 text, Sea2 text, Name text, Mountains text, Height real, Type text, Longitude real, Latitude real, Mountain text, Island text, Abbreviation text, Name text, City text, Country text, Province text, Established date, Country text, Independence date, Dependent text, Government text, Country text, Population_Growth real, Infant_Mortality real, Name text, Country text, Population integer, Area real, Capital text, CapProv text, Country text, Name text, Percentage real, Name text, River text, Lake text, Sea text, Length real, SourceLongitude real, SourceLatitude real, Mountains text, SourceAltitude real, EstuaryLongitude real, EstuaryLatitude real, Name text, Depth real, Country text, Target text) | Please list the name of the countries with over 5 ethnic groups. | SELECT T1.Name FROM country AS T1 INNER JOIN ethnicGroup AS T2 ON T1.Code = T2.Country GROUP BY T1.Name HAVING COUNT(T1.Name) > 5 | bird |
CREATE TABLE mondial_geo (Country1 text, Country2 text, Length real, Name text, Country text, Province text, Population integer, Longitude real, Latitude real, Name text, Area real, Name text, Code text, Capital text, Province text, Area real, Population integer, Name text, Area real, Longitude real, Latitude real, Country text, GDP real, Agriculture real, Service real, Industry real, Inflation real, Country text, Continent text, Percentage real, Country text, Name text, Percentage real, Desert text, Country text, Province text, River text, Country text, Province text, Island text, Country text, Province text, Lake text, Country text, Province text, Mountain text, Country text, Province text, River text, Country text, Province text, Sea text, Country text, Province text, River text, Country text, Province text, Name text, Islands text, Area real, Height real, Type text, Longitude real, Latitude real, Island text, Sea text, Lake text, River text, Country text, Organization text, Type text, Name text, Area real, Depth real, Altitude real, Type text, River text, Longitude real, Latitude real, Country text, Name text, Percentage real, City text, Province text, Country text, River text, Lake text, Sea text, City text, Province text, Country text, Island text, Sea1 text, Sea2 text, Name text, Mountains text, Height real, Type text, Longitude real, Latitude real, Mountain text, Island text, Abbreviation text, Name text, City text, Country text, Province text, Established date, Country text, Independence date, Dependent text, Government text, Country text, Population_Growth real, Infant_Mortality real, Name text, Country text, Population integer, Area real, Capital text, CapProv text, Country text, Name text, Percentage real, Name text, River text, Lake text, Sea text, Length real, SourceLongitude real, SourceLatitude real, Mountains text, SourceAltitude real, EstuaryLongitude real, EstuaryLatitude real, Name text, Depth real, Country text, Target text) | Which country has the highest GDP? | SELECT T1.Name FROM country AS T1 INNER JOIN economy AS T2 ON T1.Code = T2.Country ORDER BY T2.GDP DESC LIMIT 1 | bird |
CREATE TABLE mondial_geo (Country1 text, Country2 text, Length real, Name text, Country text, Province text, Population integer, Longitude real, Latitude real, Name text, Area real, Name text, Code text, Capital text, Province text, Area real, Population integer, Name text, Area real, Longitude real, Latitude real, Country text, GDP real, Agriculture real, Service real, Industry real, Inflation real, Country text, Continent text, Percentage real, Country text, Name text, Percentage real, Desert text, Country text, Province text, River text, Country text, Province text, Island text, Country text, Province text, Lake text, Country text, Province text, Mountain text, Country text, Province text, River text, Country text, Province text, Sea text, Country text, Province text, River text, Country text, Province text, Name text, Islands text, Area real, Height real, Type text, Longitude real, Latitude real, Island text, Sea text, Lake text, River text, Country text, Organization text, Type text, Name text, Area real, Depth real, Altitude real, Type text, River text, Longitude real, Latitude real, Country text, Name text, Percentage real, City text, Province text, Country text, River text, Lake text, Sea text, City text, Province text, Country text, Island text, Sea1 text, Sea2 text, Name text, Mountains text, Height real, Type text, Longitude real, Latitude real, Mountain text, Island text, Abbreviation text, Name text, City text, Country text, Province text, Established date, Country text, Independence date, Dependent text, Government text, Country text, Population_Growth real, Infant_Mortality real, Name text, Country text, Population integer, Area real, Capital text, CapProv text, Country text, Name text, Percentage real, Name text, River text, Lake text, Sea text, Length real, SourceLongitude real, SourceLatitude real, Mountains text, SourceAltitude real, EstuaryLongitude real, EstuaryLatitude real, Name text, Depth real, Country text, Target text) | Among the countries with a population of over 10000000, how many of them have a GDP of over 500000? | SELECT COUNT(T1.Name) FROM country AS T1 INNER JOIN economy AS T2 ON T1.Code = T2.Country WHERE T2.GDP > 500000 AND T1.Population > 10000000 | bird |
CREATE TABLE mondial_geo (Country1 text, Country2 text, Length real, Name text, Country text, Province text, Population integer, Longitude real, Latitude real, Name text, Area real, Name text, Code text, Capital text, Province text, Area real, Population integer, Name text, Area real, Longitude real, Latitude real, Country text, GDP real, Agriculture real, Service real, Industry real, Inflation real, Country text, Continent text, Percentage real, Country text, Name text, Percentage real, Desert text, Country text, Province text, River text, Country text, Province text, Island text, Country text, Province text, Lake text, Country text, Province text, Mountain text, Country text, Province text, River text, Country text, Province text, Sea text, Country text, Province text, River text, Country text, Province text, Name text, Islands text, Area real, Height real, Type text, Longitude real, Latitude real, Island text, Sea text, Lake text, River text, Country text, Organization text, Type text, Name text, Area real, Depth real, Altitude real, Type text, River text, Longitude real, Latitude real, Country text, Name text, Percentage real, City text, Province text, Country text, River text, Lake text, Sea text, City text, Province text, Country text, Island text, Sea1 text, Sea2 text, Name text, Mountains text, Height real, Type text, Longitude real, Latitude real, Mountain text, Island text, Abbreviation text, Name text, City text, Country text, Province text, Established date, Country text, Independence date, Dependent text, Government text, Country text, Population_Growth real, Infant_Mortality real, Name text, Country text, Population integer, Area real, Capital text, CapProv text, Country text, Name text, Percentage real, Name text, River text, Lake text, Sea text, Length real, SourceLongitude real, SourceLatitude real, Mountains text, SourceAltitude real, EstuaryLongitude real, EstuaryLatitude real, Name text, Depth real, Country text, Target text) | Please list the capital cities of the countries with an inflation rate under 2. | SELECT T1.Capital FROM country AS T1 INNER JOIN economy AS T2 ON T1.Code = T2.Country WHERE T2.Inflation < 2 | bird |
CREATE TABLE mondial_geo (Country1 text, Country2 text, Length real, Name text, Country text, Province text, Population integer, Longitude real, Latitude real, Name text, Area real, Name text, Code text, Capital text, Province text, Area real, Population integer, Name text, Area real, Longitude real, Latitude real, Country text, GDP real, Agriculture real, Service real, Industry real, Inflation real, Country text, Continent text, Percentage real, Country text, Name text, Percentage real, Desert text, Country text, Province text, River text, Country text, Province text, Island text, Country text, Province text, Lake text, Country text, Province text, Mountain text, Country text, Province text, River text, Country text, Province text, Sea text, Country text, Province text, River text, Country text, Province text, Name text, Islands text, Area real, Height real, Type text, Longitude real, Latitude real, Island text, Sea text, Lake text, River text, Country text, Organization text, Type text, Name text, Area real, Depth real, Altitude real, Type text, River text, Longitude real, Latitude real, Country text, Name text, Percentage real, City text, Province text, Country text, River text, Lake text, Sea text, City text, Province text, Country text, Island text, Sea1 text, Sea2 text, Name text, Mountains text, Height real, Type text, Longitude real, Latitude real, Mountain text, Island text, Abbreviation text, Name text, City text, Country text, Province text, Established date, Country text, Independence date, Dependent text, Government text, Country text, Population_Growth real, Infant_Mortality real, Name text, Country text, Population integer, Area real, Capital text, CapProv text, Country text, Name text, Percentage real, Name text, River text, Lake text, Sea text, Length real, SourceLongitude real, SourceLatitude real, Mountains text, SourceAltitude real, EstuaryLongitude real, EstuaryLatitude real, Name text, Depth real, Country text, Target text) | Which country has the lowest inflation rate? | SELECT T1.Name FROM country AS T1 INNER JOIN economy AS T2 ON T1.Code = T2.Country WHERE T2.Inflation IS NOT NULL ORDER BY T2.Inflation ASC LIMIT 1 | bird |
CREATE TABLE mondial_geo (Country1 text, Country2 text, Length real, Name text, Country text, Province text, Population integer, Longitude real, Latitude real, Name text, Area real, Name text, Code text, Capital text, Province text, Area real, Population integer, Name text, Area real, Longitude real, Latitude real, Country text, GDP real, Agriculture real, Service real, Industry real, Inflation real, Country text, Continent text, Percentage real, Country text, Name text, Percentage real, Desert text, Country text, Province text, River text, Country text, Province text, Island text, Country text, Province text, Lake text, Country text, Province text, Mountain text, Country text, Province text, River text, Country text, Province text, Sea text, Country text, Province text, River text, Country text, Province text, Name text, Islands text, Area real, Height real, Type text, Longitude real, Latitude real, Island text, Sea text, Lake text, River text, Country text, Organization text, Type text, Name text, Area real, Depth real, Altitude real, Type text, River text, Longitude real, Latitude real, Country text, Name text, Percentage real, City text, Province text, Country text, River text, Lake text, Sea text, City text, Province text, Country text, Island text, Sea1 text, Sea2 text, Name text, Mountains text, Height real, Type text, Longitude real, Latitude real, Mountain text, Island text, Abbreviation text, Name text, City text, Country text, Province text, Established date, Country text, Independence date, Dependent text, Government text, Country text, Population_Growth real, Infant_Mortality real, Name text, Country text, Population integer, Area real, Capital text, CapProv text, Country text, Name text, Percentage real, Name text, River text, Lake text, Sea text, Length real, SourceLongitude real, SourceLatitude real, Mountains text, SourceAltitude real, EstuaryLongitude real, EstuaryLatitude real, Name text, Depth real, Country text, Target text) | Among the countries whose agriculture percentage of the GDP is under 50%, how many of them have an area of over 8000000? | SELECT COUNT(T1.Name) FROM country AS T1 INNER JOIN economy AS T2 ON T1.Code = T2.Country WHERE T2.Agriculture < 50 AND T1.Area > 8000000 | bird |
CREATE TABLE mondial_geo (Country1 text, Country2 text, Length real, Name text, Country text, Province text, Population integer, Longitude real, Latitude real, Name text, Area real, Name text, Code text, Capital text, Province text, Area real, Population integer, Name text, Area real, Longitude real, Latitude real, Country text, GDP real, Agriculture real, Service real, Industry real, Inflation real, Country text, Continent text, Percentage real, Country text, Name text, Percentage real, Desert text, Country text, Province text, River text, Country text, Province text, Island text, Country text, Province text, Lake text, Country text, Province text, Mountain text, Country text, Province text, River text, Country text, Province text, Sea text, Country text, Province text, River text, Country text, Province text, Name text, Islands text, Area real, Height real, Type text, Longitude real, Latitude real, Island text, Sea text, Lake text, River text, Country text, Organization text, Type text, Name text, Area real, Depth real, Altitude real, Type text, River text, Longitude real, Latitude real, Country text, Name text, Percentage real, City text, Province text, Country text, River text, Lake text, Sea text, City text, Province text, Country text, Island text, Sea1 text, Sea2 text, Name text, Mountains text, Height real, Type text, Longitude real, Latitude real, Mountain text, Island text, Abbreviation text, Name text, City text, Country text, Province text, Established date, Country text, Independence date, Dependent text, Government text, Country text, Population_Growth real, Infant_Mortality real, Name text, Country text, Population integer, Area real, Capital text, CapProv text, Country text, Name text, Percentage real, Name text, River text, Lake text, Sea text, Length real, SourceLongitude real, SourceLatitude real, Mountains text, SourceAltitude real, EstuaryLongitude real, EstuaryLatitude real, Name text, Depth real, Country text, Target text) | How many cities have a salt lake located in it? | SELECT COUNT(T1.City) FROM located AS T1 INNER JOIN lake AS T2 ON T1.Lake = T2.Name WHERE T2.Type = 'salt' | bird |
CREATE TABLE mondial_geo (Country1 text, Country2 text, Length real, Name text, Country text, Province text, Population integer, Longitude real, Latitude real, Name text, Area real, Name text, Code text, Capital text, Province text, Area real, Population integer, Name text, Area real, Longitude real, Latitude real, Country text, GDP real, Agriculture real, Service real, Industry real, Inflation real, Country text, Continent text, Percentage real, Country text, Name text, Percentage real, Desert text, Country text, Province text, River text, Country text, Province text, Island text, Country text, Province text, Lake text, Country text, Province text, Mountain text, Country text, Province text, River text, Country text, Province text, Sea text, Country text, Province text, River text, Country text, Province text, Name text, Islands text, Area real, Height real, Type text, Longitude real, Latitude real, Island text, Sea text, Lake text, River text, Country text, Organization text, Type text, Name text, Area real, Depth real, Altitude real, Type text, River text, Longitude real, Latitude real, Country text, Name text, Percentage real, City text, Province text, Country text, River text, Lake text, Sea text, City text, Province text, Country text, Island text, Sea1 text, Sea2 text, Name text, Mountains text, Height real, Type text, Longitude real, Latitude real, Mountain text, Island text, Abbreviation text, Name text, City text, Country text, Province text, Established date, Country text, Independence date, Dependent text, Government text, Country text, Population_Growth real, Infant_Mortality real, Name text, Country text, Population integer, Area real, Capital text, CapProv text, Country text, Name text, Percentage real, Name text, River text, Lake text, Sea text, Length real, SourceLongitude real, SourceLatitude real, Mountains text, SourceAltitude real, EstuaryLongitude real, EstuaryLatitude real, Name text, Depth real, Country text, Target text) | Please list the depth of the lakes that are located in the Province of Albania. | SELECT T2.Depth FROM located AS T1 INNER JOIN lake AS T2 ON T1.Lake = T2.Name WHERE T1.Province = 'Albania' | bird |
CREATE TABLE mondial_geo (Country1 text, Country2 text, Length real, Name text, Country text, Province text, Population integer, Longitude real, Latitude real, Name text, Area real, Name text, Code text, Capital text, Province text, Area real, Population integer, Name text, Area real, Longitude real, Latitude real, Country text, GDP real, Agriculture real, Service real, Industry real, Inflation real, Country text, Continent text, Percentage real, Country text, Name text, Percentage real, Desert text, Country text, Province text, River text, Country text, Province text, Island text, Country text, Province text, Lake text, Country text, Province text, Mountain text, Country text, Province text, River text, Country text, Province text, Sea text, Country text, Province text, River text, Country text, Province text, Name text, Islands text, Area real, Height real, Type text, Longitude real, Latitude real, Island text, Sea text, Lake text, River text, Country text, Organization text, Type text, Name text, Area real, Depth real, Altitude real, Type text, River text, Longitude real, Latitude real, Country text, Name text, Percentage real, City text, Province text, Country text, River text, Lake text, Sea text, City text, Province text, Country text, Island text, Sea1 text, Sea2 text, Name text, Mountains text, Height real, Type text, Longitude real, Latitude real, Mountain text, Island text, Abbreviation text, Name text, City text, Country text, Province text, Established date, Country text, Independence date, Dependent text, Government text, Country text, Population_Growth real, Infant_Mortality real, Name text, Country text, Population integer, Area real, Capital text, CapProv text, Country text, Name text, Percentage real, Name text, River text, Lake text, Sea text, Length real, SourceLongitude real, SourceLatitude real, Mountains text, SourceAltitude real, EstuaryLongitude real, EstuaryLatitude real, Name text, Depth real, Country text, Target text) | The lake with the highest altitude is located in which city? | SELECT T2.City FROM lake AS T1 LEFT JOIN located AS T2 ON T2.Lake = T1.Name ORDER BY T1.Altitude DESC LIMIT 1 | bird |
CREATE TABLE mondial_geo (Country1 text, Country2 text, Length real, Name text, Country text, Province text, Population integer, Longitude real, Latitude real, Name text, Area real, Name text, Code text, Capital text, Province text, Area real, Population integer, Name text, Area real, Longitude real, Latitude real, Country text, GDP real, Agriculture real, Service real, Industry real, Inflation real, Country text, Continent text, Percentage real, Country text, Name text, Percentage real, Desert text, Country text, Province text, River text, Country text, Province text, Island text, Country text, Province text, Lake text, Country text, Province text, Mountain text, Country text, Province text, River text, Country text, Province text, Sea text, Country text, Province text, River text, Country text, Province text, Name text, Islands text, Area real, Height real, Type text, Longitude real, Latitude real, Island text, Sea text, Lake text, River text, Country text, Organization text, Type text, Name text, Area real, Depth real, Altitude real, Type text, River text, Longitude real, Latitude real, Country text, Name text, Percentage real, City text, Province text, Country text, River text, Lake text, Sea text, City text, Province text, Country text, Island text, Sea1 text, Sea2 text, Name text, Mountains text, Height real, Type text, Longitude real, Latitude real, Mountain text, Island text, Abbreviation text, Name text, City text, Country text, Province text, Established date, Country text, Independence date, Dependent text, Government text, Country text, Population_Growth real, Infant_Mortality real, Name text, Country text, Population integer, Area real, Capital text, CapProv text, Country text, Name text, Percentage real, Name text, River text, Lake text, Sea text, Length real, SourceLongitude real, SourceLatitude real, Mountains text, SourceAltitude real, EstuaryLongitude real, EstuaryLatitude real, Name text, Depth real, Country text, Target text) | How many lakes in the Canary Islands cover an area of over 1000000? | SELECT COUNT(T2.Name) FROM located AS T1 INNER JOIN lake AS T2 ON T1.Lake = T2.Name WHERE T1.Province = 'Canary Islands' AND T2.Area > 1000000 | bird |
CREATE TABLE mondial_geo (Country1 text, Country2 text, Length real, Name text, Country text, Province text, Population integer, Longitude real, Latitude real, Name text, Area real, Name text, Code text, Capital text, Province text, Area real, Population integer, Name text, Area real, Longitude real, Latitude real, Country text, GDP real, Agriculture real, Service real, Industry real, Inflation real, Country text, Continent text, Percentage real, Country text, Name text, Percentage real, Desert text, Country text, Province text, River text, Country text, Province text, Island text, Country text, Province text, Lake text, Country text, Province text, Mountain text, Country text, Province text, River text, Country text, Province text, Sea text, Country text, Province text, River text, Country text, Province text, Name text, Islands text, Area real, Height real, Type text, Longitude real, Latitude real, Island text, Sea text, Lake text, River text, Country text, Organization text, Type text, Name text, Area real, Depth real, Altitude real, Type text, River text, Longitude real, Latitude real, Country text, Name text, Percentage real, City text, Province text, Country text, River text, Lake text, Sea text, City text, Province text, Country text, Island text, Sea1 text, Sea2 text, Name text, Mountains text, Height real, Type text, Longitude real, Latitude real, Mountain text, Island text, Abbreviation text, Name text, City text, Country text, Province text, Established date, Country text, Independence date, Dependent text, Government text, Country text, Population_Growth real, Infant_Mortality real, Name text, Country text, Population integer, Area real, Capital text, CapProv text, Country text, Name text, Percentage real, Name text, River text, Lake text, Sea text, Length real, SourceLongitude real, SourceLatitude real, Mountains text, SourceAltitude real, EstuaryLongitude real, EstuaryLatitude real, Name text, Depth real, Country text, Target text) | Which country has the most languages spoken? | SELECT T1.Name FROM country AS T1 INNER JOIN language AS T2 ON T1.Code = T2.Country GROUP BY T1.Name ORDER BY COUNT(T2.Name) DESC LIMIT 1 | bird |
CREATE TABLE mondial_geo (Country1 text, Country2 text, Length real, Name text, Country text, Province text, Population integer, Longitude real, Latitude real, Name text, Area real, Name text, Code text, Capital text, Province text, Area real, Population integer, Name text, Area real, Longitude real, Latitude real, Country text, GDP real, Agriculture real, Service real, Industry real, Inflation real, Country text, Continent text, Percentage real, Country text, Name text, Percentage real, Desert text, Country text, Province text, River text, Country text, Province text, Island text, Country text, Province text, Lake text, Country text, Province text, Mountain text, Country text, Province text, River text, Country text, Province text, Sea text, Country text, Province text, River text, Country text, Province text, Name text, Islands text, Area real, Height real, Type text, Longitude real, Latitude real, Island text, Sea text, Lake text, River text, Country text, Organization text, Type text, Name text, Area real, Depth real, Altitude real, Type text, River text, Longitude real, Latitude real, Country text, Name text, Percentage real, City text, Province text, Country text, River text, Lake text, Sea text, City text, Province text, Country text, Island text, Sea1 text, Sea2 text, Name text, Mountains text, Height real, Type text, Longitude real, Latitude real, Mountain text, Island text, Abbreviation text, Name text, City text, Country text, Province text, Established date, Country text, Independence date, Dependent text, Government text, Country text, Population_Growth real, Infant_Mortality real, Name text, Country text, Population integer, Area real, Capital text, CapProv text, Country text, Name text, Percentage real, Name text, River text, Lake text, Sea text, Length real, SourceLongitude real, SourceLatitude real, Mountains text, SourceAltitude real, EstuaryLongitude real, EstuaryLatitude real, Name text, Depth real, Country text, Target text) | What is the capital city of the country that has the percentage of Armenian speakers over 90%? | SELECT T1.Capital FROM country AS T1 INNER JOIN language AS T2 ON T1.Code = T2.Country WHERE T2.Name = 'Armenian' AND T2.Percentage > 90 | bird |
CREATE TABLE mondial_geo (Country1 text, Country2 text, Length real, Name text, Country text, Province text, Population integer, Longitude real, Latitude real, Name text, Area real, Name text, Code text, Capital text, Province text, Area real, Population integer, Name text, Area real, Longitude real, Latitude real, Country text, GDP real, Agriculture real, Service real, Industry real, Inflation real, Country text, Continent text, Percentage real, Country text, Name text, Percentage real, Desert text, Country text, Province text, River text, Country text, Province text, Island text, Country text, Province text, Lake text, Country text, Province text, Mountain text, Country text, Province text, River text, Country text, Province text, Sea text, Country text, Province text, River text, Country text, Province text, Name text, Islands text, Area real, Height real, Type text, Longitude real, Latitude real, Island text, Sea text, Lake text, River text, Country text, Organization text, Type text, Name text, Area real, Depth real, Altitude real, Type text, River text, Longitude real, Latitude real, Country text, Name text, Percentage real, City text, Province text, Country text, River text, Lake text, Sea text, City text, Province text, Country text, Island text, Sea1 text, Sea2 text, Name text, Mountains text, Height real, Type text, Longitude real, Latitude real, Mountain text, Island text, Abbreviation text, Name text, City text, Country text, Province text, Established date, Country text, Independence date, Dependent text, Government text, Country text, Population_Growth real, Infant_Mortality real, Name text, Country text, Population integer, Area real, Capital text, CapProv text, Country text, Name text, Percentage real, Name text, River text, Lake text, Sea text, Length real, SourceLongitude real, SourceLatitude real, Mountains text, SourceAltitude real, EstuaryLongitude real, EstuaryLatitude real, Name text, Depth real, Country text, Target text) | Among the countries with a population of under 1000000, how many of them have over 2 languages? | SELECT T2.Country FROM country AS T1 INNER JOIN language AS T2 ON T1.Code = T2.Country WHERE T1.Population < 1000000 GROUP BY T2.Country HAVING COUNT(T1.Name) > 2 | bird |
CREATE TABLE mondial_geo (Country1 text, Country2 text, Length real, Name text, Country text, Province text, Population integer, Longitude real, Latitude real, Name text, Area real, Name text, Code text, Capital text, Province text, Area real, Population integer, Name text, Area real, Longitude real, Latitude real, Country text, GDP real, Agriculture real, Service real, Industry real, Inflation real, Country text, Continent text, Percentage real, Country text, Name text, Percentage real, Desert text, Country text, Province text, River text, Country text, Province text, Island text, Country text, Province text, Lake text, Country text, Province text, Mountain text, Country text, Province text, River text, Country text, Province text, Sea text, Country text, Province text, River text, Country text, Province text, Name text, Islands text, Area real, Height real, Type text, Longitude real, Latitude real, Island text, Sea text, Lake text, River text, Country text, Organization text, Type text, Name text, Area real, Depth real, Altitude real, Type text, River text, Longitude real, Latitude real, Country text, Name text, Percentage real, City text, Province text, Country text, River text, Lake text, Sea text, City text, Province text, Country text, Island text, Sea1 text, Sea2 text, Name text, Mountains text, Height real, Type text, Longitude real, Latitude real, Mountain text, Island text, Abbreviation text, Name text, City text, Country text, Province text, Established date, Country text, Independence date, Dependent text, Government text, Country text, Population_Growth real, Infant_Mortality real, Name text, Country text, Population integer, Area real, Capital text, CapProv text, Country text, Name text, Percentage real, Name text, River text, Lake text, Sea text, Length real, SourceLongitude real, SourceLatitude real, Mountains text, SourceAltitude real, EstuaryLongitude real, EstuaryLatitude real, Name text, Depth real, Country text, Target text) | How many organizations are founded in countries with a population of under 1000000? | SELECT COUNT(T2.Name) FROM country AS T1 INNER JOIN organization AS T2 ON T1.Code = T2.Country WHERE T1.Population < 1000000 | bird |
CREATE TABLE mondial_geo (Country1 text, Country2 text, Length real, Name text, Country text, Province text, Population integer, Longitude real, Latitude real, Name text, Area real, Name text, Code text, Capital text, Province text, Area real, Population integer, Name text, Area real, Longitude real, Latitude real, Country text, GDP real, Agriculture real, Service real, Industry real, Inflation real, Country text, Continent text, Percentage real, Country text, Name text, Percentage real, Desert text, Country text, Province text, River text, Country text, Province text, Island text, Country text, Province text, Lake text, Country text, Province text, Mountain text, Country text, Province text, River text, Country text, Province text, Sea text, Country text, Province text, River text, Country text, Province text, Name text, Islands text, Area real, Height real, Type text, Longitude real, Latitude real, Island text, Sea text, Lake text, River text, Country text, Organization text, Type text, Name text, Area real, Depth real, Altitude real, Type text, River text, Longitude real, Latitude real, Country text, Name text, Percentage real, City text, Province text, Country text, River text, Lake text, Sea text, City text, Province text, Country text, Island text, Sea1 text, Sea2 text, Name text, Mountains text, Height real, Type text, Longitude real, Latitude real, Mountain text, Island text, Abbreviation text, Name text, City text, Country text, Province text, Established date, Country text, Independence date, Dependent text, Government text, Country text, Population_Growth real, Infant_Mortality real, Name text, Country text, Population integer, Area real, Capital text, CapProv text, Country text, Name text, Percentage real, Name text, River text, Lake text, Sea text, Length real, SourceLongitude real, SourceLatitude real, Mountains text, SourceAltitude real, EstuaryLongitude real, EstuaryLatitude real, Name text, Depth real, Country text, Target text) | How many organizations are established after 1999/1/1 in a country whose GDP is under 500000? | SELECT T1.Country, COUNT(T1.Country) FROM economy AS T1 INNER JOIN organization AS T2 ON T1.Country = T2.Country WHERE T1.GDP < 500000 AND STRFTIME('%Y', T2.Established) < '1999' GROUP BY T1.Country | bird |
CREATE TABLE mondial_geo (Country1 text, Country2 text, Length real, Name text, Country text, Province text, Population integer, Longitude real, Latitude real, Name text, Area real, Name text, Code text, Capital text, Province text, Area real, Population integer, Name text, Area real, Longitude real, Latitude real, Country text, GDP real, Agriculture real, Service real, Industry real, Inflation real, Country text, Continent text, Percentage real, Country text, Name text, Percentage real, Desert text, Country text, Province text, River text, Country text, Province text, Island text, Country text, Province text, Lake text, Country text, Province text, Mountain text, Country text, Province text, River text, Country text, Province text, Sea text, Country text, Province text, River text, Country text, Province text, Name text, Islands text, Area real, Height real, Type text, Longitude real, Latitude real, Island text, Sea text, Lake text, River text, Country text, Organization text, Type text, Name text, Area real, Depth real, Altitude real, Type text, River text, Longitude real, Latitude real, Country text, Name text, Percentage real, City text, Province text, Country text, River text, Lake text, Sea text, City text, Province text, Country text, Island text, Sea1 text, Sea2 text, Name text, Mountains text, Height real, Type text, Longitude real, Latitude real, Mountain text, Island text, Abbreviation text, Name text, City text, Country text, Province text, Established date, Country text, Independence date, Dependent text, Government text, Country text, Population_Growth real, Infant_Mortality real, Name text, Country text, Population integer, Area real, Capital text, CapProv text, Country text, Name text, Percentage real, Name text, River text, Lake text, Sea text, Length real, SourceLongitude real, SourceLatitude real, Mountains text, SourceAltitude real, EstuaryLongitude real, EstuaryLatitude real, Name text, Depth real, Country text, Target text) | Among the countries with over 3 organizations, how many of them have an inflation rate of over 5%? | SELECT COUNT(T2.Country) FROM economy AS T1 INNER JOIN organization AS T2 ON T1.Country = T2.Country WHERE T2.Country IN ( SELECT Country FROM organization GROUP BY Country HAVING COUNT(Country) > 3 ) AND T1.Inflation > 5 | bird |
CREATE TABLE mondial_geo (Country1 text, Country2 text, Length real, Name text, Country text, Province text, Population integer, Longitude real, Latitude real, Name text, Area real, Name text, Code text, Capital text, Province text, Area real, Population integer, Name text, Area real, Longitude real, Latitude real, Country text, GDP real, Agriculture real, Service real, Industry real, Inflation real, Country text, Continent text, Percentage real, Country text, Name text, Percentage real, Desert text, Country text, Province text, River text, Country text, Province text, Island text, Country text, Province text, Lake text, Country text, Province text, Mountain text, Country text, Province text, River text, Country text, Province text, Sea text, Country text, Province text, River text, Country text, Province text, Name text, Islands text, Area real, Height real, Type text, Longitude real, Latitude real, Island text, Sea text, Lake text, River text, Country text, Organization text, Type text, Name text, Area real, Depth real, Altitude real, Type text, River text, Longitude real, Latitude real, Country text, Name text, Percentage real, City text, Province text, Country text, River text, Lake text, Sea text, City text, Province text, Country text, Island text, Sea1 text, Sea2 text, Name text, Mountains text, Height real, Type text, Longitude real, Latitude real, Mountain text, Island text, Abbreviation text, Name text, City text, Country text, Province text, Established date, Country text, Independence date, Dependent text, Government text, Country text, Population_Growth real, Infant_Mortality real, Name text, Country text, Population integer, Area real, Capital text, CapProv text, Country text, Name text, Percentage real, Name text, River text, Lake text, Sea text, Length real, SourceLongitude real, SourceLatitude real, Mountains text, SourceAltitude real, EstuaryLongitude real, EstuaryLatitude real, Name text, Depth real, Country text, Target text) | How many organizations are established in the country with the most ethnic groups? | SELECT COUNT(T2.Province) FROM country AS T1 INNER JOIN organization AS T2 ON T1.Code = T2.Country INNER JOIN ethnicGroup AS T3 ON T3.Country = T2.Country GROUP BY T1.Name ORDER BY COUNT(T3.Name) DESC LIMIT 1 | bird |
CREATE TABLE mondial_geo (Country1 text, Country2 text, Length real, Name text, Country text, Province text, Population integer, Longitude real, Latitude real, Name text, Area real, Name text, Code text, Capital text, Province text, Area real, Population integer, Name text, Area real, Longitude real, Latitude real, Country text, GDP real, Agriculture real, Service real, Industry real, Inflation real, Country text, Continent text, Percentage real, Country text, Name text, Percentage real, Desert text, Country text, Province text, River text, Country text, Province text, Island text, Country text, Province text, Lake text, Country text, Province text, Mountain text, Country text, Province text, River text, Country text, Province text, Sea text, Country text, Province text, River text, Country text, Province text, Name text, Islands text, Area real, Height real, Type text, Longitude real, Latitude real, Island text, Sea text, Lake text, River text, Country text, Organization text, Type text, Name text, Area real, Depth real, Altitude real, Type text, River text, Longitude real, Latitude real, Country text, Name text, Percentage real, City text, Province text, Country text, River text, Lake text, Sea text, City text, Province text, Country text, Island text, Sea1 text, Sea2 text, Name text, Mountains text, Height real, Type text, Longitude real, Latitude real, Mountain text, Island text, Abbreviation text, Name text, City text, Country text, Province text, Established date, Country text, Independence date, Dependent text, Government text, Country text, Population_Growth real, Infant_Mortality real, Name text, Country text, Population integer, Area real, Capital text, CapProv text, Country text, Name text, Percentage real, Name text, River text, Lake text, Sea text, Length real, SourceLongitude real, SourceLatitude real, Mountains text, SourceAltitude real, EstuaryLongitude real, EstuaryLatitude real, Name text, Depth real, Country text, Target text) | Please list the organization names established in the countries where Dutch is spoken. | SELECT T2.Name FROM language AS T1 INNER JOIN organization AS T2 ON T1.Country = T2.Country WHERE T1.Name = 'Dutch' | bird |
CREATE TABLE mondial_geo (Country1 text, Country2 text, Length real, Name text, Country text, Province text, Population integer, Longitude real, Latitude real, Name text, Area real, Name text, Code text, Capital text, Province text, Area real, Population integer, Name text, Area real, Longitude real, Latitude real, Country text, GDP real, Agriculture real, Service real, Industry real, Inflation real, Country text, Continent text, Percentage real, Country text, Name text, Percentage real, Desert text, Country text, Province text, River text, Country text, Province text, Island text, Country text, Province text, Lake text, Country text, Province text, Mountain text, Country text, Province text, River text, Country text, Province text, Sea text, Country text, Province text, River text, Country text, Province text, Name text, Islands text, Area real, Height real, Type text, Longitude real, Latitude real, Island text, Sea text, Lake text, River text, Country text, Organization text, Type text, Name text, Area real, Depth real, Altitude real, Type text, River text, Longitude real, Latitude real, Country text, Name text, Percentage real, City text, Province text, Country text, River text, Lake text, Sea text, City text, Province text, Country text, Island text, Sea1 text, Sea2 text, Name text, Mountains text, Height real, Type text, Longitude real, Latitude real, Mountain text, Island text, Abbreviation text, Name text, City text, Country text, Province text, Established date, Country text, Independence date, Dependent text, Government text, Country text, Population_Growth real, Infant_Mortality real, Name text, Country text, Population integer, Area real, Capital text, CapProv text, Country text, Name text, Percentage real, Name text, River text, Lake text, Sea text, Length real, SourceLongitude real, SourceLatitude real, Mountains text, SourceAltitude real, EstuaryLongitude real, EstuaryLatitude real, Name text, Depth real, Country text, Target text) | How many organizations are established in countries where people speak Bosnian? | SELECT COUNT(T2.Name) FROM language AS T1 INNER JOIN organization AS T2 ON T1.Country = T2.Country WHERE T1.Name = 'Bosnian' | bird |
CREATE TABLE mondial_geo (Country1 text, Country2 text, Length real, Name text, Country text, Province text, Population integer, Longitude real, Latitude real, Name text, Area real, Name text, Code text, Capital text, Province text, Area real, Population integer, Name text, Area real, Longitude real, Latitude real, Country text, GDP real, Agriculture real, Service real, Industry real, Inflation real, Country text, Continent text, Percentage real, Country text, Name text, Percentage real, Desert text, Country text, Province text, River text, Country text, Province text, Island text, Country text, Province text, Lake text, Country text, Province text, Mountain text, Country text, Province text, River text, Country text, Province text, Sea text, Country text, Province text, River text, Country text, Province text, Name text, Islands text, Area real, Height real, Type text, Longitude real, Latitude real, Island text, Sea text, Lake text, River text, Country text, Organization text, Type text, Name text, Area real, Depth real, Altitude real, Type text, River text, Longitude real, Latitude real, Country text, Name text, Percentage real, City text, Province text, Country text, River text, Lake text, Sea text, City text, Province text, Country text, Island text, Sea1 text, Sea2 text, Name text, Mountains text, Height real, Type text, Longitude real, Latitude real, Mountain text, Island text, Abbreviation text, Name text, City text, Country text, Province text, Established date, Country text, Independence date, Dependent text, Government text, Country text, Population_Growth real, Infant_Mortality real, Name text, Country text, Population integer, Area real, Capital text, CapProv text, Country text, Name text, Percentage real, Name text, River text, Lake text, Sea text, Length real, SourceLongitude real, SourceLatitude real, Mountains text, SourceAltitude real, EstuaryLongitude real, EstuaryLatitude real, Name text, Depth real, Country text, Target text) | What is the highest infant mortality rate per thousand of the countries whose inflation is under 3? | SELECT MAX(T2.Infant_Mortality) FROM economy AS T1 INNER JOIN population AS T2 ON T1.Country = T2.Country WHERE T1.Inflation < 3 | bird |
CREATE TABLE mondial_geo (Country1 text, Country2 text, Length real, Name text, Country text, Province text, Population integer, Longitude real, Latitude real, Name text, Area real, Name text, Code text, Capital text, Province text, Area real, Population integer, Name text, Area real, Longitude real, Latitude real, Country text, GDP real, Agriculture real, Service real, Industry real, Inflation real, Country text, Continent text, Percentage real, Country text, Name text, Percentage real, Desert text, Country text, Province text, River text, Country text, Province text, Island text, Country text, Province text, Lake text, Country text, Province text, Mountain text, Country text, Province text, River text, Country text, Province text, Sea text, Country text, Province text, River text, Country text, Province text, Name text, Islands text, Area real, Height real, Type text, Longitude real, Latitude real, Island text, Sea text, Lake text, River text, Country text, Organization text, Type text, Name text, Area real, Depth real, Altitude real, Type text, River text, Longitude real, Latitude real, Country text, Name text, Percentage real, City text, Province text, Country text, River text, Lake text, Sea text, City text, Province text, Country text, Island text, Sea1 text, Sea2 text, Name text, Mountains text, Height real, Type text, Longitude real, Latitude real, Mountain text, Island text, Abbreviation text, Name text, City text, Country text, Province text, Established date, Country text, Independence date, Dependent text, Government text, Country text, Population_Growth real, Infant_Mortality real, Name text, Country text, Population integer, Area real, Capital text, CapProv text, Country text, Name text, Percentage real, Name text, River text, Lake text, Sea text, Length real, SourceLongitude real, SourceLatitude real, Mountains text, SourceAltitude real, EstuaryLongitude real, EstuaryLatitude real, Name text, Depth real, Country text, Target text) | Among the countries whose GDP is over 1000000, how many of them have a population groth rate of over 3%? | SELECT COUNT(T1.Country) FROM economy AS T1 INNER JOIN population AS T2 ON T1.Country = T2.Country WHERE T1.GDP > 1000000 AND T2.Population_Growth > 3 | bird |
CREATE TABLE mondial_geo (Country1 text, Country2 text, Length real, Name text, Country text, Province text, Population integer, Longitude real, Latitude real, Name text, Area real, Name text, Code text, Capital text, Province text, Area real, Population integer, Name text, Area real, Longitude real, Latitude real, Country text, GDP real, Agriculture real, Service real, Industry real, Inflation real, Country text, Continent text, Percentage real, Country text, Name text, Percentage real, Desert text, Country text, Province text, River text, Country text, Province text, Island text, Country text, Province text, Lake text, Country text, Province text, Mountain text, Country text, Province text, River text, Country text, Province text, Sea text, Country text, Province text, River text, Country text, Province text, Name text, Islands text, Area real, Height real, Type text, Longitude real, Latitude real, Island text, Sea text, Lake text, River text, Country text, Organization text, Type text, Name text, Area real, Depth real, Altitude real, Type text, River text, Longitude real, Latitude real, Country text, Name text, Percentage real, City text, Province text, Country text, River text, Lake text, Sea text, City text, Province text, Country text, Island text, Sea1 text, Sea2 text, Name text, Mountains text, Height real, Type text, Longitude real, Latitude real, Mountain text, Island text, Abbreviation text, Name text, City text, Country text, Province text, Established date, Country text, Independence date, Dependent text, Government text, Country text, Population_Growth real, Infant_Mortality real, Name text, Country text, Population integer, Area real, Capital text, CapProv text, Country text, Name text, Percentage real, Name text, River text, Lake text, Sea text, Length real, SourceLongitude real, SourceLatitude real, Mountains text, SourceAltitude real, EstuaryLongitude real, EstuaryLatitude real, Name text, Depth real, Country text, Target text) | Which country has the highest GDP per capita? | SELECT T1.Name FROM country AS T1 INNER JOIN economy AS T2 ON T1.Code = T2.Country ORDER BY T2.GDP / T1.Population DESC LIMIT 1 | bird |
CREATE TABLE mondial_geo (Country1 text, Country2 text, Length real, Name text, Country text, Province text, Population integer, Longitude real, Latitude real, Name text, Area real, Name text, Code text, Capital text, Province text, Area real, Population integer, Name text, Area real, Longitude real, Latitude real, Country text, GDP real, Agriculture real, Service real, Industry real, Inflation real, Country text, Continent text, Percentage real, Country text, Name text, Percentage real, Desert text, Country text, Province text, River text, Country text, Province text, Island text, Country text, Province text, Lake text, Country text, Province text, Mountain text, Country text, Province text, River text, Country text, Province text, Sea text, Country text, Province text, River text, Country text, Province text, Name text, Islands text, Area real, Height real, Type text, Longitude real, Latitude real, Island text, Sea text, Lake text, River text, Country text, Organization text, Type text, Name text, Area real, Depth real, Altitude real, Type text, River text, Longitude real, Latitude real, Country text, Name text, Percentage real, City text, Province text, Country text, River text, Lake text, Sea text, City text, Province text, Country text, Island text, Sea1 text, Sea2 text, Name text, Mountains text, Height real, Type text, Longitude real, Latitude real, Mountain text, Island text, Abbreviation text, Name text, City text, Country text, Province text, Established date, Country text, Independence date, Dependent text, Government text, Country text, Population_Growth real, Infant_Mortality real, Name text, Country text, Population integer, Area real, Capital text, CapProv text, Country text, Name text, Percentage real, Name text, River text, Lake text, Sea text, Length real, SourceLongitude real, SourceLatitude real, Mountains text, SourceAltitude real, EstuaryLongitude real, EstuaryLatitude real, Name text, Depth real, Country text, Target text) | What is the highest lake area coverage of a country? | SELECT T2.Area * 100 / T3.Area FROM located AS T1 INNER JOIN lake AS T2 ON T1.Lake = T2.Name INNER JOIN country AS T3 ON T3.Code = T1.Country ORDER BY T2.Longitude DESC LIMIT 1 | bird |
CREATE TABLE mondial_geo (Country1 text, Country2 text, Length real, Name text, Country text, Province text, Population integer, Longitude real, Latitude real, Name text, Area real, Name text, Code text, Capital text, Province text, Area real, Population integer, Name text, Area real, Longitude real, Latitude real, Country text, GDP real, Agriculture real, Service real, Industry real, Inflation real, Country text, Continent text, Percentage real, Country text, Name text, Percentage real, Desert text, Country text, Province text, River text, Country text, Province text, Island text, Country text, Province text, Lake text, Country text, Province text, Mountain text, Country text, Province text, River text, Country text, Province text, Sea text, Country text, Province text, River text, Country text, Province text, Name text, Islands text, Area real, Height real, Type text, Longitude real, Latitude real, Island text, Sea text, Lake text, River text, Country text, Organization text, Type text, Name text, Area real, Depth real, Altitude real, Type text, River text, Longitude real, Latitude real, Country text, Name text, Percentage real, City text, Province text, Country text, River text, Lake text, Sea text, City text, Province text, Country text, Island text, Sea1 text, Sea2 text, Name text, Mountains text, Height real, Type text, Longitude real, Latitude real, Mountain text, Island text, Abbreviation text, Name text, City text, Country text, Province text, Established date, Country text, Independence date, Dependent text, Government text, Country text, Population_Growth real, Infant_Mortality real, Name text, Country text, Population integer, Area real, Capital text, CapProv text, Country text, Name text, Percentage real, Name text, River text, Lake text, Sea text, Length real, SourceLongitude real, SourceLatitude real, Mountains text, SourceAltitude real, EstuaryLongitude real, EstuaryLatitude real, Name text, Depth real, Country text, Target text) | What is the average population growth rate of countries where more than 3 languages are used? | SELECT SUM(T3.Population_Growth) / COUNT(T3.Country) 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.Country IN ( SELECT Country FROM language GROUP BY Country HAVING COUNT(Country) > 3 ) GROUP BY T3.Country | bird |
CREATE TABLE mondial_geo (Country1 text, Country2 text, Length real, Name text, Country text, Province text, Population integer, Longitude real, Latitude real, Name text, Area real, Name text, Code text, Capital text, Province text, Area real, Population integer, Name text, Area real, Longitude real, Latitude real, Country text, GDP real, Agriculture real, Service real, Industry real, Inflation real, Country text, Continent text, Percentage real, Country text, Name text, Percentage real, Desert text, Country text, Province text, River text, Country text, Province text, Island text, Country text, Province text, Lake text, Country text, Province text, Mountain text, Country text, Province text, River text, Country text, Province text, Sea text, Country text, Province text, River text, Country text, Province text, Name text, Islands text, Area real, Height real, Type text, Longitude real, Latitude real, Island text, Sea text, Lake text, River text, Country text, Organization text, Type text, Name text, Area real, Depth real, Altitude real, Type text, River text, Longitude real, Latitude real, Country text, Name text, Percentage real, City text, Province text, Country text, River text, Lake text, Sea text, City text, Province text, Country text, Island text, Sea1 text, Sea2 text, Name text, Mountains text, Height real, Type text, Longitude real, Latitude real, Mountain text, Island text, Abbreviation text, Name text, City text, Country text, Province text, Established date, Country text, Independence date, Dependent text, Government text, Country text, Population_Growth real, Infant_Mortality real, Name text, Country text, Population integer, Area real, Capital text, CapProv text, Country text, Name text, Percentage real, Name text, River text, Lake text, Sea text, Length real, SourceLongitude real, SourceLatitude real, Mountains text, SourceAltitude real, EstuaryLongitude real, EstuaryLatitude real, Name text, Depth real, Country text, Target text) | Please list the names of the countries with an inflation rate that's 30% above the average. | SELECT T1.Name FROM country AS T1 INNER JOIN economy AS T2 ON T1.Code = T2.Country GROUP BY T1.Name, T2.Inflation HAVING T2.Inflation > AVG(T2.Inflation) * 1.3 | bird |
CREATE TABLE mondial_geo (Country1 text, Country2 text, Length real, Name text, Country text, Province text, Population integer, Longitude real, Latitude real, Name text, Area real, Name text, Code text, Capital text, Province text, Area real, Population integer, Name text, Area real, Longitude real, Latitude real, Country text, GDP real, Agriculture real, Service real, Industry real, Inflation real, Country text, Continent text, Percentage real, Country text, Name text, Percentage real, Desert text, Country text, Province text, River text, Country text, Province text, Island text, Country text, Province text, Lake text, Country text, Province text, Mountain text, Country text, Province text, River text, Country text, Province text, Sea text, Country text, Province text, River text, Country text, Province text, Name text, Islands text, Area real, Height real, Type text, Longitude real, Latitude real, Island text, Sea text, Lake text, River text, Country text, Organization text, Type text, Name text, Area real, Depth real, Altitude real, Type text, River text, Longitude real, Latitude real, Country text, Name text, Percentage real, City text, Province text, Country text, River text, Lake text, Sea text, City text, Province text, Country text, Island text, Sea1 text, Sea2 text, Name text, Mountains text, Height real, Type text, Longitude real, Latitude real, Mountain text, Island text, Abbreviation text, Name text, City text, Country text, Province text, Established date, Country text, Independence date, Dependent text, Government text, Country text, Population_Growth real, Infant_Mortality real, Name text, Country text, Population integer, Area real, Capital text, CapProv text, Country text, Name text, Percentage real, Name text, River text, Lake text, Sea text, Length real, SourceLongitude real, SourceLatitude real, Mountains text, SourceAltitude real, EstuaryLongitude real, EstuaryLatitude real, Name text, Depth real, Country text, Target text) | Where country does Baghdad belongs to? | SELECT Name FROM country WHERE Province = 'Baghdad' | bird |
CREATE TABLE mondial_geo (Country1 text, Country2 text, Length real, Name text, Country text, Province text, Population integer, Longitude real, Latitude real, Name text, Area real, Name text, Code text, Capital text, Province text, Area real, Population integer, Name text, Area real, Longitude real, Latitude real, Country text, GDP real, Agriculture real, Service real, Industry real, Inflation real, Country text, Continent text, Percentage real, Country text, Name text, Percentage real, Desert text, Country text, Province text, River text, Country text, Province text, Island text, Country text, Province text, Lake text, Country text, Province text, Mountain text, Country text, Province text, River text, Country text, Province text, Sea text, Country text, Province text, River text, Country text, Province text, Name text, Islands text, Area real, Height real, Type text, Longitude real, Latitude real, Island text, Sea text, Lake text, River text, Country text, Organization text, Type text, Name text, Area real, Depth real, Altitude real, Type text, River text, Longitude real, Latitude real, Country text, Name text, Percentage real, City text, Province text, Country text, River text, Lake text, Sea text, City text, Province text, Country text, Island text, Sea1 text, Sea2 text, Name text, Mountains text, Height real, Type text, Longitude real, Latitude real, Mountain text, Island text, Abbreviation text, Name text, City text, Country text, Province text, Established date, Country text, Independence date, Dependent text, Government text, Country text, Population_Growth real, Infant_Mortality real, Name text, Country text, Population integer, Area real, Capital text, CapProv text, Country text, Name text, Percentage real, Name text, River text, Lake text, Sea text, Length real, SourceLongitude real, SourceLatitude real, Mountains text, SourceAltitude real, EstuaryLongitude real, EstuaryLatitude real, Name text, Depth real, Country text, Target text) | Which religion has the largest population in Martinique? | SELECT T2.Name FROM country AS T1 INNER JOIN religion AS T2 ON T1.Code = T2.Country WHERE T1.Name = 'Martinique' ORDER BY T1.population DESC LIMIT 1 | bird |
CREATE TABLE mondial_geo (Country1 text, Country2 text, Length real, Name text, Country text, Province text, Population integer, Longitude real, Latitude real, Name text, Area real, Name text, Code text, Capital text, Province text, Area real, Population integer, Name text, Area real, Longitude real, Latitude real, Country text, GDP real, Agriculture real, Service real, Industry real, Inflation real, Country text, Continent text, Percentage real, Country text, Name text, Percentage real, Desert text, Country text, Province text, River text, Country text, Province text, Island text, Country text, Province text, Lake text, Country text, Province text, Mountain text, Country text, Province text, River text, Country text, Province text, Sea text, Country text, Province text, River text, Country text, Province text, Name text, Islands text, Area real, Height real, Type text, Longitude real, Latitude real, Island text, Sea text, Lake text, River text, Country text, Organization text, Type text, Name text, Area real, Depth real, Altitude real, Type text, River text, Longitude real, Latitude real, Country text, Name text, Percentage real, City text, Province text, Country text, River text, Lake text, Sea text, City text, Province text, Country text, Island text, Sea1 text, Sea2 text, Name text, Mountains text, Height real, Type text, Longitude real, Latitude real, Mountain text, Island text, Abbreviation text, Name text, City text, Country text, Province text, Established date, Country text, Independence date, Dependent text, Government text, Country text, Population_Growth real, Infant_Mortality real, Name text, Country text, Population integer, Area real, Capital text, CapProv text, Country text, Name text, Percentage real, Name text, River text, Lake text, Sea text, Length real, SourceLongitude real, SourceLatitude real, Mountains text, SourceAltitude real, EstuaryLongitude real, EstuaryLatitude real, Name text, Depth real, Country text, Target text) | Which country is 41% Christian? Give the full name of the country. | SELECT T1.Name FROM country AS T1 INNER JOIN religion AS T2 ON T1.Code = T2.Country WHERE T2.Name = 'Christian' AND T2.Percentage = 41 | bird |
CREATE TABLE mondial_geo (Country1 text, Country2 text, Length real, Name text, Country text, Province text, Population integer, Longitude real, Latitude real, Name text, Area real, Name text, Code text, Capital text, Province text, Area real, Population integer, Name text, Area real, Longitude real, Latitude real, Country text, GDP real, Agriculture real, Service real, Industry real, Inflation real, Country text, Continent text, Percentage real, Country text, Name text, Percentage real, Desert text, Country text, Province text, River text, Country text, Province text, Island text, Country text, Province text, Lake text, Country text, Province text, Mountain text, Country text, Province text, River text, Country text, Province text, Sea text, Country text, Province text, River text, Country text, Province text, Name text, Islands text, Area real, Height real, Type text, Longitude real, Latitude real, Island text, Sea text, Lake text, River text, Country text, Organization text, Type text, Name text, Area real, Depth real, Altitude real, Type text, River text, Longitude real, Latitude real, Country text, Name text, Percentage real, City text, Province text, Country text, River text, Lake text, Sea text, City text, Province text, Country text, Island text, Sea1 text, Sea2 text, Name text, Mountains text, Height real, Type text, Longitude real, Latitude real, Mountain text, Island text, Abbreviation text, Name text, City text, Country text, Province text, Established date, Country text, Independence date, Dependent text, Government text, Country text, Population_Growth real, Infant_Mortality real, Name text, Country text, Population integer, Area real, Capital text, CapProv text, Country text, Name text, Percentage real, Name text, River text, Lake text, Sea text, Length real, SourceLongitude real, SourceLatitude real, Mountains text, SourceAltitude real, EstuaryLongitude real, EstuaryLatitude real, Name text, Depth real, Country text, Target text) | Which two countries does the Detroit River flow through? Give the full name of the country. | SELECT T3.Name FROM located AS T1 INNER JOIN river AS T2 ON T1.River = T2.Name INNER JOIN country AS T3 ON T3.Code = T1.Country WHERE T2.Name = 'Detroit River' | bird |
CREATE TABLE mondial_geo (Country1 text, Country2 text, Length real, Name text, Country text, Province text, Population integer, Longitude real, Latitude real, Name text, Area real, Name text, Code text, Capital text, Province text, Area real, Population integer, Name text, Area real, Longitude real, Latitude real, Country text, GDP real, Agriculture real, Service real, Industry real, Inflation real, Country text, Continent text, Percentage real, Country text, Name text, Percentage real, Desert text, Country text, Province text, River text, Country text, Province text, Island text, Country text, Province text, Lake text, Country text, Province text, Mountain text, Country text, Province text, River text, Country text, Province text, Sea text, Country text, Province text, River text, Country text, Province text, Name text, Islands text, Area real, Height real, Type text, Longitude real, Latitude real, Island text, Sea text, Lake text, River text, Country text, Organization text, Type text, Name text, Area real, Depth real, Altitude real, Type text, River text, Longitude real, Latitude real, Country text, Name text, Percentage real, City text, Province text, Country text, River text, Lake text, Sea text, City text, Province text, Country text, Island text, Sea1 text, Sea2 text, Name text, Mountains text, Height real, Type text, Longitude real, Latitude real, Mountain text, Island text, Abbreviation text, Name text, City text, Country text, Province text, Established date, Country text, Independence date, Dependent text, Government text, Country text, Population_Growth real, Infant_Mortality real, Name text, Country text, Population integer, Area real, Capital text, CapProv text, Country text, Name text, Percentage real, Name text, River text, Lake text, Sea text, Length real, SourceLongitude real, SourceLatitude real, Mountains text, SourceAltitude real, EstuaryLongitude real, EstuaryLatitude real, Name text, Depth real, Country text, Target text) | Which two countries have the longest border in the world? Give the full name of the country. | SELECT T2.Country1, T2.Country2 FROM country AS T1 INNER JOIN borders AS T2 ON T1.Code = T2.Country1 ORDER BY T2.Length DESC LIMIT 1 | bird |
CREATE TABLE mondial_geo (Country1 text, Country2 text, Length real, Name text, Country text, Province text, Population integer, Longitude real, Latitude real, Name text, Area real, Name text, Code text, Capital text, Province text, Area real, Population integer, Name text, Area real, Longitude real, Latitude real, Country text, GDP real, Agriculture real, Service real, Industry real, Inflation real, Country text, Continent text, Percentage real, Country text, Name text, Percentage real, Desert text, Country text, Province text, River text, Country text, Province text, Island text, Country text, Province text, Lake text, Country text, Province text, Mountain text, Country text, Province text, River text, Country text, Province text, Sea text, Country text, Province text, River text, Country text, Province text, Name text, Islands text, Area real, Height real, Type text, Longitude real, Latitude real, Island text, Sea text, Lake text, River text, Country text, Organization text, Type text, Name text, Area real, Depth real, Altitude real, Type text, River text, Longitude real, Latitude real, Country text, Name text, Percentage real, City text, Province text, Country text, River text, Lake text, Sea text, City text, Province text, Country text, Island text, Sea1 text, Sea2 text, Name text, Mountains text, Height real, Type text, Longitude real, Latitude real, Mountain text, Island text, Abbreviation text, Name text, City text, Country text, Province text, Established date, Country text, Independence date, Dependent text, Government text, Country text, Population_Growth real, Infant_Mortality real, Name text, Country text, Population integer, Area real, Capital text, CapProv text, Country text, Name text, Percentage real, Name text, River text, Lake text, Sea text, Length real, SourceLongitude real, SourceLatitude real, Mountains text, SourceAltitude real, EstuaryLongitude real, EstuaryLatitude real, Name text, Depth real, Country text, Target text) | Which country has the most neighbors? Give the full name of the country. | SELECT T1.Name FROM country AS T1 INNER JOIN borders AS T2 ON T1.Code = T2.Country1 GROUP BY T1.Name ORDER BY COUNT(T1.Name) DESC LIMIT 1 | bird |
CREATE TABLE mondial_geo (Country1 text, Country2 text, Length real, Name text, Country text, Province text, Population integer, Longitude real, Latitude real, Name text, Area real, Name text, Code text, Capital text, Province text, Area real, Population integer, Name text, Area real, Longitude real, Latitude real, Country text, GDP real, Agriculture real, Service real, Industry real, Inflation real, Country text, Continent text, Percentage real, Country text, Name text, Percentage real, Desert text, Country text, Province text, River text, Country text, Province text, Island text, Country text, Province text, Lake text, Country text, Province text, Mountain text, Country text, Province text, River text, Country text, Province text, Sea text, Country text, Province text, River text, Country text, Province text, Name text, Islands text, Area real, Height real, Type text, Longitude real, Latitude real, Island text, Sea text, Lake text, River text, Country text, Organization text, Type text, Name text, Area real, Depth real, Altitude real, Type text, River text, Longitude real, Latitude real, Country text, Name text, Percentage real, City text, Province text, Country text, River text, Lake text, Sea text, City text, Province text, Country text, Island text, Sea1 text, Sea2 text, Name text, Mountains text, Height real, Type text, Longitude real, Latitude real, Mountain text, Island text, Abbreviation text, Name text, City text, Country text, Province text, Established date, Country text, Independence date, Dependent text, Government text, Country text, Population_Growth real, Infant_Mortality real, Name text, Country text, Population integer, Area real, Capital text, CapProv text, Country text, Name text, Percentage real, Name text, River text, Lake text, Sea text, Length real, SourceLongitude real, SourceLatitude real, Mountains text, SourceAltitude real, EstuaryLongitude real, EstuaryLatitude real, Name text, Depth real, Country text, Target text) | Which country is Mountain Cerro Chirripo located in? Give the full name of the country. | SELECT DISTINCT T1.Name FROM country AS T1 INNER JOIN geo_mountain AS T2 ON T1.Code = T2.Country WHERE T2.Mountain = 'Cerro Chirripo' | bird |
CREATE TABLE mondial_geo (Country1 text, Country2 text, Length real, Name text, Country text, Province text, Population integer, Longitude real, Latitude real, Name text, Area real, Name text, Code text, Capital text, Province text, Area real, Population integer, Name text, Area real, Longitude real, Latitude real, Country text, GDP real, Agriculture real, Service real, Industry real, Inflation real, Country text, Continent text, Percentage real, Country text, Name text, Percentage real, Desert text, Country text, Province text, River text, Country text, Province text, Island text, Country text, Province text, Lake text, Country text, Province text, Mountain text, Country text, Province text, River text, Country text, Province text, Sea text, Country text, Province text, River text, Country text, Province text, Name text, Islands text, Area real, Height real, Type text, Longitude real, Latitude real, Island text, Sea text, Lake text, River text, Country text, Organization text, Type text, Name text, Area real, Depth real, Altitude real, Type text, River text, Longitude real, Latitude real, Country text, Name text, Percentage real, City text, Province text, Country text, River text, Lake text, Sea text, City text, Province text, Country text, Island text, Sea1 text, Sea2 text, Name text, Mountains text, Height real, Type text, Longitude real, Latitude real, Mountain text, Island text, Abbreviation text, Name text, City text, Country text, Province text, Established date, Country text, Independence date, Dependent text, Government text, Country text, Population_Growth real, Infant_Mortality real, Name text, Country text, Population integer, Area real, Capital text, CapProv text, Country text, Name text, Percentage real, Name text, River text, Lake text, Sea text, Length real, SourceLongitude real, SourceLatitude real, Mountains text, SourceAltitude real, EstuaryLongitude real, EstuaryLatitude real, Name text, Depth real, Country text, Target text) | How many mountains are there in Indonesia? | SELECT COUNT(DISTINCT T2.Mountain) FROM country AS T1 INNER JOIN geo_mountain AS T2 ON T1.Code = T2.Country WHERE T1.Name = 'Indonesia' | bird |
CREATE TABLE mondial_geo (Country1 text, Country2 text, Length real, Name text, Country text, Province text, Population integer, Longitude real, Latitude real, Name text, Area real, Name text, Code text, Capital text, Province text, Area real, Population integer, Name text, Area real, Longitude real, Latitude real, Country text, GDP real, Agriculture real, Service real, Industry real, Inflation real, Country text, Continent text, Percentage real, Country text, Name text, Percentage real, Desert text, Country text, Province text, River text, Country text, Province text, Island text, Country text, Province text, Lake text, Country text, Province text, Mountain text, Country text, Province text, River text, Country text, Province text, Sea text, Country text, Province text, River text, Country text, Province text, Name text, Islands text, Area real, Height real, Type text, Longitude real, Latitude real, Island text, Sea text, Lake text, River text, Country text, Organization text, Type text, Name text, Area real, Depth real, Altitude real, Type text, River text, Longitude real, Latitude real, Country text, Name text, Percentage real, City text, Province text, Country text, River text, Lake text, Sea text, City text, Province text, Country text, Island text, Sea1 text, Sea2 text, Name text, Mountains text, Height real, Type text, Longitude real, Latitude real, Mountain text, Island text, Abbreviation text, Name text, City text, Country text, Province text, Established date, Country text, Independence date, Dependent text, Government text, Country text, Population_Growth real, Infant_Mortality real, Name text, Country text, Population integer, Area real, Capital text, CapProv text, Country text, Name text, Percentage real, Name text, River text, Lake text, Sea text, Length real, SourceLongitude real, SourceLatitude real, Mountains text, SourceAltitude real, EstuaryLongitude real, EstuaryLatitude real, Name text, Depth real, Country text, Target text) | What is the quantity of the mountains does Japan have? | SELECT COUNT(DISTINCT T2.Mountain) FROM country AS T1 INNER JOIN geo_mountain AS T2 ON T1.Code = T2.Country WHERE T1.Name = 'Japan' | bird |
CREATE TABLE mondial_geo (Country1 text, Country2 text, Length real, Name text, Country text, Province text, Population integer, Longitude real, Latitude real, Name text, Area real, Name text, Code text, Capital text, Province text, Area real, Population integer, Name text, Area real, Longitude real, Latitude real, Country text, GDP real, Agriculture real, Service real, Industry real, Inflation real, Country text, Continent text, Percentage real, Country text, Name text, Percentage real, Desert text, Country text, Province text, River text, Country text, Province text, Island text, Country text, Province text, Lake text, Country text, Province text, Mountain text, Country text, Province text, River text, Country text, Province text, Sea text, Country text, Province text, River text, Country text, Province text, Name text, Islands text, Area real, Height real, Type text, Longitude real, Latitude real, Island text, Sea text, Lake text, River text, Country text, Organization text, Type text, Name text, Area real, Depth real, Altitude real, Type text, River text, Longitude real, Latitude real, Country text, Name text, Percentage real, City text, Province text, Country text, River text, Lake text, Sea text, City text, Province text, Country text, Island text, Sea1 text, Sea2 text, Name text, Mountains text, Height real, Type text, Longitude real, Latitude real, Mountain text, Island text, Abbreviation text, Name text, City text, Country text, Province text, Established date, Country text, Independence date, Dependent text, Government text, Country text, Population_Growth real, Infant_Mortality real, Name text, Country text, Population integer, Area real, Capital text, CapProv text, Country text, Name text, Percentage real, Name text, River text, Lake text, Sea text, Length real, SourceLongitude real, SourceLatitude real, Mountains text, SourceAltitude real, EstuaryLongitude real, EstuaryLatitude real, Name text, Depth real, Country text, Target text) | What is the latitude of the island on which Mount Andrinjitra is located? | SELECT T1.Latitude FROM island AS T1 INNER JOIN mountainOnIsland AS T2 ON T1.Name = T2.Island WHERE T2.Mountain = 'Andringitra' | bird |
CREATE TABLE mondial_geo (Country1 text, Country2 text, Length real, Name text, Country text, Province text, Population integer, Longitude real, Latitude real, Name text, Area real, Name text, Code text, Capital text, Province text, Area real, Population integer, Name text, Area real, Longitude real, Latitude real, Country text, GDP real, Agriculture real, Service real, Industry real, Inflation real, Country text, Continent text, Percentage real, Country text, Name text, Percentage real, Desert text, Country text, Province text, River text, Country text, Province text, Island text, Country text, Province text, Lake text, Country text, Province text, Mountain text, Country text, Province text, River text, Country text, Province text, Sea text, Country text, Province text, River text, Country text, Province text, Name text, Islands text, Area real, Height real, Type text, Longitude real, Latitude real, Island text, Sea text, Lake text, River text, Country text, Organization text, Type text, Name text, Area real, Depth real, Altitude real, Type text, River text, Longitude real, Latitude real, Country text, Name text, Percentage real, City text, Province text, Country text, River text, Lake text, Sea text, City text, Province text, Country text, Island text, Sea1 text, Sea2 text, Name text, Mountains text, Height real, Type text, Longitude real, Latitude real, Mountain text, Island text, Abbreviation text, Name text, City text, Country text, Province text, Established date, Country text, Independence date, Dependent text, Government text, Country text, Population_Growth real, Infant_Mortality real, Name text, Country text, Population integer, Area real, Capital text, CapProv text, Country text, Name text, Percentage real, Name text, River text, Lake text, Sea text, Length real, SourceLongitude real, SourceLatitude real, Mountains text, SourceAltitude real, EstuaryLongitude real, EstuaryLatitude real, Name text, Depth real, Country text, Target text) | Which two countries share the second highest mountain? Give the country code. | SELECT T1.Code FROM country AS T1 INNER JOIN geo_mountain AS T2 ON T1.Code = T2.Country WHERE T2.Mountain = ( SELECT Name FROM mountain ORDER BY Height DESC LIMIT 1, 1 ) | bird |
CREATE TABLE mondial_geo (Country1 text, Country2 text, Length real, Name text, Country text, Province text, Population integer, Longitude real, Latitude real, Name text, Area real, Name text, Code text, Capital text, Province text, Area real, Population integer, Name text, Area real, Longitude real, Latitude real, Country text, GDP real, Agriculture real, Service real, Industry real, Inflation real, Country text, Continent text, Percentage real, Country text, Name text, Percentage real, Desert text, Country text, Province text, River text, Country text, Province text, Island text, Country text, Province text, Lake text, Country text, Province text, Mountain text, Country text, Province text, River text, Country text, Province text, Sea text, Country text, Province text, River text, Country text, Province text, Name text, Islands text, Area real, Height real, Type text, Longitude real, Latitude real, Island text, Sea text, Lake text, River text, Country text, Organization text, Type text, Name text, Area real, Depth real, Altitude real, Type text, River text, Longitude real, Latitude real, Country text, Name text, Percentage real, City text, Province text, Country text, River text, Lake text, Sea text, City text, Province text, Country text, Island text, Sea1 text, Sea2 text, Name text, Mountains text, Height real, Type text, Longitude real, Latitude real, Mountain text, Island text, Abbreviation text, Name text, City text, Country text, Province text, Established date, Country text, Independence date, Dependent text, Government text, Country text, Population_Growth real, Infant_Mortality real, Name text, Country text, Population integer, Area real, Capital text, CapProv text, Country text, Name text, Percentage real, Name text, River text, Lake text, Sea text, Length real, SourceLongitude real, SourceLatitude real, Mountains text, SourceAltitude real, EstuaryLongitude real, EstuaryLatitude real, Name text, Depth real, Country text, Target text) | What is the area of Egypt as a percentage of Asia? | SELECT T2.Percentage FROM country AS T1 INNER JOIN encompasses AS T2 ON T1.Code = T2.Country INNER JOIN continent AS T3 ON T3.Name = T2.Continent WHERE T3.Name = 'Asia' AND T1.Name = 'Egypt' | bird |
CREATE TABLE mondial_geo (Country1 text, Country2 text, Length real, Name text, Country text, Province text, Population integer, Longitude real, Latitude real, Name text, Area real, Name text, Code text, Capital text, Province text, Area real, Population integer, Name text, Area real, Longitude real, Latitude real, Country text, GDP real, Agriculture real, Service real, Industry real, Inflation real, Country text, Continent text, Percentage real, Country text, Name text, Percentage real, Desert text, Country text, Province text, River text, Country text, Province text, Island text, Country text, Province text, Lake text, Country text, Province text, Mountain text, Country text, Province text, River text, Country text, Province text, Sea text, Country text, Province text, River text, Country text, Province text, Name text, Islands text, Area real, Height real, Type text, Longitude real, Latitude real, Island text, Sea text, Lake text, River text, Country text, Organization text, Type text, Name text, Area real, Depth real, Altitude real, Type text, River text, Longitude real, Latitude real, Country text, Name text, Percentage real, City text, Province text, Country text, River text, Lake text, Sea text, City text, Province text, Country text, Island text, Sea1 text, Sea2 text, Name text, Mountains text, Height real, Type text, Longitude real, Latitude real, Mountain text, Island text, Abbreviation text, Name text, City text, Country text, Province text, Established date, Country text, Independence date, Dependent text, Government text, Country text, Population_Growth real, Infant_Mortality real, Name text, Country text, Population integer, Area real, Capital text, CapProv text, Country text, Name text, Percentage real, Name text, River text, Lake text, Sea text, Length real, SourceLongitude real, SourceLatitude real, Mountains text, SourceAltitude real, EstuaryLongitude real, EstuaryLatitude real, Name text, Depth real, Country text, Target text) | What is the area of Egypt as a percentage of Asia? | SELECT T1.Area * 100 / T3.Area FROM country AS T1 INNER JOIN encompasses AS T2 ON T1.Code = T2.Country INNER JOIN continent AS T3 ON T3.Name = T2.Continent WHERE T3.Name = 'Asia' AND T1.Name = 'Egypt' | bird |
CREATE TABLE mondial_geo (Country1 text, Country2 text, Length real, Name text, Country text, Province text, Population integer, Longitude real, Latitude real, Name text, Area real, Name text, Code text, Capital text, Province text, Area real, Population integer, Name text, Area real, Longitude real, Latitude real, Country text, GDP real, Agriculture real, Service real, Industry real, Inflation real, Country text, Continent text, Percentage real, Country text, Name text, Percentage real, Desert text, Country text, Province text, River text, Country text, Province text, Island text, Country text, Province text, Lake text, Country text, Province text, Mountain text, Country text, Province text, River text, Country text, Province text, Sea text, Country text, Province text, River text, Country text, Province text, Name text, Islands text, Area real, Height real, Type text, Longitude real, Latitude real, Island text, Sea text, Lake text, River text, Country text, Organization text, Type text, Name text, Area real, Depth real, Altitude real, Type text, River text, Longitude real, Latitude real, Country text, Name text, Percentage real, City text, Province text, Country text, River text, Lake text, Sea text, City text, Province text, Country text, Island text, Sea1 text, Sea2 text, Name text, Mountains text, Height real, Type text, Longitude real, Latitude real, Mountain text, Island text, Abbreviation text, Name text, City text, Country text, Province text, Established date, Country text, Independence date, Dependent text, Government text, Country text, Population_Growth real, Infant_Mortality real, Name text, Country text, Population integer, Area real, Capital text, CapProv text, Country text, Name text, Percentage real, Name text, River text, Lake text, Sea text, Length real, SourceLongitude real, SourceLatitude real, Mountains text, SourceAltitude real, EstuaryLongitude real, EstuaryLatitude real, Name text, Depth real, Country text, Target text) | Which city in Japan has the most people in the country? | SELECT T2.Name FROM country AS T1 INNER JOIN city AS T2 ON T1.Code = T2.Country WHERE T1.Name = 'Japan' ORDER BY T2.Population DESC LIMIT 1 | bird |
CREATE TABLE mondial_geo (Country1 text, Country2 text, Length real, Name text, Country text, Province text, Population integer, Longitude real, Latitude real, Name text, Area real, Name text, Code text, Capital text, Province text, Area real, Population integer, Name text, Area real, Longitude real, Latitude real, Country text, GDP real, Agriculture real, Service real, Industry real, Inflation real, Country text, Continent text, Percentage real, Country text, Name text, Percentage real, Desert text, Country text, Province text, River text, Country text, Province text, Island text, Country text, Province text, Lake text, Country text, Province text, Mountain text, Country text, Province text, River text, Country text, Province text, Sea text, Country text, Province text, River text, Country text, Province text, Name text, Islands text, Area real, Height real, Type text, Longitude real, Latitude real, Island text, Sea text, Lake text, River text, Country text, Organization text, Type text, Name text, Area real, Depth real, Altitude real, Type text, River text, Longitude real, Latitude real, Country text, Name text, Percentage real, City text, Province text, Country text, River text, Lake text, Sea text, City text, Province text, Country text, Island text, Sea1 text, Sea2 text, Name text, Mountains text, Height real, Type text, Longitude real, Latitude real, Mountain text, Island text, Abbreviation text, Name text, City text, Country text, Province text, Established date, Country text, Independence date, Dependent text, Government text, Country text, Population_Growth real, Infant_Mortality real, Name text, Country text, Population integer, Area real, Capital text, CapProv text, Country text, Name text, Percentage real, Name text, River text, Lake text, Sea text, Length real, SourceLongitude real, SourceLatitude real, Mountains text, SourceAltitude real, EstuaryLongitude real, EstuaryLatitude real, Name text, Depth real, Country text, Target text) | For the country in which Olsztyn is located, where is the capital? | SELECT T1.Capital FROM country AS T1 INNER JOIN city AS T2 ON T1.Code = T2.Country WHERE T2.Name = 'Olsztyn' | bird |
CREATE TABLE mondial_geo (Country1 text, Country2 text, Length real, Name text, Country text, Province text, Population integer, Longitude real, Latitude real, Name text, Area real, Name text, Code text, Capital text, Province text, Area real, Population integer, Name text, Area real, Longitude real, Latitude real, Country text, GDP real, Agriculture real, Service real, Industry real, Inflation real, Country text, Continent text, Percentage real, Country text, Name text, Percentage real, Desert text, Country text, Province text, River text, Country text, Province text, Island text, Country text, Province text, Lake text, Country text, Province text, Mountain text, Country text, Province text, River text, Country text, Province text, Sea text, Country text, Province text, River text, Country text, Province text, Name text, Islands text, Area real, Height real, Type text, Longitude real, Latitude real, Island text, Sea text, Lake text, River text, Country text, Organization text, Type text, Name text, Area real, Depth real, Altitude real, Type text, River text, Longitude real, Latitude real, Country text, Name text, Percentage real, City text, Province text, Country text, River text, Lake text, Sea text, City text, Province text, Country text, Island text, Sea1 text, Sea2 text, Name text, Mountains text, Height real, Type text, Longitude real, Latitude real, Mountain text, Island text, Abbreviation text, Name text, City text, Country text, Province text, Established date, Country text, Independence date, Dependent text, Government text, Country text, Population_Growth real, Infant_Mortality real, Name text, Country text, Population integer, Area real, Capital text, CapProv text, Country text, Name text, Percentage real, Name text, River text, Lake text, Sea text, Length real, SourceLongitude real, SourceLatitude real, Mountains text, SourceAltitude real, EstuaryLongitude real, EstuaryLatitude real, Name text, Depth real, Country text, Target text) | In which province is the highest volcano mountain located in? | SELECT T1.Province 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 = 'volcano' ORDER BY T3.Height DESC LIMIT 1 | bird |
CREATE TABLE mondial_geo (Country1 text, Country2 text, Length real, Name text, Country text, Province text, Population integer, Longitude real, Latitude real, Name text, Area real, Name text, Code text, Capital text, Province text, Area real, Population integer, Name text, Area real, Longitude real, Latitude real, Country text, GDP real, Agriculture real, Service real, Industry real, Inflation real, Country text, Continent text, Percentage real, Country text, Name text, Percentage real, Desert text, Country text, Province text, River text, Country text, Province text, Island text, Country text, Province text, Lake text, Country text, Province text, Mountain text, Country text, Province text, River text, Country text, Province text, Sea text, Country text, Province text, River text, Country text, Province text, Name text, Islands text, Area real, Height real, Type text, Longitude real, Latitude real, Island text, Sea text, Lake text, River text, Country text, Organization text, Type text, Name text, Area real, Depth real, Altitude real, Type text, River text, Longitude real, Latitude real, Country text, Name text, Percentage real, City text, Province text, Country text, River text, Lake text, Sea text, City text, Province text, Country text, Island text, Sea1 text, Sea2 text, Name text, Mountains text, Height real, Type text, Longitude real, Latitude real, Mountain text, Island text, Abbreviation text, Name text, City text, Country text, Province text, Established date, Country text, Independence date, Dependent text, Government text, Country text, Population_Growth real, Infant_Mortality real, Name text, Country text, Population integer, Area real, Capital text, CapProv text, Country text, Name text, Percentage real, Name text, River text, Lake text, Sea text, Length real, SourceLongitude real, SourceLatitude real, Mountains text, SourceAltitude real, EstuaryLongitude real, EstuaryLatitude real, Name text, Depth real, Country text, Target text) | When did Uganda declare independence? | SELECT T2.Independence FROM country AS T1 INNER JOIN politics AS T2 ON T1.Code = T2.Country WHERE T1.Name = 'Uganda' | bird |
CREATE TABLE mondial_geo (Country1 text, Country2 text, Length real, Name text, Country text, Province text, Population integer, Longitude real, Latitude real, Name text, Area real, Name text, Code text, Capital text, Province text, Area real, Population integer, Name text, Area real, Longitude real, Latitude real, Country text, GDP real, Agriculture real, Service real, Industry real, Inflation real, Country text, Continent text, Percentage real, Country text, Name text, Percentage real, Desert text, Country text, Province text, River text, Country text, Province text, Island text, Country text, Province text, Lake text, Country text, Province text, Mountain text, Country text, Province text, River text, Country text, Province text, Sea text, Country text, Province text, River text, Country text, Province text, Name text, Islands text, Area real, Height real, Type text, Longitude real, Latitude real, Island text, Sea text, Lake text, River text, Country text, Organization text, Type text, Name text, Area real, Depth real, Altitude real, Type text, River text, Longitude real, Latitude real, Country text, Name text, Percentage real, City text, Province text, Country text, River text, Lake text, Sea text, City text, Province text, Country text, Island text, Sea1 text, Sea2 text, Name text, Mountains text, Height real, Type text, Longitude real, Latitude real, Mountain text, Island text, Abbreviation text, Name text, City text, Country text, Province text, Established date, Country text, Independence date, Dependent text, Government text, Country text, Population_Growth real, Infant_Mortality real, Name text, Country text, Population integer, Area real, Capital text, CapProv text, Country text, Name text, Percentage real, Name text, River text, Lake text, Sea text, Length real, SourceLongitude real, SourceLatitude real, Mountains text, SourceAltitude real, EstuaryLongitude real, EstuaryLatitude real, Name text, Depth real, Country text, Target text) | What kind of government does Iran have? | SELECT T2.Government FROM country AS T1 INNER JOIN politics AS T2 ON T1.Code = T2.Country WHERE T1.Name = 'Iran' | bird |
CREATE TABLE mondial_geo (Country1 text, Country2 text, Length real, Name text, Country text, Province text, Population integer, Longitude real, Latitude real, Name text, Area real, Name text, Code text, Capital text, Province text, Area real, Population integer, Name text, Area real, Longitude real, Latitude real, Country text, GDP real, Agriculture real, Service real, Industry real, Inflation real, Country text, Continent text, Percentage real, Country text, Name text, Percentage real, Desert text, Country text, Province text, River text, Country text, Province text, Island text, Country text, Province text, Lake text, Country text, Province text, Mountain text, Country text, Province text, River text, Country text, Province text, Sea text, Country text, Province text, River text, Country text, Province text, Name text, Islands text, Area real, Height real, Type text, Longitude real, Latitude real, Island text, Sea text, Lake text, River text, Country text, Organization text, Type text, Name text, Area real, Depth real, Altitude real, Type text, River text, Longitude real, Latitude real, Country text, Name text, Percentage real, City text, Province text, Country text, River text, Lake text, Sea text, City text, Province text, Country text, Island text, Sea1 text, Sea2 text, Name text, Mountains text, Height real, Type text, Longitude real, Latitude real, Mountain text, Island text, Abbreviation text, Name text, City text, Country text, Province text, Established date, Country text, Independence date, Dependent text, Government text, Country text, Population_Growth real, Infant_Mortality real, Name text, Country text, Population integer, Area real, Capital text, CapProv text, Country text, Name text, Percentage real, Name text, River text, Lake text, Sea text, Length real, SourceLongitude real, SourceLatitude real, Mountains text, SourceAltitude real, EstuaryLongitude real, EstuaryLatitude real, Name text, Depth real, Country text, Target text) | Where does Bermuda belong to? Give the full name of the country. | SELECT T3.Name FROM locatedOn AS T1 INNER JOIN island AS T2 ON T1.Island = T2.Name INNER JOIN country AS T3 ON T3.Code = T1.Country WHERE T3.Name = 'Bermuda' | bird |
CREATE TABLE mondial_geo (Country1 text, Country2 text, Length real, Name text, Country text, Province text, Population integer, Longitude real, Latitude real, Name text, Area real, Name text, Code text, Capital text, Province text, Area real, Population integer, Name text, Area real, Longitude real, Latitude real, Country text, GDP real, Agriculture real, Service real, Industry real, Inflation real, Country text, Continent text, Percentage real, Country text, Name text, Percentage real, Desert text, Country text, Province text, River text, Country text, Province text, Island text, Country text, Province text, Lake text, Country text, Province text, Mountain text, Country text, Province text, River text, Country text, Province text, Sea text, Country text, Province text, River text, Country text, Province text, Name text, Islands text, Area real, Height real, Type text, Longitude real, Latitude real, Island text, Sea text, Lake text, River text, Country text, Organization text, Type text, Name text, Area real, Depth real, Altitude real, Type text, River text, Longitude real, Latitude real, Country text, Name text, Percentage real, City text, Province text, Country text, River text, Lake text, Sea text, City text, Province text, Country text, Island text, Sea1 text, Sea2 text, Name text, Mountains text, Height real, Type text, Longitude real, Latitude real, Mountain text, Island text, Abbreviation text, Name text, City text, Country text, Province text, Established date, Country text, Independence date, Dependent text, Government text, Country text, Population_Growth real, Infant_Mortality real, Name text, Country text, Population integer, Area real, Capital text, CapProv text, Country text, Name text, Percentage real, Name text, River text, Lake text, Sea text, Length real, SourceLongitude real, SourceLatitude real, Mountains text, SourceAltitude real, EstuaryLongitude real, EstuaryLatitude real, Name text, Depth real, Country text, Target text) | Where is the capital of country which has the largest percentage of Malay people? | SELECT T1.Capital FROM country AS T1 INNER JOIN ethnicGroup AS T2 ON T1.Code = T2.Country WHERE T2.Name = 'Malay' ORDER BY T2.Percentage DESC LIMIT 1 | bird |
CREATE TABLE mondial_geo (Country1 text, Country2 text, Length real, Name text, Country text, Province text, Population integer, Longitude real, Latitude real, Name text, Area real, Name text, Code text, Capital text, Province text, Area real, Population integer, Name text, Area real, Longitude real, Latitude real, Country text, GDP real, Agriculture real, Service real, Industry real, Inflation real, Country text, Continent text, Percentage real, Country text, Name text, Percentage real, Desert text, Country text, Province text, River text, Country text, Province text, Island text, Country text, Province text, Lake text, Country text, Province text, Mountain text, Country text, Province text, River text, Country text, Province text, Sea text, Country text, Province text, River text, Country text, Province text, Name text, Islands text, Area real, Height real, Type text, Longitude real, Latitude real, Island text, Sea text, Lake text, River text, Country text, Organization text, Type text, Name text, Area real, Depth real, Altitude real, Type text, River text, Longitude real, Latitude real, Country text, Name text, Percentage real, City text, Province text, Country text, River text, Lake text, Sea text, City text, Province text, Country text, Island text, Sea1 text, Sea2 text, Name text, Mountains text, Height real, Type text, Longitude real, Latitude real, Mountain text, Island text, Abbreviation text, Name text, City text, Country text, Province text, Established date, Country text, Independence date, Dependent text, Government text, Country text, Population_Growth real, Infant_Mortality real, Name text, Country text, Population integer, Area real, Capital text, CapProv text, Country text, Name text, Percentage real, Name text, River text, Lake text, Sea text, Length real, SourceLongitude real, SourceLatitude real, Mountains text, SourceAltitude real, EstuaryLongitude real, EstuaryLatitude real, Name text, Depth real, Country text, Target text) | For the third largest country, which ethinic group has the most population? | SELECT T2.Name FROM country AS T1 INNER JOIN ethnicGroup AS T2 ON T1.Code = T2.Country WHERE T1.Name = ( SELECT Name FROM country ORDER BY Area DESC LIMIT 2, 1 ) GROUP BY T2.Name ORDER BY T2.Percentage * T1.Population DESC LIMIT 1 | bird |
CREATE TABLE mondial_geo (Country1 text, Country2 text, Length real, Name text, Country text, Province text, Population integer, Longitude real, Latitude real, Name text, Area real, Name text, Code text, Capital text, Province text, Area real, Population integer, Name text, Area real, Longitude real, Latitude real, Country text, GDP real, Agriculture real, Service real, Industry real, Inflation real, Country text, Continent text, Percentage real, Country text, Name text, Percentage real, Desert text, Country text, Province text, River text, Country text, Province text, Island text, Country text, Province text, Lake text, Country text, Province text, Mountain text, Country text, Province text, River text, Country text, Province text, Sea text, Country text, Province text, River text, Country text, Province text, Name text, Islands text, Area real, Height real, Type text, Longitude real, Latitude real, Island text, Sea text, Lake text, River text, Country text, Organization text, Type text, Name text, Area real, Depth real, Altitude real, Type text, River text, Longitude real, Latitude real, Country text, Name text, Percentage real, City text, Province text, Country text, River text, Lake text, Sea text, City text, Province text, Country text, Island text, Sea1 text, Sea2 text, Name text, Mountains text, Height real, Type text, Longitude real, Latitude real, Mountain text, Island text, Abbreviation text, Name text, City text, Country text, Province text, Established date, Country text, Independence date, Dependent text, Government text, Country text, Population_Growth real, Infant_Mortality real, Name text, Country text, Population integer, Area real, Capital text, CapProv text, Country text, Name text, Percentage real, Name text, River text, Lake text, Sea text, Length real, SourceLongitude real, SourceLatitude real, Mountains text, SourceAltitude real, EstuaryLongitude real, EstuaryLatitude real, Name text, Depth real, Country text, Target text) | Which country has the city of 114339 in population? Give the full name of the country. | SELECT T1.Name FROM country AS T1 INNER JOIN city AS T2 ON T1.Code = T2.Country WHERE T2.Population = 114339 | bird |
CREATE TABLE mondial_geo (Country1 text, Country2 text, Length real, Name text, Country text, Province text, Population integer, Longitude real, Latitude real, Name text, Area real, Name text, Code text, Capital text, Province text, Area real, Population integer, Name text, Area real, Longitude real, Latitude real, Country text, GDP real, Agriculture real, Service real, Industry real, Inflation real, Country text, Continent text, Percentage real, Country text, Name text, Percentage real, Desert text, Country text, Province text, River text, Country text, Province text, Island text, Country text, Province text, Lake text, Country text, Province text, Mountain text, Country text, Province text, River text, Country text, Province text, Sea text, Country text, Province text, River text, Country text, Province text, Name text, Islands text, Area real, Height real, Type text, Longitude real, Latitude real, Island text, Sea text, Lake text, River text, Country text, Organization text, Type text, Name text, Area real, Depth real, Altitude real, Type text, River text, Longitude real, Latitude real, Country text, Name text, Percentage real, City text, Province text, Country text, River text, Lake text, Sea text, City text, Province text, Country text, Island text, Sea1 text, Sea2 text, Name text, Mountains text, Height real, Type text, Longitude real, Latitude real, Mountain text, Island text, Abbreviation text, Name text, City text, Country text, Province text, Established date, Country text, Independence date, Dependent text, Government text, Country text, Population_Growth real, Infant_Mortality real, Name text, Country text, Population integer, Area real, Capital text, CapProv text, Country text, Name text, Percentage real, Name text, River text, Lake text, Sea text, Length real, SourceLongitude real, SourceLatitude real, Mountains text, SourceAltitude real, EstuaryLongitude real, EstuaryLatitude real, Name text, Depth real, Country text, Target text) | How many rivers finally flows to the sea of 459m in depth? | SELECT COUNT(*) FROM river WHERE Sea IN ( SELECT Name FROM sea WHERE Depth = 459 ) | bird |
CREATE TABLE mondial_geo (Country1 text, Country2 text, Length real, Name text, Country text, Province text, Population integer, Longitude real, Latitude real, Name text, Area real, Name text, Code text, Capital text, Province text, Area real, Population integer, Name text, Area real, Longitude real, Latitude real, Country text, GDP real, Agriculture real, Service real, Industry real, Inflation real, Country text, Continent text, Percentage real, Country text, Name text, Percentage real, Desert text, Country text, Province text, River text, Country text, Province text, Island text, Country text, Province text, Lake text, Country text, Province text, Mountain text, Country text, Province text, River text, Country text, Province text, Sea text, Country text, Province text, River text, Country text, Province text, Name text, Islands text, Area real, Height real, Type text, Longitude real, Latitude real, Island text, Sea text, Lake text, River text, Country text, Organization text, Type text, Name text, Area real, Depth real, Altitude real, Type text, River text, Longitude real, Latitude real, Country text, Name text, Percentage real, City text, Province text, Country text, River text, Lake text, Sea text, City text, Province text, Country text, Island text, Sea1 text, Sea2 text, Name text, Mountains text, Height real, Type text, Longitude real, Latitude real, Mountain text, Island text, Abbreviation text, Name text, City text, Country text, Province text, Established date, Country text, Independence date, Dependent text, Government text, Country text, Population_Growth real, Infant_Mortality real, Name text, Country text, Population integer, Area real, Capital text, CapProv text, Country text, Name text, Percentage real, Name text, River text, Lake text, Sea text, Length real, SourceLongitude real, SourceLatitude real, Mountains text, SourceAltitude real, EstuaryLongitude real, EstuaryLatitude real, Name text, Depth real, Country text, Target text) | What is the area of the country which became independent in 1921/3/13? | SELECT T1.Area FROM country AS T1 INNER JOIN politics AS T2 ON T1.Code = T2.Country WHERE T2.Independence = '1921-03-13' | bird |
CREATE TABLE mondial_geo (Country1 text, Country2 text, Length real, Name text, Country text, Province text, Population integer, Longitude real, Latitude real, Name text, Area real, Name text, Code text, Capital text, Province text, Area real, Population integer, Name text, Area real, Longitude real, Latitude real, Country text, GDP real, Agriculture real, Service real, Industry real, Inflation real, Country text, Continent text, Percentage real, Country text, Name text, Percentage real, Desert text, Country text, Province text, River text, Country text, Province text, Island text, Country text, Province text, Lake text, Country text, Province text, Mountain text, Country text, Province text, River text, Country text, Province text, Sea text, Country text, Province text, River text, Country text, Province text, Name text, Islands text, Area real, Height real, Type text, Longitude real, Latitude real, Island text, Sea text, Lake text, River text, Country text, Organization text, Type text, Name text, Area real, Depth real, Altitude real, Type text, River text, Longitude real, Latitude real, Country text, Name text, Percentage real, City text, Province text, Country text, River text, Lake text, Sea text, City text, Province text, Country text, Island text, Sea1 text, Sea2 text, Name text, Mountains text, Height real, Type text, Longitude real, Latitude real, Mountain text, Island text, Abbreviation text, Name text, City text, Country text, Province text, Established date, Country text, Independence date, Dependent text, Government text, Country text, Population_Growth real, Infant_Mortality real, Name text, Country text, Population integer, Area real, Capital text, CapProv text, Country text, Name text, Percentage real, Name text, River text, Lake text, Sea text, Length real, SourceLongitude real, SourceLatitude real, Mountains text, SourceAltitude real, EstuaryLongitude real, EstuaryLatitude real, Name text, Depth real, Country text, Target text) | What is the population density of the Petropavl's home country? | SELECT CAST(T1.Population AS REAL) / T1.Area FROM country AS T1 INNER JOIN city AS T2 ON T1.Code = T2.Country WHERE T2.Name = 'Petropavl' | bird |
CREATE TABLE mondial_geo (Country1 text, Country2 text, Length real, Name text, Country text, Province text, Population integer, Longitude real, Latitude real, Name text, Area real, Name text, Code text, Capital text, Province text, Area real, Population integer, Name text, Area real, Longitude real, Latitude real, Country text, GDP real, Agriculture real, Service real, Industry real, Inflation real, Country text, Continent text, Percentage real, Country text, Name text, Percentage real, Desert text, Country text, Province text, River text, Country text, Province text, Island text, Country text, Province text, Lake text, Country text, Province text, Mountain text, Country text, Province text, River text, Country text, Province text, Sea text, Country text, Province text, River text, Country text, Province text, Name text, Islands text, Area real, Height real, Type text, Longitude real, Latitude real, Island text, Sea text, Lake text, River text, Country text, Organization text, Type text, Name text, Area real, Depth real, Altitude real, Type text, River text, Longitude real, Latitude real, Country text, Name text, Percentage real, City text, Province text, Country text, River text, Lake text, Sea text, City text, Province text, Country text, Island text, Sea1 text, Sea2 text, Name text, Mountains text, Height real, Type text, Longitude real, Latitude real, Mountain text, Island text, Abbreviation text, Name text, City text, Country text, Province text, Established date, Country text, Independence date, Dependent text, Government text, Country text, Population_Growth real, Infant_Mortality real, Name text, Country text, Population integer, Area real, Capital text, CapProv text, Country text, Name text, Percentage real, Name text, River text, Lake text, Sea text, Length real, SourceLongitude real, SourceLatitude real, Mountains text, SourceAltitude real, EstuaryLongitude real, EstuaryLatitude real, Name text, Depth real, Country text, Target text) | How many more people speak English than speak Scottish in United Kingdom? | SELECT T3.Population * (T2.Percentage - T1.Percentage) FROM ethnicGroup AS T1 INNER JOIN ethnicGroup AS T2 ON T1.Country = T2.Country INNER JOIN country AS T3 ON T1.Country = T3.Code WHERE T1.Name = 'Scottish' AND T2.Name = 'English' AND T3.Name = 'United Kingdom' | bird |
CREATE TABLE mondial_geo (Country1 text, Country2 text, Length real, Name text, Country text, Province text, Population integer, Longitude real, Latitude real, Name text, Area real, Name text, Code text, Capital text, Province text, Area real, Population integer, Name text, Area real, Longitude real, Latitude real, Country text, GDP real, Agriculture real, Service real, Industry real, Inflation real, Country text, Continent text, Percentage real, Country text, Name text, Percentage real, Desert text, Country text, Province text, River text, Country text, Province text, Island text, Country text, Province text, Lake text, Country text, Province text, Mountain text, Country text, Province text, River text, Country text, Province text, Sea text, Country text, Province text, River text, Country text, Province text, Name text, Islands text, Area real, Height real, Type text, Longitude real, Latitude real, Island text, Sea text, Lake text, River text, Country text, Organization text, Type text, Name text, Area real, Depth real, Altitude real, Type text, River text, Longitude real, Latitude real, Country text, Name text, Percentage real, City text, Province text, Country text, River text, Lake text, Sea text, City text, Province text, Country text, Island text, Sea1 text, Sea2 text, Name text, Mountains text, Height real, Type text, Longitude real, Latitude real, Mountain text, Island text, Abbreviation text, Name text, City text, Country text, Province text, Established date, Country text, Independence date, Dependent text, Government text, Country text, Population_Growth real, Infant_Mortality real, Name text, Country text, Population integer, Area real, Capital text, CapProv text, Country text, Name text, Percentage real, Name text, River text, Lake text, Sea text, Length real, SourceLongitude real, SourceLatitude real, Mountains text, SourceAltitude real, EstuaryLongitude real, EstuaryLatitude real, Name text, Depth real, Country text, Target text) | What is the most populated city of the 12th highest density country? | SELECT T2.Name FROM country AS T1 INNER JOIN city AS T2 ON T1.Code = T2.Country WHERE T1.Name = ( SELECT Name FROM country ORDER BY CAST(Population AS REAL) / Area LIMIT 11, 1 ) ORDER BY T2.Population DESC LIMIT 1 | bird |
CREATE TABLE mondial_geo (Country1 text, Country2 text, Length real, Name text, Country text, Province text, Population integer, Longitude real, Latitude real, Name text, Area real, Name text, Code text, Capital text, Province text, Area real, Population integer, Name text, Area real, Longitude real, Latitude real, Country text, GDP real, Agriculture real, Service real, Industry real, Inflation real, Country text, Continent text, Percentage real, Country text, Name text, Percentage real, Desert text, Country text, Province text, River text, Country text, Province text, Island text, Country text, Province text, Lake text, Country text, Province text, Mountain text, Country text, Province text, River text, Country text, Province text, Sea text, Country text, Province text, River text, Country text, Province text, Name text, Islands text, Area real, Height real, Type text, Longitude real, Latitude real, Island text, Sea text, Lake text, River text, Country text, Organization text, Type text, Name text, Area real, Depth real, Altitude real, Type text, River text, Longitude real, Latitude real, Country text, Name text, Percentage real, City text, Province text, Country text, River text, Lake text, Sea text, City text, Province text, Country text, Island text, Sea1 text, Sea2 text, Name text, Mountains text, Height real, Type text, Longitude real, Latitude real, Mountain text, Island text, Abbreviation text, Name text, City text, Country text, Province text, Established date, Country text, Independence date, Dependent text, Government text, Country text, Population_Growth real, Infant_Mortality real, Name text, Country text, Population integer, Area real, Capital text, CapProv text, Country text, Name text, Percentage real, Name text, River text, Lake text, Sea text, Length real, SourceLongitude real, SourceLatitude real, Mountains text, SourceAltitude real, EstuaryLongitude real, EstuaryLatitude real, Name text, Depth real, Country text, Target text) | How many times longer is the longest border in the United States than the shortest? | SELECT MAX(T2.Length) / MIN(T2.Length) FROM country AS T1 INNER JOIN borders AS T2 ON T1.Code = T2.Country2 WHERE T1.Name = 'United States' | bird |
CREATE TABLE mondial_geo (Country1 text, Country2 text, Length real, Name text, Country text, Province text, Population integer, Longitude real, Latitude real, Name text, Area real, Name text, Code text, Capital text, Province text, Area real, Population integer, Name text, Area real, Longitude real, Latitude real, Country text, GDP real, Agriculture real, Service real, Industry real, Inflation real, Country text, Continent text, Percentage real, Country text, Name text, Percentage real, Desert text, Country text, Province text, River text, Country text, Province text, Island text, Country text, Province text, Lake text, Country text, Province text, Mountain text, Country text, Province text, River text, Country text, Province text, Sea text, Country text, Province text, River text, Country text, Province text, Name text, Islands text, Area real, Height real, Type text, Longitude real, Latitude real, Island text, Sea text, Lake text, River text, Country text, Organization text, Type text, Name text, Area real, Depth real, Altitude real, Type text, River text, Longitude real, Latitude real, Country text, Name text, Percentage real, City text, Province text, Country text, River text, Lake text, Sea text, City text, Province text, Country text, Island text, Sea1 text, Sea2 text, Name text, Mountains text, Height real, Type text, Longitude real, Latitude real, Mountain text, Island text, Abbreviation text, Name text, City text, Country text, Province text, Established date, Country text, Independence date, Dependent text, Government text, Country text, Population_Growth real, Infant_Mortality real, Name text, Country text, Population integer, Area real, Capital text, CapProv text, Country text, Name text, Percentage real, Name text, River text, Lake text, Sea text, Length real, SourceLongitude real, SourceLatitude real, Mountains text, SourceAltitude real, EstuaryLongitude real, EstuaryLatitude real, Name text, Depth real, Country text, Target text) | Please list the capital cities of the countries that have more than 4 mountains. | SELECT T1.Capital FROM country AS T1 INNER JOIN geo_mountain AS T2 ON T1.Code = T2.Country GROUP BY T1.Name, T1.Capital HAVING COUNT(T1.Name) > 4 | bird |
CREATE TABLE mondial_geo (Country1 text, Country2 text, Length real, Name text, Country text, Province text, Population integer, Longitude real, Latitude real, Name text, Area real, Name text, Code text, Capital text, Province text, Area real, Population integer, Name text, Area real, Longitude real, Latitude real, Country text, GDP real, Agriculture real, Service real, Industry real, Inflation real, Country text, Continent text, Percentage real, Country text, Name text, Percentage real, Desert text, Country text, Province text, River text, Country text, Province text, Island text, Country text, Province text, Lake text, Country text, Province text, Mountain text, Country text, Province text, River text, Country text, Province text, Sea text, Country text, Province text, River text, Country text, Province text, Name text, Islands text, Area real, Height real, Type text, Longitude real, Latitude real, Island text, Sea text, Lake text, River text, Country text, Organization text, Type text, Name text, Area real, Depth real, Altitude real, Type text, River text, Longitude real, Latitude real, Country text, Name text, Percentage real, City text, Province text, Country text, River text, Lake text, Sea text, City text, Province text, Country text, Island text, Sea1 text, Sea2 text, Name text, Mountains text, Height real, Type text, Longitude real, Latitude real, Mountain text, Island text, Abbreviation text, Name text, City text, Country text, Province text, Established date, Country text, Independence date, Dependent text, Government text, Country text, Population_Growth real, Infant_Mortality real, Name text, Country text, Population integer, Area real, Capital text, CapProv text, Country text, Name text, Percentage real, Name text, River text, Lake text, Sea text, Length real, SourceLongitude real, SourceLatitude real, Mountains text, SourceAltitude real, EstuaryLongitude real, EstuaryLatitude real, Name text, Depth real, Country text, Target text) | How many mountains are there in the country with the greatest population? | SELECT COUNT(T2.Mountain) FROM country AS T1 INNER JOIN geo_mountain AS T2 ON T1.Code = T2.Country GROUP BY T1.Name ORDER BY T1.Population DESC LIMIT 1 | bird |
CREATE TABLE mondial_geo (Country1 text, Country2 text, Length real, Name text, Country text, Province text, Population integer, Longitude real, Latitude real, Name text, Area real, Name text, Code text, Capital text, Province text, Area real, Population integer, Name text, Area real, Longitude real, Latitude real, Country text, GDP real, Agriculture real, Service real, Industry real, Inflation real, Country text, Continent text, Percentage real, Country text, Name text, Percentage real, Desert text, Country text, Province text, River text, Country text, Province text, Island text, Country text, Province text, Lake text, Country text, Province text, Mountain text, Country text, Province text, River text, Country text, Province text, Sea text, Country text, Province text, River text, Country text, Province text, Name text, Islands text, Area real, Height real, Type text, Longitude real, Latitude real, Island text, Sea text, Lake text, River text, Country text, Organization text, Type text, Name text, Area real, Depth real, Altitude real, Type text, River text, Longitude real, Latitude real, Country text, Name text, Percentage real, City text, Province text, Country text, River text, Lake text, Sea text, City text, Province text, Country text, Island text, Sea1 text, Sea2 text, Name text, Mountains text, Height real, Type text, Longitude real, Latitude real, Mountain text, Island text, Abbreviation text, Name text, City text, Country text, Province text, Established date, Country text, Independence date, Dependent text, Government text, Country text, Population_Growth real, Infant_Mortality real, Name text, Country text, Population integer, Area real, Capital text, CapProv text, Country text, Name text, Percentage real, Name text, River text, Lake text, Sea text, Length real, SourceLongitude real, SourceLatitude real, Mountains text, SourceAltitude real, EstuaryLongitude real, EstuaryLatitude real, Name text, Depth real, Country text, Target text) | Among the countries whose agriculture takes up more than 40% of its GDP, how many of them have less than 2 mountains? | SELECT COUNT(T3.Country) FROM ( SELECT T1.Country FROM economy AS T1 INNER JOIN geo_mountain AS T2 ON T1.Country = T2.Country WHERE T1.Industry < 40 GROUP BY T1.Country HAVING COUNT(T1.Country) < 2 ) AS T3 | bird |
CREATE TABLE mondial_geo (Country1 text, Country2 text, Length real, Name text, Country text, Province text, Population integer, Longitude real, Latitude real, Name text, Area real, Name text, Code text, Capital text, Province text, Area real, Population integer, Name text, Area real, Longitude real, Latitude real, Country text, GDP real, Agriculture real, Service real, Industry real, Inflation real, Country text, Continent text, Percentage real, Country text, Name text, Percentage real, Desert text, Country text, Province text, River text, Country text, Province text, Island text, Country text, Province text, Lake text, Country text, Province text, Mountain text, Country text, Province text, River text, Country text, Province text, Sea text, Country text, Province text, River text, Country text, Province text, Name text, Islands text, Area real, Height real, Type text, Longitude real, Latitude real, Island text, Sea text, Lake text, River text, Country text, Organization text, Type text, Name text, Area real, Depth real, Altitude real, Type text, River text, Longitude real, Latitude real, Country text, Name text, Percentage real, City text, Province text, Country text, River text, Lake text, Sea text, City text, Province text, Country text, Island text, Sea1 text, Sea2 text, Name text, Mountains text, Height real, Type text, Longitude real, Latitude real, Mountain text, Island text, Abbreviation text, Name text, City text, Country text, Province text, Established date, Country text, Independence date, Dependent text, Government text, Country text, Population_Growth real, Infant_Mortality real, Name text, Country text, Population integer, Area real, Capital text, CapProv text, Country text, Name text, Percentage real, Name text, River text, Lake text, Sea text, Length real, SourceLongitude real, SourceLatitude real, Mountains text, SourceAltitude real, EstuaryLongitude real, EstuaryLatitude real, Name text, Depth real, Country text, Target text) | 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 ) | bird |
CREATE TABLE mondial_geo (Country1 text, Country2 text, Length real, Name text, Country text, Province text, Population integer, Longitude real, Latitude real, Name text, Area real, Name text, Code text, Capital text, Province text, Area real, Population integer, Name text, Area real, Longitude real, Latitude real, Country text, GDP real, Agriculture real, Service real, Industry real, Inflation real, Country text, Continent text, Percentage real, Country text, Name text, Percentage real, Desert text, Country text, Province text, River text, Country text, Province text, Island text, Country text, Province text, Lake text, Country text, Province text, Mountain text, Country text, Province text, River text, Country text, Province text, Sea text, Country text, Province text, River text, Country text, Province text, Name text, Islands text, Area real, Height real, Type text, Longitude real, Latitude real, Island text, Sea text, Lake text, River text, Country text, Organization text, Type text, Name text, Area real, Depth real, Altitude real, Type text, River text, Longitude real, Latitude real, Country text, Name text, Percentage real, City text, Province text, Country text, River text, Lake text, Sea text, City text, Province text, Country text, Island text, Sea1 text, Sea2 text, Name text, Mountains text, Height real, Type text, Longitude real, Latitude real, Mountain text, Island text, Abbreviation text, Name text, City text, Country text, Province text, Established date, Country text, Independence date, Dependent text, Government text, Country text, Population_Growth real, Infant_Mortality real, Name text, Country text, Population integer, Area real, Capital text, CapProv text, Country text, Name text, Percentage real, Name text, River text, Lake text, Sea text, Length real, SourceLongitude real, SourceLatitude real, Mountains text, SourceAltitude real, EstuaryLongitude real, EstuaryLatitude real, Name text, Depth real, Country text, Target text) | 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' | bird |
CREATE TABLE mondial_geo (Country1 text, Country2 text, Length real, Name text, Country text, Province text, Population integer, Longitude real, Latitude real, Name text, Area real, Name text, Code text, Capital text, Province text, Area real, Population integer, Name text, Area real, Longitude real, Latitude real, Country text, GDP real, Agriculture real, Service real, Industry real, Inflation real, Country text, Continent text, Percentage real, Country text, Name text, Percentage real, Desert text, Country text, Province text, River text, Country text, Province text, Island text, Country text, Province text, Lake text, Country text, Province text, Mountain text, Country text, Province text, River text, Country text, Province text, Sea text, Country text, Province text, River text, Country text, Province text, Name text, Islands text, Area real, Height real, Type text, Longitude real, Latitude real, Island text, Sea text, Lake text, River text, Country text, Organization text, Type text, Name text, Area real, Depth real, Altitude real, Type text, River text, Longitude real, Latitude real, Country text, Name text, Percentage real, City text, Province text, Country text, River text, Lake text, Sea text, City text, Province text, Country text, Island text, Sea1 text, Sea2 text, Name text, Mountains text, Height real, Type text, Longitude real, Latitude real, Mountain text, Island text, Abbreviation text, Name text, City text, Country text, Province text, Established date, Country text, Independence date, Dependent text, Government text, Country text, Population_Growth real, Infant_Mortality real, Name text, Country text, Population integer, Area real, Capital text, CapProv text, Country text, Name text, Percentage real, Name text, River text, Lake text, Sea text, Length real, SourceLongitude real, SourceLatitude real, Mountains text, SourceAltitude real, EstuaryLongitude real, EstuaryLatitude real, Name text, Depth real, Country text, Target text) | 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 | bird |
CREATE TABLE mondial_geo (Country1 text, Country2 text, Length real, Name text, Country text, Province text, Population integer, Longitude real, Latitude real, Name text, Area real, Name text, Code text, Capital text, Province text, Area real, Population integer, Name text, Area real, Longitude real, Latitude real, Country text, GDP real, Agriculture real, Service real, Industry real, Inflation real, Country text, Continent text, Percentage real, Country text, Name text, Percentage real, Desert text, Country text, Province text, River text, Country text, Province text, Island text, Country text, Province text, Lake text, Country text, Province text, Mountain text, Country text, Province text, River text, Country text, Province text, Sea text, Country text, Province text, River text, Country text, Province text, Name text, Islands text, Area real, Height real, Type text, Longitude real, Latitude real, Island text, Sea text, Lake text, River text, Country text, Organization text, Type text, Name text, Area real, Depth real, Altitude real, Type text, River text, Longitude real, Latitude real, Country text, Name text, Percentage real, City text, Province text, Country text, River text, Lake text, Sea text, City text, Province text, Country text, Island text, Sea1 text, Sea2 text, Name text, Mountains text, Height real, Type text, Longitude real, Latitude real, Mountain text, Island text, Abbreviation text, Name text, City text, Country text, Province text, Established date, Country text, Independence date, Dependent text, Government text, Country text, Population_Growth real, Infant_Mortality real, Name text, Country text, Population integer, Area real, Capital text, CapProv text, Country text, Name text, Percentage real, Name text, River text, Lake text, Sea text, Length real, SourceLongitude real, SourceLatitude real, Mountains text, SourceAltitude real, EstuaryLongitude real, EstuaryLatitude real, Name text, Depth real, Country text, Target text) | 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 | bird |
CREATE TABLE mondial_geo (Country1 text, Country2 text, Length real, Name text, Country text, Province text, Population integer, Longitude real, Latitude real, Name text, Area real, Name text, Code text, Capital text, Province text, Area real, Population integer, Name text, Area real, Longitude real, Latitude real, Country text, GDP real, Agriculture real, Service real, Industry real, Inflation real, Country text, Continent text, Percentage real, Country text, Name text, Percentage real, Desert text, Country text, Province text, River text, Country text, Province text, Island text, Country text, Province text, Lake text, Country text, Province text, Mountain text, Country text, Province text, River text, Country text, Province text, Sea text, Country text, Province text, River text, Country text, Province text, Name text, Islands text, Area real, Height real, Type text, Longitude real, Latitude real, Island text, Sea text, Lake text, River text, Country text, Organization text, Type text, Name text, Area real, Depth real, Altitude real, Type text, River text, Longitude real, Latitude real, Country text, Name text, Percentage real, City text, Province text, Country text, River text, Lake text, Sea text, City text, Province text, Country text, Island text, Sea1 text, Sea2 text, Name text, Mountains text, Height real, Type text, Longitude real, Latitude real, Mountain text, Island text, Abbreviation text, Name text, City text, Country text, Province text, Established date, Country text, Independence date, Dependent text, Government text, Country text, Population_Growth real, Infant_Mortality real, Name text, Country text, Population integer, Area real, Capital text, CapProv text, Country text, Name text, Percentage real, Name text, River text, Lake text, Sea text, Length real, SourceLongitude real, SourceLatitude real, Mountains text, SourceAltitude real, EstuaryLongitude real, EstuaryLatitude real, Name text, Depth real, Country text, Target text) | 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 | bird |
CREATE TABLE mondial_geo (Country1 text, Country2 text, Length real, Name text, Country text, Province text, Population integer, Longitude real, Latitude real, Name text, Area real, Name text, Code text, Capital text, Province text, Area real, Population integer, Name text, Area real, Longitude real, Latitude real, Country text, GDP real, Agriculture real, Service real, Industry real, Inflation real, Country text, Continent text, Percentage real, Country text, Name text, Percentage real, Desert text, Country text, Province text, River text, Country text, Province text, Island text, Country text, Province text, Lake text, Country text, Province text, Mountain text, Country text, Province text, River text, Country text, Province text, Sea text, Country text, Province text, River text, Country text, Province text, Name text, Islands text, Area real, Height real, Type text, Longitude real, Latitude real, Island text, Sea text, Lake text, River text, Country text, Organization text, Type text, Name text, Area real, Depth real, Altitude real, Type text, River text, Longitude real, Latitude real, Country text, Name text, Percentage real, City text, Province text, Country text, River text, Lake text, Sea text, City text, Province text, Country text, Island text, Sea1 text, Sea2 text, Name text, Mountains text, Height real, Type text, Longitude real, Latitude real, Mountain text, Island text, Abbreviation text, Name text, City text, Country text, Province text, Established date, Country text, Independence date, Dependent text, Government text, Country text, Population_Growth real, Infant_Mortality real, Name text, Country text, Population integer, Area real, Capital text, CapProv text, Country text, Name text, Percentage real, Name text, River text, Lake text, Sea text, Length real, SourceLongitude real, SourceLatitude real, Mountains text, SourceAltitude real, EstuaryLongitude real, EstuaryLatitude real, Name text, Depth real, Country text, Target text) | 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 | bird |
CREATE TABLE mondial_geo (Country1 text, Country2 text, Length real, Name text, Country text, Province text, Population integer, Longitude real, Latitude real, Name text, Area real, Name text, Code text, Capital text, Province text, Area real, Population integer, Name text, Area real, Longitude real, Latitude real, Country text, GDP real, Agriculture real, Service real, Industry real, Inflation real, Country text, Continent text, Percentage real, Country text, Name text, Percentage real, Desert text, Country text, Province text, River text, Country text, Province text, Island text, Country text, Province text, Lake text, Country text, Province text, Mountain text, Country text, Province text, River text, Country text, Province text, Sea text, Country text, Province text, River text, Country text, Province text, Name text, Islands text, Area real, Height real, Type text, Longitude real, Latitude real, Island text, Sea text, Lake text, River text, Country text, Organization text, Type text, Name text, Area real, Depth real, Altitude real, Type text, River text, Longitude real, Latitude real, Country text, Name text, Percentage real, City text, Province text, Country text, River text, Lake text, Sea text, City text, Province text, Country text, Island text, Sea1 text, Sea2 text, Name text, Mountains text, Height real, Type text, Longitude real, Latitude real, Mountain text, Island text, Abbreviation text, Name text, City text, Country text, Province text, Established date, Country text, Independence date, Dependent text, Government text, Country text, Population_Growth real, Infant_Mortality real, Name text, Country text, Population integer, Area real, Capital text, CapProv text, Country text, Name text, Percentage real, Name text, River text, Lake text, Sea text, Length real, SourceLongitude real, SourceLatitude real, Mountains text, SourceAltitude real, EstuaryLongitude real, EstuaryLatitude real, Name text, Depth real, Country text, Target text) | 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 | bird |
CREATE TABLE mondial_geo (Country1 text, Country2 text, Length real, Name text, Country text, Province text, Population integer, Longitude real, Latitude real, Name text, Area real, Name text, Code text, Capital text, Province text, Area real, Population integer, Name text, Area real, Longitude real, Latitude real, Country text, GDP real, Agriculture real, Service real, Industry real, Inflation real, Country text, Continent text, Percentage real, Country text, Name text, Percentage real, Desert text, Country text, Province text, River text, Country text, Province text, Island text, Country text, Province text, Lake text, Country text, Province text, Mountain text, Country text, Province text, River text, Country text, Province text, Sea text, Country text, Province text, River text, Country text, Province text, Name text, Islands text, Area real, Height real, Type text, Longitude real, Latitude real, Island text, Sea text, Lake text, River text, Country text, Organization text, Type text, Name text, Area real, Depth real, Altitude real, Type text, River text, Longitude real, Latitude real, Country text, Name text, Percentage real, City text, Province text, Country text, River text, Lake text, Sea text, City text, Province text, Country text, Island text, Sea1 text, Sea2 text, Name text, Mountains text, Height real, Type text, Longitude real, Latitude real, Mountain text, Island text, Abbreviation text, Name text, City text, Country text, Province text, Established date, Country text, Independence date, Dependent text, Government text, Country text, Population_Growth real, Infant_Mortality real, Name text, Country text, Population integer, Area real, Capital text, CapProv text, Country text, Name text, Percentage real, Name text, River text, Lake text, Sea text, Length real, SourceLongitude real, SourceLatitude real, Mountains text, SourceAltitude real, EstuaryLongitude real, EstuaryLatitude real, Name text, Depth real, Country text, Target text) | 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 | bird |
CREATE TABLE mondial_geo (Country1 text, Country2 text, Length real, Name text, Country text, Province text, Population integer, Longitude real, Latitude real, Name text, Area real, Name text, Code text, Capital text, Province text, Area real, Population integer, Name text, Area real, Longitude real, Latitude real, Country text, GDP real, Agriculture real, Service real, Industry real, Inflation real, Country text, Continent text, Percentage real, Country text, Name text, Percentage real, Desert text, Country text, Province text, River text, Country text, Province text, Island text, Country text, Province text, Lake text, Country text, Province text, Mountain text, Country text, Province text, River text, Country text, Province text, Sea text, Country text, Province text, River text, Country text, Province text, Name text, Islands text, Area real, Height real, Type text, Longitude real, Latitude real, Island text, Sea text, Lake text, River text, Country text, Organization text, Type text, Name text, Area real, Depth real, Altitude real, Type text, River text, Longitude real, Latitude real, Country text, Name text, Percentage real, City text, Province text, Country text, River text, Lake text, Sea text, City text, Province text, Country text, Island text, Sea1 text, Sea2 text, Name text, Mountains text, Height real, Type text, Longitude real, Latitude real, Mountain text, Island text, Abbreviation text, Name text, City text, Country text, Province text, Established date, Country text, Independence date, Dependent text, Government text, Country text, Population_Growth real, Infant_Mortality real, Name text, Country text, Population integer, Area real, Capital text, CapProv text, Country text, Name text, Percentage real, Name text, River text, Lake text, Sea text, Length real, SourceLongitude real, SourceLatitude real, Mountains text, SourceAltitude real, EstuaryLongitude real, EstuaryLatitude real, Name text, Depth real, Country text, Target text) | 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 | bird |
CREATE TABLE mondial_geo (Country1 text, Country2 text, Length real, Name text, Country text, Province text, Population integer, Longitude real, Latitude real, Name text, Area real, Name text, Code text, Capital text, Province text, Area real, Population integer, Name text, Area real, Longitude real, Latitude real, Country text, GDP real, Agriculture real, Service real, Industry real, Inflation real, Country text, Continent text, Percentage real, Country text, Name text, Percentage real, Desert text, Country text, Province text, River text, Country text, Province text, Island text, Country text, Province text, Lake text, Country text, Province text, Mountain text, Country text, Province text, River text, Country text, Province text, Sea text, Country text, Province text, River text, Country text, Province text, Name text, Islands text, Area real, Height real, Type text, Longitude real, Latitude real, Island text, Sea text, Lake text, River text, Country text, Organization text, Type text, Name text, Area real, Depth real, Altitude real, Type text, River text, Longitude real, Latitude real, Country text, Name text, Percentage real, City text, Province text, Country text, River text, Lake text, Sea text, City text, Province text, Country text, Island text, Sea1 text, Sea2 text, Name text, Mountains text, Height real, Type text, Longitude real, Latitude real, Mountain text, Island text, Abbreviation text, Name text, City text, Country text, Province text, Established date, Country text, Independence date, Dependent text, Government text, Country text, Population_Growth real, Infant_Mortality real, Name text, Country text, Population integer, Area real, Capital text, CapProv text, Country text, Name text, Percentage real, Name text, River text, Lake text, Sea text, Length real, SourceLongitude real, SourceLatitude real, Mountains text, SourceAltitude real, EstuaryLongitude real, EstuaryLatitude real, Name text, Depth real, Country text, Target text) | 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 | bird |
CREATE TABLE mondial_geo (Country1 text, Country2 text, Length real, Name text, Country text, Province text, Population integer, Longitude real, Latitude real, Name text, Area real, Name text, Code text, Capital text, Province text, Area real, Population integer, Name text, Area real, Longitude real, Latitude real, Country text, GDP real, Agriculture real, Service real, Industry real, Inflation real, Country text, Continent text, Percentage real, Country text, Name text, Percentage real, Desert text, Country text, Province text, River text, Country text, Province text, Island text, Country text, Province text, Lake text, Country text, Province text, Mountain text, Country text, Province text, River text, Country text, Province text, Sea text, Country text, Province text, River text, Country text, Province text, Name text, Islands text, Area real, Height real, Type text, Longitude real, Latitude real, Island text, Sea text, Lake text, River text, Country text, Organization text, Type text, Name text, Area real, Depth real, Altitude real, Type text, River text, Longitude real, Latitude real, Country text, Name text, Percentage real, City text, Province text, Country text, River text, Lake text, Sea text, City text, Province text, Country text, Island text, Sea1 text, Sea2 text, Name text, Mountains text, Height real, Type text, Longitude real, Latitude real, Mountain text, Island text, Abbreviation text, Name text, City text, Country text, Province text, Established date, Country text, Independence date, Dependent text, Government text, Country text, Population_Growth real, Infant_Mortality real, Name text, Country text, Population integer, Area real, Capital text, CapProv text, Country text, Name text, Percentage real, Name text, River text, Lake text, Sea text, Length real, SourceLongitude real, SourceLatitude real, Mountains text, SourceAltitude real, EstuaryLongitude real, EstuaryLatitude real, Name text, Depth real, Country text, Target text) | 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' | bird |
CREATE TABLE mondial_geo (Country1 text, Country2 text, Length real, Name text, Country text, Province text, Population integer, Longitude real, Latitude real, Name text, Area real, Name text, Code text, Capital text, Province text, Area real, Population integer, Name text, Area real, Longitude real, Latitude real, Country text, GDP real, Agriculture real, Service real, Industry real, Inflation real, Country text, Continent text, Percentage real, Country text, Name text, Percentage real, Desert text, Country text, Province text, River text, Country text, Province text, Island text, Country text, Province text, Lake text, Country text, Province text, Mountain text, Country text, Province text, River text, Country text, Province text, Sea text, Country text, Province text, River text, Country text, Province text, Name text, Islands text, Area real, Height real, Type text, Longitude real, Latitude real, Island text, Sea text, Lake text, River text, Country text, Organization text, Type text, Name text, Area real, Depth real, Altitude real, Type text, River text, Longitude real, Latitude real, Country text, Name text, Percentage real, City text, Province text, Country text, River text, Lake text, Sea text, City text, Province text, Country text, Island text, Sea1 text, Sea2 text, Name text, Mountains text, Height real, Type text, Longitude real, Latitude real, Mountain text, Island text, Abbreviation text, Name text, City text, Country text, Province text, Established date, Country text, Independence date, Dependent text, Government text, Country text, Population_Growth real, Infant_Mortality real, Name text, Country text, Population integer, Area real, Capital text, CapProv text, Country text, Name text, Percentage real, Name text, River text, Lake text, Sea text, Length real, SourceLongitude real, SourceLatitude real, Mountains text, SourceAltitude real, EstuaryLongitude real, EstuaryLatitude real, Name text, Depth real, Country text, Target text) | 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' | bird |
CREATE TABLE mondial_geo (Country1 text, Country2 text, Length real, Name text, Country text, Province text, Population integer, Longitude real, Latitude real, Name text, Area real, Name text, Code text, Capital text, Province text, Area real, Population integer, Name text, Area real, Longitude real, Latitude real, Country text, GDP real, Agriculture real, Service real, Industry real, Inflation real, Country text, Continent text, Percentage real, Country text, Name text, Percentage real, Desert text, Country text, Province text, River text, Country text, Province text, Island text, Country text, Province text, Lake text, Country text, Province text, Mountain text, Country text, Province text, River text, Country text, Province text, Sea text, Country text, Province text, River text, Country text, Province text, Name text, Islands text, Area real, Height real, Type text, Longitude real, Latitude real, Island text, Sea text, Lake text, River text, Country text, Organization text, Type text, Name text, Area real, Depth real, Altitude real, Type text, River text, Longitude real, Latitude real, Country text, Name text, Percentage real, City text, Province text, Country text, River text, Lake text, Sea text, City text, Province text, Country text, Island text, Sea1 text, Sea2 text, Name text, Mountains text, Height real, Type text, Longitude real, Latitude real, Mountain text, Island text, Abbreviation text, Name text, City text, Country text, Province text, Established date, Country text, Independence date, Dependent text, Government text, Country text, Population_Growth real, Infant_Mortality real, Name text, Country text, Population integer, Area real, Capital text, CapProv text, Country text, Name text, Percentage real, Name text, River text, Lake text, Sea text, Length real, SourceLongitude real, SourceLatitude real, Mountains text, SourceAltitude real, EstuaryLongitude real, EstuaryLatitude real, Name text, Depth real, Country text, Target text) | 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 | bird |
CREATE TABLE mondial_geo (Country1 text, Country2 text, Length real, Name text, Country text, Province text, Population integer, Longitude real, Latitude real, Name text, Area real, Name text, Code text, Capital text, Province text, Area real, Population integer, Name text, Area real, Longitude real, Latitude real, Country text, GDP real, Agriculture real, Service real, Industry real, Inflation real, Country text, Continent text, Percentage real, Country text, Name text, Percentage real, Desert text, Country text, Province text, River text, Country text, Province text, Island text, Country text, Province text, Lake text, Country text, Province text, Mountain text, Country text, Province text, River text, Country text, Province text, Sea text, Country text, Province text, River text, Country text, Province text, Name text, Islands text, Area real, Height real, Type text, Longitude real, Latitude real, Island text, Sea text, Lake text, River text, Country text, Organization text, Type text, Name text, Area real, Depth real, Altitude real, Type text, River text, Longitude real, Latitude real, Country text, Name text, Percentage real, City text, Province text, Country text, River text, Lake text, Sea text, City text, Province text, Country text, Island text, Sea1 text, Sea2 text, Name text, Mountains text, Height real, Type text, Longitude real, Latitude real, Mountain text, Island text, Abbreviation text, Name text, City text, Country text, Province text, Established date, Country text, Independence date, Dependent text, Government text, Country text, Population_Growth real, Infant_Mortality real, Name text, Country text, Population integer, Area real, Capital text, CapProv text, Country text, Name text, Percentage real, Name text, River text, Lake text, Sea text, Length real, SourceLongitude real, SourceLatitude real, Mountains text, SourceAltitude real, EstuaryLongitude real, EstuaryLatitude real, Name text, Depth real, Country text, Target text) | 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 | bird |
CREATE TABLE mondial_geo (Country1 text, Country2 text, Length real, Name text, Country text, Province text, Population integer, Longitude real, Latitude real, Name text, Area real, Name text, Code text, Capital text, Province text, Area real, Population integer, Name text, Area real, Longitude real, Latitude real, Country text, GDP real, Agriculture real, Service real, Industry real, Inflation real, Country text, Continent text, Percentage real, Country text, Name text, Percentage real, Desert text, Country text, Province text, River text, Country text, Province text, Island text, Country text, Province text, Lake text, Country text, Province text, Mountain text, Country text, Province text, River text, Country text, Province text, Sea text, Country text, Province text, River text, Country text, Province text, Name text, Islands text, Area real, Height real, Type text, Longitude real, Latitude real, Island text, Sea text, Lake text, River text, Country text, Organization text, Type text, Name text, Area real, Depth real, Altitude real, Type text, River text, Longitude real, Latitude real, Country text, Name text, Percentage real, City text, Province text, Country text, River text, Lake text, Sea text, City text, Province text, Country text, Island text, Sea1 text, Sea2 text, Name text, Mountains text, Height real, Type text, Longitude real, Latitude real, Mountain text, Island text, Abbreviation text, Name text, City text, Country text, Province text, Established date, Country text, Independence date, Dependent text, Government text, Country text, Population_Growth real, Infant_Mortality real, Name text, Country text, Population integer, Area real, Capital text, CapProv text, Country text, Name text, Percentage real, Name text, River text, Lake text, Sea text, Length real, SourceLongitude real, SourceLatitude real, Mountains text, SourceAltitude real, EstuaryLongitude real, EstuaryLatitude real, Name text, Depth real, Country text, Target text) | 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 | bird |
CREATE TABLE mondial_geo (Country1 text, Country2 text, Length real, Name text, Country text, Province text, Population integer, Longitude real, Latitude real, Name text, Area real, Name text, Code text, Capital text, Province text, Area real, Population integer, Name text, Area real, Longitude real, Latitude real, Country text, GDP real, Agriculture real, Service real, Industry real, Inflation real, Country text, Continent text, Percentage real, Country text, Name text, Percentage real, Desert text, Country text, Province text, River text, Country text, Province text, Island text, Country text, Province text, Lake text, Country text, Province text, Mountain text, Country text, Province text, River text, Country text, Province text, Sea text, Country text, Province text, River text, Country text, Province text, Name text, Islands text, Area real, Height real, Type text, Longitude real, Latitude real, Island text, Sea text, Lake text, River text, Country text, Organization text, Type text, Name text, Area real, Depth real, Altitude real, Type text, River text, Longitude real, Latitude real, Country text, Name text, Percentage real, City text, Province text, Country text, River text, Lake text, Sea text, City text, Province text, Country text, Island text, Sea1 text, Sea2 text, Name text, Mountains text, Height real, Type text, Longitude real, Latitude real, Mountain text, Island text, Abbreviation text, Name text, City text, Country text, Province text, Established date, Country text, Independence date, Dependent text, Government text, Country text, Population_Growth real, Infant_Mortality real, Name text, Country text, Population integer, Area real, Capital text, CapProv text, Country text, Name text, Percentage real, Name text, River text, Lake text, Sea text, Length real, SourceLongitude real, SourceLatitude real, Mountains text, SourceAltitude real, EstuaryLongitude real, EstuaryLatitude real, Name text, Depth real, Country text, Target text) | 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 | bird |
CREATE TABLE mondial_geo (Country1 text, Country2 text, Length real, Name text, Country text, Province text, Population integer, Longitude real, Latitude real, Name text, Area real, Name text, Code text, Capital text, Province text, Area real, Population integer, Name text, Area real, Longitude real, Latitude real, Country text, GDP real, Agriculture real, Service real, Industry real, Inflation real, Country text, Continent text, Percentage real, Country text, Name text, Percentage real, Desert text, Country text, Province text, River text, Country text, Province text, Island text, Country text, Province text, Lake text, Country text, Province text, Mountain text, Country text, Province text, River text, Country text, Province text, Sea text, Country text, Province text, River text, Country text, Province text, Name text, Islands text, Area real, Height real, Type text, Longitude real, Latitude real, Island text, Sea text, Lake text, River text, Country text, Organization text, Type text, Name text, Area real, Depth real, Altitude real, Type text, River text, Longitude real, Latitude real, Country text, Name text, Percentage real, City text, Province text, Country text, River text, Lake text, Sea text, City text, Province text, Country text, Island text, Sea1 text, Sea2 text, Name text, Mountains text, Height real, Type text, Longitude real, Latitude real, Mountain text, Island text, Abbreviation text, Name text, City text, Country text, Province text, Established date, Country text, Independence date, Dependent text, Government text, Country text, Population_Growth real, Infant_Mortality real, Name text, Country text, Population integer, Area real, Capital text, CapProv text, Country text, Name text, Percentage real, Name text, River text, Lake text, Sea text, Length real, SourceLongitude real, SourceLatitude real, Mountains text, SourceAltitude real, EstuaryLongitude real, EstuaryLatitude real, Name text, Depth real, Country text, Target text) | 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' | bird |
CREATE TABLE mondial_geo (Country1 text, Country2 text, Length real, Name text, Country text, Province text, Population integer, Longitude real, Latitude real, Name text, Area real, Name text, Code text, Capital text, Province text, Area real, Population integer, Name text, Area real, Longitude real, Latitude real, Country text, GDP real, Agriculture real, Service real, Industry real, Inflation real, Country text, Continent text, Percentage real, Country text, Name text, Percentage real, Desert text, Country text, Province text, River text, Country text, Province text, Island text, Country text, Province text, Lake text, Country text, Province text, Mountain text, Country text, Province text, River text, Country text, Province text, Sea text, Country text, Province text, River text, Country text, Province text, Name text, Islands text, Area real, Height real, Type text, Longitude real, Latitude real, Island text, Sea text, Lake text, River text, Country text, Organization text, Type text, Name text, Area real, Depth real, Altitude real, Type text, River text, Longitude real, Latitude real, Country text, Name text, Percentage real, City text, Province text, Country text, River text, Lake text, Sea text, City text, Province text, Country text, Island text, Sea1 text, Sea2 text, Name text, Mountains text, Height real, Type text, Longitude real, Latitude real, Mountain text, Island text, Abbreviation text, Name text, City text, Country text, Province text, Established date, Country text, Independence date, Dependent text, Government text, Country text, Population_Growth real, Infant_Mortality real, Name text, Country text, Population integer, Area real, Capital text, CapProv text, Country text, Name text, Percentage real, Name text, River text, Lake text, Sea text, Length real, SourceLongitude real, SourceLatitude real, Mountains text, SourceAltitude real, EstuaryLongitude real, EstuaryLatitude real, Name text, Depth real, Country text, Target text) | 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 | bird |
CREATE TABLE mondial_geo (Country1 text, Country2 text, Length real, Name text, Country text, Province text, Population integer, Longitude real, Latitude real, Name text, Area real, Name text, Code text, Capital text, Province text, Area real, Population integer, Name text, Area real, Longitude real, Latitude real, Country text, GDP real, Agriculture real, Service real, Industry real, Inflation real, Country text, Continent text, Percentage real, Country text, Name text, Percentage real, Desert text, Country text, Province text, River text, Country text, Province text, Island text, Country text, Province text, Lake text, Country text, Province text, Mountain text, Country text, Province text, River text, Country text, Province text, Sea text, Country text, Province text, River text, Country text, Province text, Name text, Islands text, Area real, Height real, Type text, Longitude real, Latitude real, Island text, Sea text, Lake text, River text, Country text, Organization text, Type text, Name text, Area real, Depth real, Altitude real, Type text, River text, Longitude real, Latitude real, Country text, Name text, Percentage real, City text, Province text, Country text, River text, Lake text, Sea text, City text, Province text, Country text, Island text, Sea1 text, Sea2 text, Name text, Mountains text, Height real, Type text, Longitude real, Latitude real, Mountain text, Island text, Abbreviation text, Name text, City text, Country text, Province text, Established date, Country text, Independence date, Dependent text, Government text, Country text, Population_Growth real, Infant_Mortality real, Name text, Country text, Population integer, Area real, Capital text, CapProv text, Country text, Name text, Percentage real, Name text, River text, Lake text, Sea text, Length real, SourceLongitude real, SourceLatitude real, Mountains text, SourceAltitude real, EstuaryLongitude real, EstuaryLatitude real, Name text, Depth real, Country text, Target text) | 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 ) | bird |
CREATE TABLE mondial_geo (Country1 text, Country2 text, Length real, Name text, Country text, Province text, Population integer, Longitude real, Latitude real, Name text, Area real, Name text, Code text, Capital text, Province text, Area real, Population integer, Name text, Area real, Longitude real, Latitude real, Country text, GDP real, Agriculture real, Service real, Industry real, Inflation real, Country text, Continent text, Percentage real, Country text, Name text, Percentage real, Desert text, Country text, Province text, River text, Country text, Province text, Island text, Country text, Province text, Lake text, Country text, Province text, Mountain text, Country text, Province text, River text, Country text, Province text, Sea text, Country text, Province text, River text, Country text, Province text, Name text, Islands text, Area real, Height real, Type text, Longitude real, Latitude real, Island text, Sea text, Lake text, River text, Country text, Organization text, Type text, Name text, Area real, Depth real, Altitude real, Type text, River text, Longitude real, Latitude real, Country text, Name text, Percentage real, City text, Province text, Country text, River text, Lake text, Sea text, City text, Province text, Country text, Island text, Sea1 text, Sea2 text, Name text, Mountains text, Height real, Type text, Longitude real, Latitude real, Mountain text, Island text, Abbreviation text, Name text, City text, Country text, Province text, Established date, Country text, Independence date, Dependent text, Government text, Country text, Population_Growth real, Infant_Mortality real, Name text, Country text, Population integer, Area real, Capital text, CapProv text, Country text, Name text, Percentage real, Name text, River text, Lake text, Sea text, Length real, SourceLongitude real, SourceLatitude real, Mountains text, SourceAltitude real, EstuaryLongitude real, EstuaryLatitude real, Name text, Depth real, Country text, Target text) | 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' | bird |
CREATE TABLE mondial_geo (Country1 text, Country2 text, Length real, Name text, Country text, Province text, Population integer, Longitude real, Latitude real, Name text, Area real, Name text, Code text, Capital text, Province text, Area real, Population integer, Name text, Area real, Longitude real, Latitude real, Country text, GDP real, Agriculture real, Service real, Industry real, Inflation real, Country text, Continent text, Percentage real, Country text, Name text, Percentage real, Desert text, Country text, Province text, River text, Country text, Province text, Island text, Country text, Province text, Lake text, Country text, Province text, Mountain text, Country text, Province text, River text, Country text, Province text, Sea text, Country text, Province text, River text, Country text, Province text, Name text, Islands text, Area real, Height real, Type text, Longitude real, Latitude real, Island text, Sea text, Lake text, River text, Country text, Organization text, Type text, Name text, Area real, Depth real, Altitude real, Type text, River text, Longitude real, Latitude real, Country text, Name text, Percentage real, City text, Province text, Country text, River text, Lake text, Sea text, City text, Province text, Country text, Island text, Sea1 text, Sea2 text, Name text, Mountains text, Height real, Type text, Longitude real, Latitude real, Mountain text, Island text, Abbreviation text, Name text, City text, Country text, Province text, Established date, Country text, Independence date, Dependent text, Government text, Country text, Population_Growth real, Infant_Mortality real, Name text, Country text, Population integer, Area real, Capital text, CapProv text, Country text, Name text, Percentage real, Name text, River text, Lake text, Sea text, Length real, SourceLongitude real, SourceLatitude real, Mountains text, SourceAltitude real, EstuaryLongitude real, EstuaryLatitude real, Name text, Depth real, Country text, Target text) | 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' | bird |
CREATE TABLE mondial_geo (Country1 text, Country2 text, Length real, Name text, Country text, Province text, Population integer, Longitude real, Latitude real, Name text, Area real, Name text, Code text, Capital text, Province text, Area real, Population integer, Name text, Area real, Longitude real, Latitude real, Country text, GDP real, Agriculture real, Service real, Industry real, Inflation real, Country text, Continent text, Percentage real, Country text, Name text, Percentage real, Desert text, Country text, Province text, River text, Country text, Province text, Island text, Country text, Province text, Lake text, Country text, Province text, Mountain text, Country text, Province text, River text, Country text, Province text, Sea text, Country text, Province text, River text, Country text, Province text, Name text, Islands text, Area real, Height real, Type text, Longitude real, Latitude real, Island text, Sea text, Lake text, River text, Country text, Organization text, Type text, Name text, Area real, Depth real, Altitude real, Type text, River text, Longitude real, Latitude real, Country text, Name text, Percentage real, City text, Province text, Country text, River text, Lake text, Sea text, City text, Province text, Country text, Island text, Sea1 text, Sea2 text, Name text, Mountains text, Height real, Type text, Longitude real, Latitude real, Mountain text, Island text, Abbreviation text, Name text, City text, Country text, Province text, Established date, Country text, Independence date, Dependent text, Government text, Country text, Population_Growth real, Infant_Mortality real, Name text, Country text, Population integer, Area real, Capital text, CapProv text, Country text, Name text, Percentage real, Name text, River text, Lake text, Sea text, Length real, SourceLongitude real, SourceLatitude real, Mountains text, SourceAltitude real, EstuaryLongitude real, EstuaryLatitude real, Name text, Depth real, Country text, Target text) | 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' | bird |
CREATE TABLE mondial_geo (Country1 text, Country2 text, Length real, Name text, Country text, Province text, Population integer, Longitude real, Latitude real, Name text, Area real, Name text, Code text, Capital text, Province text, Area real, Population integer, Name text, Area real, Longitude real, Latitude real, Country text, GDP real, Agriculture real, Service real, Industry real, Inflation real, Country text, Continent text, Percentage real, Country text, Name text, Percentage real, Desert text, Country text, Province text, River text, Country text, Province text, Island text, Country text, Province text, Lake text, Country text, Province text, Mountain text, Country text, Province text, River text, Country text, Province text, Sea text, Country text, Province text, River text, Country text, Province text, Name text, Islands text, Area real, Height real, Type text, Longitude real, Latitude real, Island text, Sea text, Lake text, River text, Country text, Organization text, Type text, Name text, Area real, Depth real, Altitude real, Type text, River text, Longitude real, Latitude real, Country text, Name text, Percentage real, City text, Province text, Country text, River text, Lake text, Sea text, City text, Province text, Country text, Island text, Sea1 text, Sea2 text, Name text, Mountains text, Height real, Type text, Longitude real, Latitude real, Mountain text, Island text, Abbreviation text, Name text, City text, Country text, Province text, Established date, Country text, Independence date, Dependent text, Government text, Country text, Population_Growth real, Infant_Mortality real, Name text, Country text, Population integer, Area real, Capital text, CapProv text, Country text, Name text, Percentage real, Name text, River text, Lake text, Sea text, Length real, SourceLongitude real, SourceLatitude real, Mountains text, SourceAltitude real, EstuaryLongitude real, EstuaryLatitude real, Name text, Depth real, Country text, Target text) | 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' ) | bird |
CREATE TABLE mondial_geo (Country1 text, Country2 text, Length real, Name text, Country text, Province text, Population integer, Longitude real, Latitude real, Name text, Area real, Name text, Code text, Capital text, Province text, Area real, Population integer, Name text, Area real, Longitude real, Latitude real, Country text, GDP real, Agriculture real, Service real, Industry real, Inflation real, Country text, Continent text, Percentage real, Country text, Name text, Percentage real, Desert text, Country text, Province text, River text, Country text, Province text, Island text, Country text, Province text, Lake text, Country text, Province text, Mountain text, Country text, Province text, River text, Country text, Province text, Sea text, Country text, Province text, River text, Country text, Province text, Name text, Islands text, Area real, Height real, Type text, Longitude real, Latitude real, Island text, Sea text, Lake text, River text, Country text, Organization text, Type text, Name text, Area real, Depth real, Altitude real, Type text, River text, Longitude real, Latitude real, Country text, Name text, Percentage real, City text, Province text, Country text, River text, Lake text, Sea text, City text, Province text, Country text, Island text, Sea1 text, Sea2 text, Name text, Mountains text, Height real, Type text, Longitude real, Latitude real, Mountain text, Island text, Abbreviation text, Name text, City text, Country text, Province text, Established date, Country text, Independence date, Dependent text, Government text, Country text, Population_Growth real, Infant_Mortality real, Name text, Country text, Population integer, Area real, Capital text, CapProv text, Country text, Name text, Percentage real, Name text, River text, Lake text, Sea text, Length real, SourceLongitude real, SourceLatitude real, Mountains text, SourceAltitude real, EstuaryLongitude real, EstuaryLatitude real, Name text, Depth real, Country text, Target text) | 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 | bird |
CREATE TABLE mondial_geo (Country1 text, Country2 text, Length real, Name text, Country text, Province text, Population integer, Longitude real, Latitude real, Name text, Area real, Name text, Code text, Capital text, Province text, Area real, Population integer, Name text, Area real, Longitude real, Latitude real, Country text, GDP real, Agriculture real, Service real, Industry real, Inflation real, Country text, Continent text, Percentage real, Country text, Name text, Percentage real, Desert text, Country text, Province text, River text, Country text, Province text, Island text, Country text, Province text, Lake text, Country text, Province text, Mountain text, Country text, Province text, River text, Country text, Province text, Sea text, Country text, Province text, River text, Country text, Province text, Name text, Islands text, Area real, Height real, Type text, Longitude real, Latitude real, Island text, Sea text, Lake text, River text, Country text, Organization text, Type text, Name text, Area real, Depth real, Altitude real, Type text, River text, Longitude real, Latitude real, Country text, Name text, Percentage real, City text, Province text, Country text, River text, Lake text, Sea text, City text, Province text, Country text, Island text, Sea1 text, Sea2 text, Name text, Mountains text, Height real, Type text, Longitude real, Latitude real, Mountain text, Island text, Abbreviation text, Name text, City text, Country text, Province text, Established date, Country text, Independence date, Dependent text, Government text, Country text, Population_Growth real, Infant_Mortality real, Name text, Country text, Population integer, Area real, Capital text, CapProv text, Country text, Name text, Percentage real, Name text, River text, Lake text, Sea text, Length real, SourceLongitude real, SourceLatitude real, Mountains text, SourceAltitude real, EstuaryLongitude real, EstuaryLatitude real, Name text, Depth real, Country text, Target text) | 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' | bird |
CREATE TABLE mondial_geo (Country1 text, Country2 text, Length real, Name text, Country text, Province text, Population integer, Longitude real, Latitude real, Name text, Area real, Name text, Code text, Capital text, Province text, Area real, Population integer, Name text, Area real, Longitude real, Latitude real, Country text, GDP real, Agriculture real, Service real, Industry real, Inflation real, Country text, Continent text, Percentage real, Country text, Name text, Percentage real, Desert text, Country text, Province text, River text, Country text, Province text, Island text, Country text, Province text, Lake text, Country text, Province text, Mountain text, Country text, Province text, River text, Country text, Province text, Sea text, Country text, Province text, River text, Country text, Province text, Name text, Islands text, Area real, Height real, Type text, Longitude real, Latitude real, Island text, Sea text, Lake text, River text, Country text, Organization text, Type text, Name text, Area real, Depth real, Altitude real, Type text, River text, Longitude real, Latitude real, Country text, Name text, Percentage real, City text, Province text, Country text, River text, Lake text, Sea text, City text, Province text, Country text, Island text, Sea1 text, Sea2 text, Name text, Mountains text, Height real, Type text, Longitude real, Latitude real, Mountain text, Island text, Abbreviation text, Name text, City text, Country text, Province text, Established date, Country text, Independence date, Dependent text, Government text, Country text, Population_Growth real, Infant_Mortality real, Name text, Country text, Population integer, Area real, Capital text, CapProv text, Country text, Name text, Percentage real, Name text, River text, Lake text, Sea text, Length real, SourceLongitude real, SourceLatitude real, Mountains text, SourceAltitude real, EstuaryLongitude real, EstuaryLatitude real, Name text, Depth real, Country text, Target text) | 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 | bird |
Subsets and Splits