Query the difference between the maximum and minimum populations in CITY
Query the difference between the maximum and minimum populations in CITY.
Input Format
The CITY table is described as follows:
———-SOLUTION———-
SELECT (MAX(population) - MIN(population)) FROM city;