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
|
1879 Discussions
|
Please Login in order to post a comment
SELECT DISTINCT City FROM Station WHERE MOD(Id,2) = 0 ORDER BY City;
SELECT DISTINCT CITY FROM STATION WHERE MOD(ID, 2) = 0;
SELECT DISTINCT CITY FROM STATION WHERE ID % 2 = 0;
SELECT DISTINCT CITY FROM STATION WHERE MOD(ID, 2) = 0;
Not able to get the correct query. tried all the suggested queries in the discussion. Can someone please help.