Anusha Murali

Logo

Please see github.com/anusha-murali for all of my repositories.

View GitHub Profile

12. Population Density Difference: Solution


Query the difference between the maximum and minimum populations in CITY.

The CITY table is described as follows:

1

solution_image5

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

Back to problems


anusha-murali.github.io