- Population Density Difference

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

Input Format

The CITY table is described as follows:

select max(population)-min(population) as diff_population from city

Compiler Message
Success
Input (stdin)
  •  
Expected Output
  • 4695354

Post a Comment

Previous Post Next Post