일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- que
- kakao
- DeepLearning
- Python
- 프로그래머스
- sort
- boj
- Sigmoid
- Word2vec
- 딥러닝
- Programmers
- 자연어처리
- SQL
- PPMI
- CBOW
- MySQL
- backward
- Numpy
- 파이썬
- 신경망
- affine
- skip-gram
- algorithm
- dl
- select
- hash
- FullyConnectedLayer
- stak
- Stack
- Heap
Archives
- Today
- Total
혜온의 이것저것
[HackerRank] Weather Observation Station 4 (MySQL) 본문
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 or records - number of unique city names = 3 - 2- 1.
풀이
select count(city) - count(distinct city)
from station
'Data Analysis > SQL' 카테고리의 다른 글
[HackerRank] Weather Observation Station 6 (MySQL) (0) | 2022.08.08 |
---|---|
[HackerRank] Weather Observation Station 5 (MySQL) (0) | 2022.08.08 |
[HackerRank] Weather Observation Station 3 (MySQL) (0) | 2022.08.03 |
[HackerRank] Weather Observation Station 1 (MySQL) (0) | 2022.08.03 |
[HackerRank] Japanese Cities' Names (MySQL) (0) | 2022.08.03 |
Comments