/////
Search
Duplicate

Weather Observation Station 3

태그
Select
한 번 더 체크

문제

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:
where LAT_N is the northern latitude and LONG_W is the western longitude.

정답

SELECT DISTINCT CITY FROM STATION WHERE ID%2=0;
SQL
복사

풀이

나머지를 구하는 방법을 묻는 문제이다.
짝수라면 2로 나누었을 때 나머지가 0, 홀수라면 2로 나누었을 때 나머지가 1이 나온다.
나머지를 구하는 사칙연산 기호는 %이다.
따라서 ID가 짝수임을 확인하는 식은
WHERE ID%2=0
SQL
복사