코드 공부

[오늘의 코드 126] [HackerRank] African Cities

eun_00 2024. 10. 19. 22:25
 
 

[문제]

  • Given the CITY and COUNTRY tables, query the names of all cities where the CONTINENT is 'Africa'.

    Note: CITY.CountryCode and COUNTRY.Code are matching key columns.

    Input Format

    The CITY and COUNTRY tables are described as follows:

 

[💡 정답]

SELECT CITY.NAME
FROM CITY
JOIN COUNTRY 
    ON CITY.COUNTRYCODE = COUNTRY.CODE
WHERE COUNTRY.CONTINENT = 'Africa';
 

 ✔️ 알게된 것