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) != 1;
MOD(ID, 2) != 1 : ID를 2로 나눈 나머지가 0인 것. 즉, 짝수DISTINCT(CITY) : 중복을 제거