Population Density Difference

Sort by

recency

|

539 Discussions

|

  • + 0 comments

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

  • + 0 comments
    SELECT MAX(POPULATION) - MIN(POPULATION)
    FROM CITY
    
  • + 0 comments

    SELECT MAX(population) - MIN(population) FROM city;

  • + 0 comments
    SELECT MAX(POPULATION)-MIN(POPULATION) FROM CITY
    
  • + 0 comments

    select max(population) - min(population) as Difference from CITY;