Anusha Murali

Logo

Please see github.com/anusha-murali for all of my repositories.

View GitHub Profile

10. Revising Aggregations - The SUM Function: Solution


Query the total population of all cities in CITY where District is California.

The CITY table is described as follows:

1

solution_image5

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

Back to problems


anusha-murali.github.io