일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- SUM
- seaborn
- Limit
- hackerrank
- mysql :=
- pandas
- TRUNCATE
- 프로그래머스
- MySQL
- 다중 JOIN
- Round
- 데이터리안 웨비나
- matplotlib
- having
- airflow 설치
- 파이썬
- 데이터분석
- not in
- GROUPBY
- SQL
- 데이터시각화
- PostgreSQL
- SQLite
- 그로스해킹
- Oracle
- 결측값
- solvesql
- join
- 전처리
- 머신러닝
Archives
- Today
- Total
Milky's note
[HackerRank](E) Weather Observation Station 16 본문
https://www.hackerrank.com/challenges/weather-observation-station-16/problem?isFullScreen=true
[문제]
Query the smallest Northern Latitude (LAT_N) from STATION that is greater than 38.7780. Round 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.
[답]
- mysql
select round(min(lat_n),4) from station
where lat_n > 38.7780
'SQL > SQL 코딩 테스트-HackerRank' 카테고리의 다른 글
[HackerRank](E) Population Census (0) | 2022.03.25 |
---|---|
[HackerRank](E) Weather Observation Station 17 (0) | 2022.03.25 |
[HackerRank](E) Weather Observation Station 15 (0) | 2022.03.25 |
[HackerRank](E) Weather Observation Station 14 (0) | 2022.03.25 |
[HackerRank](E) Weather Observation Station 13 (0) | 2022.03.25 |
Comments