Average Population of Each Continent

  • + 0 comments
    SELECT country.continent, FLOOR(AVG(city.population))
    FROM country
    JOIN city ON city.countrycode = country.code
    GROUP BY continent;