You are viewing a single comment's thread. Return to all comments →
MySQL:
SELECT coun.continent, FLOOR(AVG(city.population)) AS avg_population FROM country coun INNER JOIN city ON coun.code = city.countrycode GROUP BY coun.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 →
MySQL: