We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
Population Density Difference
Population Density Difference
Sort by
recency
|
495 Discussions
|
Please Login in order to post a comment
SELECT MAX(population) - MIN(population) FROM city;
For MySQL
select max(population)-min(population) from city;
For MySQL:
Select max(population)-Min(population) from CITY;