일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- CBOW
- Sigmoid
- FullyConnectedLayer
- Word2vec
- 딥러닝
- Python
- algorithm
- select
- affine
- Heap
- Numpy
- dl
- skip-gram
- 프로그래머스
- kakao
- 자연어처리
- que
- 파이썬
- Stack
- backward
- 신경망
- hash
- SQL
- MySQL
- Programmers
- sort
- stak
- PPMI
- boj
- DeepLearning
Archives
- Today
- Total
혜온의 이것저것
[HackerRank] Weather Observation Station 14 (MySQL) 본문
https://www.hackerrank.com/challenges/weather-observation-station-14/problem?isFullScreen=true
문제
Query the greatest value of the Northern Latitudes (LAT_N) from STATION that is less than 137.2345. Truncate your answer to decimal places.
Input Format
The STATION table is described as follows:
where LAT_N is the northern latitude and LONG_W is the western longitude.
풀이
select truncate(max(lat_n),4)
from station
where lat_n <137.2345
'Data Analysis > SQL' 카테고리의 다른 글
[HackerRank] Weather Observation Station 16 (MySQL) (0) | 2022.08.16 |
---|---|
[HackerRank] Weather Observation Station 15 (MySQL) (0) | 2022.08.16 |
[HackerRank] Weather Observation Station 13 (MySQL) (0) | 2022.08.15 |
[HackerRank] Weather Observation Station 2 (MySQL) (0) | 2022.08.15 |
[HackerRank] Top Earners (MySQL) (0) | 2022.08.15 |
Comments