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
+ 0 comments SELECT ROUND(AVG(Population)) FROM CITY;
+ 0 comments SELECT round(avg(population)) FROM city;
+ 1 comment Please try the below mysql code: SELECT ROUND(AVG(POPULATION)) FROM CITY;
+ 0 comments select floor(avg(POPULATION)) from CITY ;
+ 0 comments MySql Solutions
SELECT ROUND(AVG(Population)) FROM CITY;
Or
SELECT FLOOR(AVG(Population)) FROM CITY;
Load more conversations
Sort 556 Discussions, By:
Please Login in order to post a comment