Population Density Difference

Sort by

recency

|

491 Discussions

|

  • + 0 comments
    select 
        max(population) - min(population)
    from
        CITY;
    
  • + 0 comments

    SELECT MAX(POPULATION) - MIN(POPULATION) FROM CITY

    SELECT is used to select the population FROM the city table. MAX and MIN calculate the maximum and minimum from the population column.

  • [deleted]
    + 0 comments

    For MySQL

    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;