[HackerRank] Weather Observation Station 17

주연·2023년 4월 3일
0

SQL 문제 풀이

목록 보기
18/28
post-thumbnail

문제

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

Query the Western Longitude (LONG_W)where the smallest Northern Latitude (LAT_N) in STATION is greater than . Round your answer to decimal places.

답변

SELECT ROUND(LONG_W,4)
FROM STATION
WHERE LAT_N > 38.7780
ORDER BY LAT_N
LIMIT 1
profile
공부 기록

0개의 댓글