We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
Weather Observation Station 3
Weather Observation Station 3
Sort by
recency
|
1898 Discussions
|
Please Login in order to post a comment
and for the mysql users select disctinct CITY from STATION where MOD (id,2) = 0;
select distinct city from station where id%2=0
select distinct city from station where id % 2=0;
SELECT CITY FROM STATION WHERE ID%2=0 GROUP BY CITY;
select distinct(city) from station where id%2=0;