Average Population of Each Continent

  • + 0 comments
    SELECT CO.Continent, FLOOR(AVG(C.Population))
    FROM CITY C
    JOIN COUNTRY CO
        ON C.CountryCode = CO.Code
    GROUP BY CO.Continent;