[HackerRank] Average Population of Each Continent

joon_1592·2022년 4월 27일
0

SQL

목록 보기
8/11

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:

CITYCOUNTRY를 조인 -> 대륙별로 GROUP BY -> FLOOR로 평균 인구수 내림

select country.continent, floor(avg(city.population))
from city inner join country
on city.countrycode = country.code
group by country.continent
profile
공부용 벨로그

0개의 댓글