You are viewing a single comment's thread. Return to all comments →
select a.CONTINENT, floor(avg(b.POPULATION)) from COUNTRY as a INNER JOIN CITY as b on a.CODE = b.COUNTRYCODE group by 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 a.CONTINENT, floor(avg(b.POPULATION)) from COUNTRY as a INNER JOIN CITY as b on a.CODE = b.COUNTRYCODE group by CONTINENT;