순간을 기록으로

[MySQL] Revising Aggregations - The Sum Function 본문

Problem Solving

[MySQL] Revising Aggregations - The Sum Function

luminous13 2022. 4. 5. 19:17

문제

- 지역이 '캘리포니아'인 도시들의 총 인구 합을 조회하세요

풀이

select sum(population)
from city
where district = 'california';

 


출처: https://www.hackerrank.com/challenges/revising-aggregations-sum/problem?isFullScreen=true&h_r=next-challenge&h_v=zen 

 

 

'Problem Solving' 카테고리의 다른 글

[MySQL] Average Population  (0) 2022.04.05
[MySQL] Revising Aggregations - Averages  (0) 2022.04.05
[MySQL] Revising Aggregations |  (0) 2022.04.05
[MySQL] The PADS | CONCAT 함수  (0) 2022.03.30
[MySQL] Type of Triangle | CASE문(조건문)  (0) 2022.03.29
Comments