< 과제 >
Query all attributes of every Japanese city in the CITY table. The COUNTRYCODE for Japan is JPN. The CITY table is described as follows:
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 name FROM city WHERE countrycode = 'JPN';
< 출처 > https://www.hackerrank.com/domains/sql