본문 바로가기
SQL

[SQL] HackerRank - Population Census

by 다람이도토리 2021. 6. 4.

출처 : https://www.hackerrank.com/challenges/asian-population/problem

 

Population Census | HackerRank

Query the sum of the populations of all cities on the continent 'Asia'.

www.hackerrank.com

가장 기본적인 Join문 상황을 배우기.

city의 countrycode와 country의 code가 동일한것끼리 합쳐주는 join 사용하여 간단한 select문을 적용한다.

select 자체에서도 함수를 적용하여 값만 뽑아낼 수 있음을 잊지 말자.

SELECT SUM(CITY.POPULATION) FROM CITY
JOIN COUNTRY ON CITY.COUNTRYCODE = COUNTRY.CODE
WHERE COUNTRY.CONTINENT = 'ASIA'

'SQL' 카테고리의 다른 글

[DB] Key 정리  (0) 2021.08.18
[SQL] Having 절  (0) 2021.07.05
[SQL] HackerRank - Ollivander's Inventory  (0) 2021.06.08
[SQL] HackerRank - The Report  (0) 2021.06.08
[SQL] JOIN의 종류와 예시  (0) 2021.06.08