Population Density Difference
AGGREGATION
Query the difference between the maximum and minimum populations in CITY.
Input Format
The CITY table is described as follows:

SELECT MAX(population) - MIN(population)
FROM CityLast updated
Was this helpful?