Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 자바
- 구간합구하기
- Array.asList
- java
- vm인스턴스생성
- 인텔리제이
- Spring MVC 구성요소
- 재귀함수
- Spring Web MVC
- 재귀와반복문
- 스택
- 백준 11659
- 알고리즘
- List.of
- 싱글톤패턴
- OOP
- 투포인터알고리즘
- String.valueOf()
- 버블정렬
- MySQL
- 11659
- 성능테스트툴
- 프로그래머스
- 클라우드에서 도커 실행하기
- 코딩테스트
- GCP
- 코드스테이츠 백엔드
- 코드스테이츠
- 백준
- Spring MVC 동작원리
Archives
- Today
- Total
순간을 기록으로
[MySQL] Weather Observation Station 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);
'Problem Solving' 카테고리의 다른 글
[MySQL] Weather Observation Station 17 (0) | 2022.04.06 |
---|---|
[MySQL] Weather Observation Station 16 (0) | 2022.04.06 |
[MySQL] Weather Observation Station 14 | 최댓값 찾기 (0) | 2022.04.06 |
[MySQL] Weather Observation Station 13 | TRUNCATE() (0) | 2022.04.06 |
[MySQL] Weather Observation Station 2 | 반올림 (0) | 2022.04.06 |
Comments