SESSION NAME: Advance Select - 2

QUESTION NAME: Weather Observation - Even Numbers TABLE DESCRIPTION: Query a list of CITY names from STATION with even ID
numbers only. You may print the results in any order, but must
exclude duplicates from your answer.

CODE:  select distinct CITY from STATION where ID % 2 = 0;