Average Population

Sort by

recency

|

729 Discussions

|

  • + 0 comments

    select avg(floor(population)) from city

  • + 0 comments

    SELECT FLOOR(AVG (Population)) FROM CITY;

  • + 0 comments

    select round(avg(population)) from city;

  • + 0 comments

    select round(avg(population)) from city;

  • + 0 comments
    SELECT ROUND(AVG(population)) FROM city;