The STATION table is described as follows:
Query a list of CITY and STATE from the STATION table.
select CITY,STATE from STATION;
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.
select distinct CITY from STATION where mod(ID,2) = 0;
原文:https://www.cnblogs.com/wzs-python/p/11214943.html