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
|
658 Discussions
|
Please Login in order to post a comment
SELECT ROUND(AVG(POPULATION)) FROM CITY;
ngoccth_SQL SERVER: SELECT ROUND (AVG (population), 0) FROM City
select round(avg(population)) as population from city
select round(avg(population)) from city;