HackerRank-Aggregation-Population Density Difference
Population Density Difference
Query the difference between the maximum and minimum populations in CITY.
Input Format The CITY table is described as follows:
My solution
SELECT MAX(population) - MIN(population)
FROM CITY;
Comments