[HackerRank] Weather Observation Station 20

당당·2023년 7월 17일
0

HackerRank

목록 보기
12/27

https://www.hackerrank.com/challenges/weather-observation-station-20/problem

📔문제

A median is defined as a number separating the higher half of a data set from the lower half. Query the median of the Northern Latitudes (LAT_N) from STATION and round your answer to decimal places.

The STATION table is described as follows:

where LAT_N is the northern latitude and LONG_W is the western longitude.


🧮분야

  • AGGREGATION

📃SQL 코드

select round(median(lat_n),4)
from station;

📰출력 결과


📂고찰

중간값을 구하는 문제였다.
오라클에선 median()함수를 이용해 중간값을 찾을 수 있다.

profile
MySQL DBA 신입

1개의 댓글

comment-user-thumbnail
2023년 7월 17일

저도 개발자인데 같이 교류 많이 해봐요 ㅎㅎ! 서로 화이팅합시다!

답글 달기