[HackerRank SQL] Population Density Difference


質問リンク
https://www.hackerrank.com/challenges/population-density-difference/problem
Code link
https://github.com/JamesJung01/Hackerrank_sql/blob/main/01_Easy/Population_Density_Difference.sql
SELECT MAX(POPULATION) - MIN(POPULATION)
FROM CITY;