You are viewing a single comment's thread. Return to all comments →
SELECT CC.CONTINENT, FLOOR(AVG(C.POPULATION)) FROM CITY C JOIN COUNTRY CC ON CC.CODE = C.COUNTRYCODE GROUP BY CC.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 CC.CONTINENT, FLOOR(AVG(C.POPULATION)) FROM CITY C JOIN COUNTRY CC ON CC.CODE = C.COUNTRYCODE GROUP BY CC.CONTINENT