순간을 기록으로

[MySQL] Weather Observation Station 15 | 본문

Problem Solving

[MySQL] Weather Observation Station 15 |

luminous13 2022. 4. 6. 14:15

문제

- 137.2345 미만인 북위 중 북위값이 최대값인 데이터의 서부 경도를 조회하세요

- 소수점 5번째 자리에서 반올림하세요

 

풀이

방법1

select round(long_W, 4)
from station
where lat_n < 137.2345
order by lat_n desc
limit 1;

 

방법2 서브쿼리를 이용한 방법

select round(long_w, 4)
from station
where lat_n = (select max(lat_n)
from station
where lat_n < 137.2345);
Comments