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
|
525 Discussions
|
Please Login in order to post a comment
select max(population)-min(population) FROM CITY;
Query the difference between the maximum and minimum populations in CITY.
SELECT MAX(POPULATION) - MIN(POPULATION) AS DIFFERENCE FROM CITY;
Select (Max(Population) - Min(Population)) as Diff from city