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
|
1957 Discussions
|
Please Login in order to post a comment
HERE people are using DISTINCT but i've used UNIQUE it works just fine. or is there any difference between both?
Dont Forget to use Distinct City (SQL SERVER) while querying
SELECT DISTINCT CITY FROM STATION WHERE MOD(ID,2) = 0;
MySQL
Select Distinct City From Station Where ID%2 = 0;
SELECT DISTINCT CITY FROM STATION WHERE ID%2 = 0;