Population Density Difference

Sort by

recency

|

530 Discussions

|

  • + 0 comments

    ORACLE

    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) "difference" from city;

  • + 0 comments

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