Anusha Murali

Logo

Please see github.com/anusha-murali for all of my repositories.

View GitHub Profile

6. Japanese Cities’ Names: Solution


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:

1

solution_image5

SELECT NAME
FROM CITY
WHERE COUNTRYCODE ='JPN';

Back to problems


anusha-murali.github.io