Average Population of Each Continent

  • + 0 comments

    SELECT CO.Continent, FLOOR(AVG(C.Population)) FROM Country CO JOIN City C ON C.CountryCode = CO.Code GROUP BY CO.Continent;