728x90
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 (소수점 내림 함수)
'Language > SQL' 카테고리의 다른 글
[HackerRank][SQL] Weather Observation Station 15 - 컴도리돌이 (0) | 2022.05.22 |
---|---|
[HackerRank][SQL] Weather Observation Station 14 - 컴도리돌이 (0) | 2022.05.21 |
[HackerRank][SQL][JOIN] Basic Join, Challenges - 컴도리돌이 (0) | 2022.05.19 |
[HackerRank][SQL][JOIN] Basic Join, Population Census - 컴도리돌이 (0) | 2022.05.19 |
[HackerRank][SQL][JOIN] Basic Join, Ollivander's Inventory - 컴도리돌이 (0) | 2022.05.19 |