Algorithm/MySQL
[해커랭크(HackerRank)] Japanese Cities' Attributes (MySQL)
yujin.me
2021. 7. 4. 22:32
문제
Query all attributes of every Japanese city in the CITY table. The COUNTRYCODE for Japan is JPN.
The CITY table is described as follows:
코드
Select *
From City
Where countrycode = 'JPN'
- City 테이블의 모든 일본 도시의 모든 속성을 출력
- 일본의 COUNTRYCODE = 'JPN'
출처
반응형