SQL/Hacker Rank
[EASY] Japanese Cities' Attributes
소금깨
2022. 10. 13. 21:13
Japanese Cities' Attributes | HackerRank
Query the attributes of all the cities in Japan.
www.hackerrank.com
문제 조건
Query all attributes of every Japanese city in the CITY table. The COUNTRYCODE for Japan is JPN.
정답 쿼리
select *
from city
where countrycode = 'JPN'