HackerRank-Average Population of Each Continent

MaheswaraReddy
Jan 25, 2023

--

Given the CITY and COUNTRY tables, query the names of all the continents (COUNTRY.Continent) and their respective average city populations (CITY.Population) rounded down to the nearest integer.

Note: CITY.CountryCode and COUNTRY.Code are matching key columns.

Input Format

The CITY and COUNTRY tables are described as follows:

Solution

SELECT CUN.CONTINENT, FLOOR(AVG(C.POPULATION))
FROM CITY AS C
JOIN COUNTRY AS CUN ON C.COUNTRYCODE = CUN.CODE\
GROUP BY CUN.CONTINENT

--

--

Responses (1)