728x90
728x90
Problem
1. The sum of all values in LAT_N rounded to a scale of 2 decimal places.
->LAT_N의 모든 값의 합은 소수점 2자리 척도로 반올림하시오.
2. The sum of all values in LONG_W rounded to a scale of 2 decimal places.
->LONG_W의 모든 값의 합은 소수점 2자리 척도로 반올림하시오.
Answer
select round(sum(lat_n),2) as "lat", round(sum(long_w),2) as "lon"
from station
* round (반올림 함수)
728x90
728x90
'Language > SQL' 카테고리의 다른 글
[HackerRank][SQL] Weather Observation Station 4 - 컴도리돌이 (0) | 2022.05.18 |
---|---|
[HackerRank][SQL] Weather Observation Station 3 - 컴도리돌이 (0) | 2022.05.18 |
[HackerRank][SQL] Weather Observation Station 1 - 컴도리돌이 (0) | 2022.05.18 |
[프로그래머스][SQL][SET] 입양 시각 구하기(2) - 컴도리돌이 (0) | 2021.08.21 |
[프로그래머스][SQL][GROUP BY] 고양이와 개는 몇마리 있을까 - 컴도리돌이 (0) | 2021.08.20 |