Skip to content

Latest commit

Β 

History

History
21 lines (11 loc) Β· 318 Bytes

Population_Density_Difference.md

File metadata and controls

21 lines (11 loc) Β· 318 Bytes

Population Density Difference

Query the difference between the maximum and minimum populations in CITY.

Input Format

The CITY table is described as follows:

Alt text


Answer

SQL Query

SELECT MAX(POPULATION)-MIN(POPULATION) FROM CITY;