본문 바로가기
CODING TEST/SQL : HackerRank

[MYSQL] Japan Population

by 주 녕 2021. 5. 13.
반응형

▶  SQL  >  Aggregation > Japan Population 

 Problem 

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:

 My Answer 

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

 

 NOTE 

  • SUM(필드명) : 필드 값을 더할 때 사용하는 함수
  • COUNT(필드명) : NULL이 아닌 레코드의 수

COUNT(*)은 레코드의 개수를 나타내지만 SUM(*)은 오류

반응형

댓글