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
|
699 Discussions
|
Please Login in order to post a comment
Query the average population for all cities in CITY, rounded down to the nearest integer.
Query the average population for all cities in CITY, rounded down to the nearest integer.
Query the average population for all cities in CITY, rounded down to the nearest integer.
Select Round(Avg(Population) , 0) as Population from city
SELECT ROUND(AVG(POPULATION)) FROM CITY;