Anusha Murali

Logo

Please see github.com/anusha-murali for all of my repositories.

View GitHub Profile

7. Average Population: Solution


Query the average population for all cities in CITY, rounded down to the nearest integer.

The CITY table is described as follows:

1

solution_image5

SELECT ROUND(AVG(POPULATION))
FROM CITY;

Back to problems


anusha-murali.github.io