Average Population
AGGREGATION
Query the average population for all cities in CITY, rounded downto the nearest integer.
Input Format
The CITY table is described as follows:
SELECT ROUND(AVG(population),0)
FROM City
Last updated
Was this helpful?
AGGREGATION
Query the average population for all cities in CITY, rounded downto the nearest integer.
Input Format
The CITY table is described as follows:
SELECT ROUND(AVG(population),0)
FROM City
Last updated
Was this helpful?