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 retruns 1, because Total number of records - number of unique city names = 3 - 2 = 1
SELECT
COUNT(CITY) - COUNT(DISTINCT CITY)
FROM
STATION
WHERE
LAT_N >0 AND LONG_W >0
'SQL > HackerRank' 카테고리의 다른 글
[MySQL/HackerRank] Weather Observation Station 6 (0) | 2024.08.11 |
---|---|
[MySQL/HackerRank] Weather Observation Station 5 (0) | 2024.08.11 |
[MySQL/HackerRank] Weather Observation Station 3 (0) | 2024.08.11 |
[MySQL/HackerRank] Weather Observation Station 1 (0) | 2024.08.11 |
[MySQL/HackerRank] Japanese Cities' Names (0) | 2024.08.11 |