Query all attributes of every Japanese city in the CITY table. The COUNTRYCODE for Japan is JPN.
The CITY table is described as follows:
COUNTRYCODE가 JPN인 경우의 모든 Field를 출력하는 문제로 해당 조건을 where문에서 작성하면 된다.
SELECT ID, NAME, COUNTRYCODE, DISTRICT, POPULATION
FROM CITY
WHERE COUNTRYCODE = 'JPN'