Query the difference between the maximum and minimum populations in CITY.
Input Format
The CITY table is described as follows:
Solution Implementation
SELECT MAX(POPULATION)-MIN(POPULATION)
FROM CITY;
Copied!
Query the difference between the maximum and minimum populations in CITY.
Input Format
The CITY table is described as follows:
Solution Implementation
SELECT MAX(POPULATION)-MIN(POPULATION)
FROM CITY;