We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
Revising Aggregations - The Sum Function
Revising Aggregations - The Sum Function
Sort by
recency
|
487 Discussions
|
Please Login in order to post a comment
select SUM(population) from CITY where district = 'California';
For MySQL Platform
SELECT SUM(POPULATION) FROM CITY WHERE DISTRICT = 'California'
SELECT SUM(population)
FROM CITY
WHERE DISTRICT = 'California';