순간을 기록으로

[MySQL] African Cities | Join 본문

Problem Solving

[MySQL] African Cities | Join

luminous13 2022. 4. 6. 14:50

문제

 

- 모든 시티의 이름들을 조회하세요

-조건1: continent is 'africa'

-조건2: city.countrycode = country.code 

 

풀이

select CITY.name
from CITY 
join COUNTRY 
on CITY.countryCode = COUNTRY.code
where COUNTRY.continent = 'Africa';

 

Comments