일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- SUM
- 데이터분석
- 전처리
- seaborn
- airflow.cfg
- 파이썬
- having
- 그로스해킹
- 머신러닝
- pandas
- GROUPBY
- matplotlib
- 데이터시각화
- 다중 JOIN
- 결측값
- PostgreSQL
- MySQL
- solvesql
- Limit
- Oracle
- join
- hackerrank
- SQL
- airflow 설치
- SQLite
- 데이터리안 웨비나
- 프로그래머스
- TRUNCATE
- not in
- Round
Archives
- Today
- Total
Milky's note
[HackerRank](E) Weather Observation Station 4 본문
https://www.hackerrank.com/challenges/weather-observation-station-4/problem?isFullScreen=true
[문제]
Find the difference between the total number of CITY entries in the table and the number of distinct CITY entries in the table.
The STATION table is described as follows:
where LAT_N is the northern latitude and LONG_W is the western longitude.
For example, if there are three records in the table with CITY values 'New York', 'New York', 'Bengalaru', there are 2 different city names: 'New York' and 'Bengalaru'. The query returns 1,
because total number of records - number of unique city names = 3 - 2 = 1
[답]
- oracle
select count(city)-count(distinct(city)) from station;
풀면서도 이게 되네?? 싶었던 문제
오라클은 정말 ...
'SQL > SQL 코딩 테스트-HackerRank' 카테고리의 다른 글
[HackerRank](E) Weather Observation Station 6 (0) | 2022.03.16 |
---|---|
[HackerRank](E) Weather Observation Station 5 (0) | 2022.03.16 |
[HackerRank](E) Weather Observation Station 3 (0) | 2022.03.16 |
[HackerRank](E) Weather Observation Station 1 (0) | 2022.03.16 |
[HackerRank](E) Japanese Cities' Names (0) | 2022.03.16 |
Comments