Im between cherry

Hackerrank | MySQL | Japan Population 본문

데이터분석/practice_query

Hackerrank | MySQL | Japan Population

meal 2020. 8. 28. 09:36

Japan Population

Problem

 

Japan Population | HackerRank

Query to the sum of the populations of all Japanese cities in CITY.

www.hackerrank.com

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

 

 

SELECT SUM(population)
FROM CITY
WHERE countrycode = 'JPN'
Comments