순간을 기록으로

[MySQL] Weather Observation Station 16 본문

Problem Solving

[MySQL] Weather Observation Station 16

luminous13 2022. 4. 6. 14:23

문제

- 북위가 38.7780을 초과하는 데이터 중 가장 작은 북위값을 조회하세요

- 소수점 5번째 자리에서 반올림합니다.

 

풀이

select round(lat_n, 4)
from station
where lat_n = (select min(lat_n)
              from station
              where lat_n > 38.7780);

 

Comments