일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Heap
- backward
- 신경망
- DeepLearning
- PPMI
- boj
- 딥러닝
- stak
- Programmers
- hash
- Stack
- 파이썬
- CBOW
- algorithm
- MySQL
- Python
- Sigmoid
- Word2vec
- sort
- 자연어처리
- FullyConnectedLayer
- Numpy
- select
- SQL
- que
- kakao
- affine
- skip-gram
- dl
- 프로그래머스
Archives
- Today
- Total
혜온의 이것저것
[HackerRank] Weather Observation Station 17 (MySQL) 본문
문제
Query the Western Longitude (LONG_W)where the smallest Northern Latitude (LAT_N) in STATION is greater than 38.7780. Round your answer to 4 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 round(long_w,4)
from station
where lat_n>38.7780
order by lat_n
limit 1
'Data Analysis > SQL' 카테고리의 다른 글
[HackerRank] Weather Observation Station 19 (MySQL) (0) | 2022.08.22 |
---|---|
[HackerRank] Weather Observation Station 18 (MySQL) (0) | 2022.08.22 |
[HackerRank] Weather Observation Station 16 (MySQL) (0) | 2022.08.16 |
[HackerRank] Weather Observation Station 15 (MySQL) (0) | 2022.08.16 |
[HackerRank] Weather Observation Station 14 (MySQL) (0) | 2022.08.16 |
Comments