SQL 문제풀이/해커랭크
[해커랭크 / Easy] Weather Observation Station 2 (MySQL)
지나가던 개발자
2021. 12. 14. 03:17
반응형
https://www.hackerrank.com/challenges/weather-observation-station-2/problem?isFullScreen=true
Weather Observation Station 2 | HackerRank
Write a query to print the sum of LAT_N and the sum of LONG_W separated by space, rounded to 2 decimal places.
www.hackerrank.com
STATION 테이블의 LAT_N의 값을 모두 더한값을 소수 둘째자리까지 출력하고, LONG_W의 값을 모두 더한값을 소수 둘째자리까지 출력하는 문제입니다.
아래는 코드입니다.
반응형