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
+ 2 comments SELECT DISTINCT(city) FROM station WHERE id%2=0;
+ 1 comment SELECT DISTINCT CITY FROM STATION WHERE mod(ID,2) = 0;
+ 1 comment hello
SELECT distinct CITY FROM STATION WHERE ID % 2 = 0; the above one is correct or wrong
+ 1 comment SELECT DISTINCT CITY FROM STATION WHERE (ID / 2) * 2 = ID;
without using modulas function
+ 0 comments SELECT DISTINCT city FROM STATION WHERE id % 2 = 0;
Load more conversations
Sort 1623 Discussions, By:
Please Login in order to post a comment