You are viewing a single comment's thread. Return to all comments →
SELECT b.CONTINENT AS Continent, FLOOR(AVG(a.POPULATION)) AS media FROM CITY a LEFT JOIN COUNTRY b ON UPPER(a.COUNTRYCODE) = UPPER(b.CODE) WHERE b.CONTINENT IS NOT NULL GROUP BY b.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 →