[SQL] Revising Aggregations - Averages


✅ Revising Aggregations - Averages


📝 質問する


Query the average population for all cities in CITY , rounded down to the nearest integer.Input FormatThe CITY table is described as follows:

💻 に答える

SELECT ROUND(AVG(POPULATION))
FROM CITY;