You are viewing a single comment's thread. Return to all comments →
MYSQL SOLUTION Approch 1
SELECT ABS((SELECT POPULATION FROM CITY ORDER BY POPULATION DESC LIMIT 1) - (SELECT POPULATION FROM CITY ORDER BY POPULATION ASC LIMIT 1)) FROM CITY LIMIT 1
Approch 2
SELECT (MAX(POPULATION) - MIN(POPULATION)) FROM CITY;
Seems like cookies are disabled on this browser, please enable them to open this website
Population Density Difference
You are viewing a single comment's thread. Return to all comments →
MYSQL SOLUTION Approch 1
Approch 2