728x90
728x90
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
'Language > SQL' 카테고리의 다른 글
[HackerRank][SQL] Weather Observation Station 5 - 컴도리돌이 (0) | 2022.05.18 |
---|---|
[HackerRank][SQL] Weather Observation Station 4 - 컴도리돌이 (0) | 2022.05.18 |
[HackerRank][SQL] Weather Observation Station 2 - 컴도리돌이 (0) | 2022.05.18 |
[HackerRank][SQL] Weather Observation Station 1 - 컴도리돌이 (0) | 2022.05.18 |
[프로그래머스][SQL][SET] 입양 시각 구하기(2) - 컴도리돌이 (0) | 2021.08.21 |