You are viewing a single comment's thread. Return to all comments →
SELECT CO.CONTINENT, FLOOR(AVG(C.POPULATION)) FROM COUNTRY CO JOIN CITY C ON C.COUNTRYCODE = CO.CODE GROUP BY CO.CONTINENT
Seems like cookies are disabled on this browser, please enable them to open this website
Average Population of Each Continent
You are viewing a single comment's thread. Return to all comments →
SELECT CO.CONTINENT, FLOOR(AVG(C.POPULATION)) FROM COUNTRY CO JOIN CITY C ON C.COUNTRYCODE = CO.CODE GROUP BY CO.CONTINENT