순간을 기록으로

[MySQL] Population Census | Join 본문

Problem Solving

[MySQL] Population Census | Join

luminous13 2022. 4. 6. 14:43

문제

 

- city.countrycode와 country.code가 일치하는 것들 중에서

- continent가 'asia'인 도시들의

- 모든 인구의 합을 구해라

 

풀이

select sum(A.population)
from city A
join country B
on A.CountryCode = B.Code
where B.continent = 'asia';

 

Comments