We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
- Prepare
- SQL
- Aggregation
- Average Population
- Discussions
Average Population
Average Population
Sort by
recency
|
681 Discussions
|
Please Login in order to post a comment
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.
SELECT ROUND(AVG(POPULATION),0) FROM CITY;
SELECT AVG(POPULATION) FROM CITY
select round(avg(population),0) from city;
select cast(avg(population) as decimal(10,0)) from city