Average Population

Sort by

recency

|

699 Discussions

|

  • + 0 comments

    Query the average population for all cities in CITY, rounded down to the nearest integer.

  • + 0 comments

    Query the average population for all cities in CITY, rounded down to the nearest integer.

  • + 0 comments

    Query the average population for all cities in CITY, rounded down to the nearest integer.

  • + 0 comments

    Select Round(Avg(Population) , 0) as Population from city

  • + 0 comments

    SELECT ROUND(AVG(POPULATION)) FROM CITY;