Query all attributes of every Japanese city in the CITY table. The COUNTRYCODE for Japan is JPN
.
The CITY table is described as follows:
Answer :
SQL
select * from CITY where COUNTRYCODE='JPN';
Query all attributes of every Japanese city in the CITY table. The COUNTRYCODE for Japan is JPN
.
The CITY table is described as follows:
Answer :
select * from CITY where COUNTRYCODE='JPN';