Notice
Recent Posts
Recent Comments
Link
«   2024/11   »
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
Archives
Today
Total
관리 메뉴

forest_moon

[hackerrank, SQL] Weather Observation Station 4 본문

알고리즘

[hackerrank, SQL] Weather Observation Station 4

rokga 2022. 12. 30. 15:36

도시에 속한 전체 관측소 개수와 관측소가 있는 도시의 개수 차이

 

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 , because

 

SELECT
COUNT(city) - COUNT(DISTINCT(city))
FROM
station
;

 

*** DISTINCT

DISTINCT란 중복제거 키워드

 

DISTINCT 키워드 뒤에 2개 이상의 칼럼을 정의하면 

하나의 RECORD로 인식하여 DISTINCT 키워드 이후에 오는 칼럼에 대해 모두 중복 제거한다.