Average Population of Each Continent

  • + 0 comments

    SELECT CO.Continent, TRUNCATE(AVG(CI.POPULATION),0) FROM CITY AS CI INNER JOIN COUNTRY AS CO ON CI.CountryCode = CO.Code GROUP BY CO.Continent;