标签:ack weight any The title esc div select inpu
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;
标签:ack weight any The title esc div select inpu
原文地址:https://www.cnblogs.com/wzs-python/p/11214943.html