[SQL] Revising Aggregations - Averages


✅ Revising Aggregations - Averages


📝 質問する


Query the average population of all cities in CITY where District is California .Input FormatThe CITY table is described as follows:

💻 に答える

SELECT AVG(POPULATION)
FROM CITY
WHERE DISTRICT = 'California';