320x100
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';
320x100
320x100