<<< European countries >>>
Scenario world
f35f7fece0cf0019765619c477c900ddd8131dbc27b32e9261f4ab7cdc49773c
See details on the model
In this scenario, we have a single table world in which each row describes a country. The table contains the following attributes:
- name of type VARCHAR(50) NOT NULL, the name of the country (e.g. France)
- continent of type VARCHAR(60), in which continent is the country in (e.g. Europe)
- area of time DECIMAL(10) the area of the country in square kilometer
- population of type DECIMAL(11) the number of inhabitants
- gdp of type DECIMAL(14) the Gross Domestic Product
- capital of type VARCHAR(60) the name of the capital city
- tld of type VARCHAR(5) the Top Level Domain of the country (the last part of the domain names of the country, e.g. .fr for France)
- flag of type VARCHAR(255) an url of the flag of the country
Question
Select the name and population of all European countries
{"rows":[["Albania","2821977"],["Andorra","76098"],["Austria","8504850"],["Belarus","9467000"],["Belgium","11198638"],["Bosnia and Herzegovina","3791622"],["Bulgaria","7245677"],["Croatia","4290612"],["Czech Republic","10517400"],["Denmark","5634437"],["Estonia","1315819"],["Finland","5458038"],["France","65906000"],["Germany","80716000"],["Greece","11123034"],["Hungary","9879000"],["Iceland","326340"],["Ireland","4593100"],["Italy","60782668"],["Kazakhstan","17244000"],["Latvia","1996500"],["Liechtenstein","37132"],["Lithuania","2939431"],["Luxembourg","549700"],["Macedonia","2062294"],["Malta","416055"],["Moldova","3557600"],["Monaco","36950"],["Montenegro","620029"],["Netherlands","16857500"],["Norway","5124383"],["Poland","38496000"],["Portugal","10477800"],["Romania","19942642"],["San Marino","32637"],["Serbia","7181505"],["Slovakia","5415949"],["Slovenia","2063151"],["Spain","46609700"],["Sweden","9675885"],["Switzerland","8160900"],["Ukraine","43009258"],["United Kingdom","64105700"],["Vatican City","839"]],"fields":[{"name":"name","dataTypeID":1043},{"name":"population","dataTypeID":1700}],"affectedRows":0}
False
False