Please see github.com/anusha-murali for all of my repositories.
View GitHub Profile
Query the average population for all cities in CITY, rounded down to the nearest integer.
The CITY table is described as follows:
SELECT ROUND(AVG(POPULATION)) FROM CITY;
Back to problems