Japan Population
AGGREGATION
Query the sum of the populations for all Japanese cities in CITY. The COUNTRYCODE for Japan is JPN.
Input Format
The CITY table is described as follows:
SELECT SUM(population)
FROM City
WHERE countrycode = 'JPN'
Last updated
Was this helpful?