Milky's note

[HackerRank](E) Weather Observation Station 4 본문

SQL/SQL 코딩 테스트-HackerRank

[HackerRank](E) Weather Observation Station 4

밀뿌 2022. 3. 16. 14:44

https://www.hackerrank.com/challenges/weather-observation-station-4/problem?isFullScreen=true 

 

Weather Observation Station 4 | HackerRank

Find the number of duplicate CITY names in STATION.

www.hackerrank.com

 

[문제]

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;

 

풀면서도 이게 되네?? 싶었던 문제

오라클은 정말 ...

Comments