[HackerRank/SQL] 06. Easy - Weather Observation Station 3

jwKim·2023년 1월 7일
0

💻코테코테

목록 보기
18/42

< 과제 >

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.
The STATION table is described as follows:

< 내 코드 >

SELECT
    DISTINCT(city)
FROM
    station
WHERE
    MOD(id, 2)=0;

< 피드백 >

  • 처음에 MOD 함수를 쓸 때 '=0'을 까먹고 안썼다. 다른 문제도 빨리 풀고싶어서 문제를 대충 풀었기 때문이다. 쉬운 문제여도 제대로 풀기!

< 출처 >
https://www.hackerrank.com/domains/sql

0개의 댓글