관리 메뉴

오늘도 배운다

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

코딩테스트연습(SQL)

Weather Observation Station 16 / HackerRank, SQL, MySQL

LearnerToRunner 2022. 12. 25. 14:33

문제

Query the smallest Northern Latitude (LAT_N) from STATION that is greater than 38.7780. Round your answer to 4 decimal places.

 

제출답안(MySQL)

SELECT ROUND(MIN(lat_n), 4)
FROM station
WHERE lat_n > 38.7780

 

 

문제 바로가기(MySQL) 

 

728x90
Comments