< 과제 >
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;
< 피드백 >