Population Density Difference

Sort by

recency

|

525 Discussions

|

  • + 0 comments

    select max(population)-min(population) FROM CITY;

  • + 0 comments

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

  • + 0 comments

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

  • + 0 comments

    Select (Max(Population) - Min(Population)) as Diff from city

  • + 0 comments
    SELECT MAX(population) - MIN(population) FROM city ;