Query the names of all the Japanese cities in the CITY table. The COUNTRYCODE for Japan is JPN
.
The CITY table is described as follows:
Answer :
SQL
select NAME from CITY where COUNTRYCODE='JPN';
Query the names of all the Japanese cities in the CITY table. The COUNTRYCODE for Japan is JPN
.
The CITY table is described as follows:
Answer :
select NAME from CITY where COUNTRYCODE='JPN';