순간을 기록으로

[MySQL] Population Density Difference 본문

Problem Solving

[MySQL] Population Density Difference

luminous13 2022. 4. 5. 21:11

문제

- 도시의 최대 인구와 최소 인구의 차이를 조회하세요

 

풀이

select max(population) - min(population)
from city;

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

[MySQL] Weather Observation Station 2 | 반올림  (0) 2022.04.06
[MySQL] The Blunder  (0) 2022.04.05
[MySQL] Japan Population  (0) 2022.04.05
[MySQL] Average Population  (0) 2022.04.05
[MySQL] Revising Aggregations - Averages  (0) 2022.04.05
Comments