Algorithm/MySQL
[해커랭크(HackerRank)] Japanese Cities' Names (MySQL)
yujin.me
2021. 7. 4. 22:34
문제
Query the names of all the Japanese cities in the CITY table. The COUNTRYCODE for Japan is JPN.
The CITY table is described as follows:
코드
Select name
From City
Where countrycode = 'JPN'
- CITY 테이블에서 이본 도시의 이름을 모두 출력
출처
반응형