관리 메뉴

오늘도 배운다

Weather Observation Station 14 / HackerRank, SQL, MySQL 본문

코딩테스트연습(SQL)

Weather Observation Station 14 / HackerRank, SQL, MySQL

LearnerToRunner 2022. 12. 22. 18:30

문제

Query the greatest value of the Northern Latitudes (LAT_N) from STATION that is less than 137.2345
. Truncate your answer to 4 decimal places.

 

제출답안(MySQL)

SELECT ROUND(MAX(lat_n),4)
FROM station
WHERE lat_n <137.2345

 

문제 바로가기(MySQL) 

 

 

728x90
Comments