본문 바로가기

Language/SQL

[HackerRank][SQL] Weather Observation Station 13 - 컴도리돌이

728x90
 

Weather Observation Station 13 | HackerRank

Query the sum of Northern Latitudes having values greater than 38.7880 and less than 137.2345, truncated to 4 decimal places.

www.hackerrank.com


Problem

Query the sum of Northern Latitudes (LAT_N) from STATION having values greater than  38.7880 and less than 137.2345 . Truncate your answer to 4 decimal places.

-> 38.7880보다 크고 137.2345보다 작은 값을 가진 STATION에서 북위도(LAT_N)의 합을 구하고, 답을 소수점 이하 네 자리에서 내림하시오.

 


Answer

select truncate(sum(lat_n),4)
from station
where 38.7880 < lat_n and lat_n < 137.2345

 

* truncate (소수점 내림 함수)