본문 바로가기

Language/SQL

[HackerRank][SQL] Weather Observation Station 3 - 컴도리돌이

728x90
728x90
 

Weather Observation Station 3 | HackerRank

Query a list of unique CITY names with even ID numbers.

www.hackerrank.com


Problem

Query a list of CITY names from STATION for cities that have an even ID number. Print the results in any order, but exclude duplicates from the answer.

-> 짝수 ID 번호를 가진  city 이름을 station에서 query 하시오. 결과를 임의의 순서로 출력하지만 중복은 답변에서 제외하시오.


Answer

select distinct(city)
from station
where id % 2 = 0

*distinct (중복 제외)

728x90
728x90