Average Population

Sort by

recency

|

658 Discussions

|

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

    SELECT ROUND(AVG(POPULATION)) FROM CITY;

  • + 0 comments

    ngoccth_SQL SERVER: SELECT ROUND (AVG (population), 0) FROM City

  • + 0 comments

    select round(avg(population)) as population from city

  • + 0 comments

    select round(avg(population)) from city;