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