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'
'SQL > HackerRank' 카테고리의 다른 글
[MySQL/HackerRank] The Blunder (+ Ceil, Convert, Cast 함수) (0) | 2024.08.13 |
---|---|
[MySQL/HackerRank] Population Density Difference (0) | 2024.08.13 |
[MySQL/HackerRank] Average Population (0) | 2024.08.13 |
[MySQL/HackerRank] Revising Aggregations - Averages (0) | 2024.08.13 |
[MySQL/HackerRank] Revising Aggregations - The Sum Function (0) | 2024.08.13 |