[HackerRank] Average population of each continent

데이터 분석/[SQL] 기초

[HackerRank] Average population of each continent

INCHELIN 2022. 3. 30. 13:41
728x90

MySQL

select country.continent, floor(avg(city.population))
from city
    join country on city.countrycode = country.code
    group by country.continent
728x90

'데이터 분석 > [SQL] 기초' 카테고리의 다른 글

[SQL] 데이터 삭제하기(drop/delete/truncate)  (0) 2023.07.04
[HackerRank] The Report  (0) 2022.03.31
표준 SQL 문법  (0) 2022.02.14
[SQL] 셀프 조인(Self Join)  (0) 2021.10.02
[SQL] 조회  (0) 2021.09.15