Average Population

Sort by

recency

|

681 Discussions

|

  • + 0 comments

    SELECT FLOOR(AVG(POPULATION)) from CITY

    here we have used the FLOOR() function in SQL is used to round a number down to the nearest integer.

  • + 0 comments

    SELECT ROUND(AVG(POPULATION),0) FROM CITY;

  • + 0 comments

    SELECT AVG(POPULATION) FROM CITY

  • + 0 comments

    select round(avg(population),0) from city;

  • + 0 comments

    select cast(avg(population) as decimal(10,0)) from city