[HackerRank|MySQL] Weather Observation Station 4

히끼·2020년 8월 21일
0

HackerRank

목록 보기
6/13

Weather Observation Station 4

Problem

Find the difference between the total number of CITY entries in the table and the number of distinct CITY entries in the table.

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
total number of records - number of unique city names = 3 - 2 = 1.

Solution

SELECT COUNT(CITY) - COUNT(DISTINCT CITY)
FROM STATION

0개의 댓글