본문 바로가기

Algorithm/MySQL

[해커랭크(HackerRank)] Japan Population (MySQL)

문제

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'
  1. city 테이블에서 모든 일본 도시의 인구 합계를 출력하라
  2. 일본의 country code = 'JPN'

출처

반응형