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 - Averages
Revising Aggregations - Averages
Sort by
recency
|
402 Discussions
|
Please Login in order to post a comment
Select Avg(Population) from city where district='California'
SELECT AVG(Population) From City WHERE District = 'California';
Select Avg(Population) from city where district = 'california'
For MSSQL
SELECT AVG(POPULATION) FROM CITY WHERE DISTRICT = 'California';
SELECT AVG(POPULATION)
FROM CITY
WHERE DISTRICT = 'California';