Average Population of Each Continent

  • + 0 comments

    SELECT CN.Continent,floor(AVG(C.Population)) AS AVG_POPULATION FROM CITY C JOIN COUNTRY CN ON C.CountryCode = CN.Code group by Continent;