Anusha Murali

Logo

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

View GitHub Profile

8. Japan Population: Solution


Query the sum of the populations for all Japanese cities in CITY. The COUNTRYCODE for Japan is “JPN”.

The CITY table is described as follows:

1

solution_image5

SELECT SUM(POPULATION)
FROM CITY
WHERE COUNTRYCODE = 'JPN';

Back to problems


anusha-murali.github.io