Japanese Cities’ Attributes

Query all attributes of every Japanese city in the CITY table. The COUNTRYCODE for Japan is JPN.

The CITY table is described as follows:

Solution Implementation


select * from city 
where countrycode = 'JPN'
        
Copied!

Leave a Reply

Your email address will not be published. Required fields are marked *