Revising Aggregations - The Sum Function
AGGREGATION
Query the total population of all cities in CITY where District is California.
Input Format
The CITY table is described as follows:
SELECT SUM(population)
FROM City
WHERE district = 'California'
Last updated
Was this helpful?