알고리즘/HackerRank
[HackerRank] Japan Population 오라클 풀이
mndev
2024. 1. 30. 15:19
문제링크
Japan Population | HackerRank
Query to the sum of the populations of all Japanese cities in CITY.
www.hackerrank.com
코드
select sum(population)
from city
where countrycode = 'JPN';