[SQL] Population Density Difference


✅ Population Density Difference


📝 質問する


Query the difference between the maximum and minimum populations in CITY .Input FormatThe CITY table is described as follows:

💻 に答える

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