You are viewing a single comment's thread. Return to all comments →
SELECT co.continent , floor(avg(ci.population)) FROM city ci INNER JOIN country co ON ci.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(ci.population)) FROM city ci INNER JOIN country co ON ci.COUNTRYCODE = co.CODE GROUP BY co.CONTINENT;