Average Population of Each Continent

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