Population Density Difference

Sort by

recency

|

537 Discussions

|

  • + 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;

  • + 0 comments

    select max(population) - min(population) from city;

  • + 0 comments

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