일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Hackerrank
- join
- 블록체인
- 코딩공부
- Algorithms
- Where
- 개발자의 책장
- 코드스테이츠
- 코딩테스트
- Developer_JoyKim
- 배열
- 코플릿
- JavaScript
- 정규표현식
- array.push()
- MySQL
- 개발자_조이킴
- node.js
- 자바스크립트
- Programmers
- for문
- SQL
- array.slice()
- 프로그래머스
- array
- 알고리즘
- 재귀함수
- 최강의 인생
- select
- 역행자
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