Average Population of Each Continent

  • + 0 comments
    SELECT co.Continent, FLOOR(AVG(ci.population)) 
    FROM city as ci join country as co on 
    ci.countryCode = co.code GROUP BY co.Continent