AGGREGATION
Last updated 1 year ago
Question Link
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'