Please see github.com/anusha-murali for all of my repositories.
Query the average population of all cities in CITY where District is California.
The CITY table is described as follows:
SELECT AVG(POPULATION)
FROM CITY
WHERE DISTRICT = 'California';