일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- GROUPBY
- SQLite
- SQL
- 전처리
- PostgreSQL
- matplotlib
- having
- MySQL
- 데이터리안 웨비나
- Oracle
- Limit
- 머신러닝
- not in
- 그로스해킹
- 데이터분석
- 프로그래머스
- 결측값
- Round
- pandas
- 다중 JOIN
- seaborn
- join
- hackerrank
- 데이터시각화
- SUM
- solvesql
- 파이썬
- airflow 설치
- TRUNCATE
- airflow.cfg
Archives
- Today
- Total
Milky's note
[HackerRank](E) Weather Observation Station 13 본문
https://www.hackerrank.com/challenges/weather-observation-station-13/problem?isFullScreen=true
[문제]
Query the sum of Northern Latitudes (LAT_N) from STATION having values greater than 38.7880 and less than 137.2345 . Truncate 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.
[답]
-mysql
select truncate(sum(lat_n),4) from station
where lat_n > 38.7880
and lat_n < 137.2345
해당 조건에 맞는 값들의 합을 출력하는데 반올림이 아니고 4자리까지 버림을 사용해야하므로 truncate를 사용해주었다.
'SQL > SQL 코딩 테스트-HackerRank' 카테고리의 다른 글
[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 2 (0) | 2022.03.25 |
[HackerRank](E) Top Earners (0) | 2022.03.25 |
[HackerRank](E) The Blunder (0) | 2022.03.25 |
Comments