You are viewing a single comment's thread. Return to all comments →
select ctr.continent, floor(avg(c.population)) as average_population from city c join country ctr on ctr.code = c.countrycode group by ctr.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 ctr.continent, floor(avg(c.population)) as average_population from city c join country ctr on ctr.code = c.countrycode group by ctr.continent;