| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
Tags
- 재귀함수
- node.js
- Developer_JoyKim
- Programmers
- Algorithms
- Where
- join
- 코딩공부
- array
- 개발자_조이킴
- 코드스테이츠
- JavaScript
- 알고리즘
- 최강의 인생
- Hackerrank
- 프로그래머스
- select
- 코딩테스트
- 자바스크립트
- 역행자
- 배열
- MySQL
- SQL
- 정규표현식
- for문
- array.slice()
- 블록체인
- 코플릿
- 개발자의 책장
- array.push()
Archives
- Today
- Total
CodingSpace
[HackerRank/SQL] Aggregation - Weather Observation Station 15 본문
HackerRank/SQL
[HackerRank/SQL] Aggregation - Weather Observation Station 15
개발자_조이킴 2022. 8. 1. 23:36Problem. Basic Select - Weather Observation Station 15
Link.
https://www.hackerrank.com/challenges/weather-observation-station-15/problem?isFullScreen=true
Weather Observation Station 15 | HackerRank
Query the Western Longitude for the largest Northern Latitude under 137.2345, rounded to 4 decimal places.
www.hackerrank.com
Description.
Query the Western Longitude (LONG_W) for the largest Northern Latitude (LAT_N) in STATION that is less than 137.2345.
Round your answer to 4 decimal places.

Key Point.
ROUND,
MAX,
My Answer.
SELECT
ROUND(LONG_W, 4)
FROM STATION
WHERE LAT_N = (SELECT MAX(LAT_N) FROM STATION WHERE LAT_N < 137.2345);
References.
'HackerRank > SQL' 카테고리의 다른 글
| [HackerRank/SQL] Aggregation - Weather Observation Station 18 (0) | 2022.08.02 |
|---|---|
| [HackerRank/SQL] Aggregation - Weather Observation Station 17 (0) | 2022.08.02 |
| [HackerRank/SQL] Aggregation - Weather Observation Station 14 (0) | 2022.08.01 |
| [HackerRank/SQL] Aggregation - Weather Observation Station 13 (0) | 2022.07.31 |
| [HackerRank/SQL] Advanced Select - Binary Tree Nodes (0) | 2022.07.24 |
Comments