순간을 기록으로

[MySQL] Weather Observation Station 17 본문

Problem Solving

[MySQL] Weather Observation Station 17

luminous13 2022. 4. 6. 14:31

문제

 

- 서부 경도를 조회하세요

- 조건1: 북위가 38.7780보다 높은 데이터 중에

-조건2:가장 낮은 북위를 가지는 데이터의 

-조건3:반올림해서 소수점 4번째 자리까지 표현한다.

 

풀이

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