[SQL] Weather Observation Station 4

정만·2025년 3월 10일

SQL

목록 보기
5/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 1, because total number of records - number of unique cirt names = 3 - 2 = 1.

정답

SELECT COUNT(CITY) - COUNT(DISTINCT CITY)
FROM STATION;
profile
멋있는 어른이 되고싶은 정만이의 벨로그

0개의 댓글