일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- JavaScript
- 코플릿
- Algorithms
- 알고리즘
- for문
- 블록체인
- select
- 최강의 인생
- 역행자
- 재귀함수
- join
- Programmers
- 정규표현식
- 자바스크립트
- Hackerrank
- array.push()
- Developer_JoyKim
- SQL
- 개발자_조이킴
- Where
- 개발자의 책장
- 프로그래머스
- array.slice()
- array
- node.js
- 코딩공부
- 코드스테이츠
- MySQL
- 코딩테스트
- 배열
Archives
- Today
- Total
CodingSpace
[HackerRank/SQL] Aggregation - Weather Observation Station 16 본문
Problem. Basic Select - Weather Observation Station 16
Link.
Weather Observation Station 16 | HackerRank
Query the smallest of STATION's Northern Latitudes that is greater than 38.7780, and round to 4 decimal places
www.hackerrank.com
Description.
Query the smallest Northern Latitude (LAT_N) from STATION that is greater than 38.7780.
Round your answer to 4 decimal places.
Key Point.
ROUND,
MIN,
My Answer.
SELECT
ROUND(MIN(LAT_N), 4)
FROM STATION
WHERE LAT_N > 38.7780;
References.
'HackerRank' 카테고리의 다른 글
[HackerRank/SQL] Alternative Queries - Draw The Triangle 1 (0) | 2022.07.21 |
---|---|
[HackerRank/SQL] Basic Select - Revising the Select Query 1 (0) | 2022.04.07 |
Comments