Notice
Recent Posts
Recent Comments
Link
forest_moon
[hackerrank, SQL] Weather Observation Station 4 본문
도시에 속한 전체 관측소 개수와 관측소가 있는 도시의 개수 차이
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 키워드 이후에 오는 칼럼에 대해 모두 중복 제거한다.
'알고리즘' 카테고리의 다른 글
[hackerrank, SQL] Weather Observation Station 6 (0) | 2022.12.30 |
---|---|
[hackerrank, SQL] Weather Observation Station 14 (0) | 2022.12.30 |
[hackerrank, SQL] Weather Observation Station 2 (0) | 2022.12.30 |
[hackerrank, SQL] Employee Salaries (0) | 2022.12.30 |
[hackerrank, SQL] Employee Names (0) | 2022.12.30 |