반응형
▶ SQL > Aggregation > Population Density Difference
Problem
Query the difference between the maximum and minimum populations in CITY.
→ 최대 POPULATION과 최소 POPULATION의 차이를 query 하라
Input Format
The CITY table is described as follows:
My Answer
SELECT MAX(POPULATION) - MIN(POPULATION)
FROM CITY
NOTE
- MAX(필드명) : 필드값 중 가장 큰 값
- MIN(필드명) : 필드값 중 가장 작은 값
문제에서 둘의 차이를 구하라고 했기 때문에 MAX 값에서 MIN 값을 빼주었다!
반응형
'CODING TEST > SQL : HackerRank' 카테고리의 다른 글
[MYSQL] Weather Observation Station 13 (0) | 2021.08.16 |
---|---|
[MYSQL] Weather Observation Station 2 (0) | 2021.08.09 |
[MYSQL] Top Earners (0) | 2021.05.26 |
[MYSQL] The Blunder (0) | 2021.05.18 |
[MYSQL] Japan Population (0) | 2021.05.13 |
[MySQL] Average Population (0) | 2021.04.21 |
[MySQL] Revising Aggregations - Averages (0) | 2021.04.20 |
[MySQL] Revising Aggregations - The Count Function (0) | 2021.04.20 |
댓글