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
+ 0 comments SELECT DISTINCT CITY FROM STATION WHERE MOD(ID, 2)= 0;
For Oracle
For Confirmation that result is Correct, we can check the ID's , that these are EVEN.
SELECT DISTINCT ID FROM STATION WHERE MOD(ID, 2)= 0;
+ 0 comments Solution in video https://www.youtube.com/watch?v=Dyud5fwMUX0
+ 0 comments Select DISTINCT CITY from STATION where ID%2=0
+ 0 comments SELECT DISTINCT CITY FROM STATION WHERE MOD(ID, 2) = 0;
+ 0 comments for my sql where id % 2=0; for oracle mod(id,2) =0;
Load more conversations
Sort 1503 Discussions, By:
Please Login in order to post a comment