[SQL] Japan Population


✅ Japan Population


📝 質問する


Query the sum of the populations for all Japanese cities in CITY . The COUNTRYCODE for Japan is JPN .Input FormatThe CITY table is described as follows:

💻 に答える

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