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.
Input Format
The CITY table is described as follows:
———-SOLUTION———-
SELECT ROUND(AVG(population)) FROM city;