[SQL] Revising Aggregations - The Sum Function


✅ Revising Aggregations - The Sum Function


📝 質問する


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

💻 に答える

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