Weather Observation Station 3

Sort by

recency

|

1957 Discussions

|

  • + 0 comments

    HERE people are using DISTINCT but i've used UNIQUE it works just fine. or is there any difference between both?

  • + 0 comments

    Dont Forget to use Distinct City (SQL SERVER) while querying

  • + 0 comments

    SELECT DISTINCT CITY FROM STATION WHERE MOD(ID,2) = 0;

  • + 1 comment

    MySQL

    Select Distinct City From Station Where ID%2 = 0;

  • + 0 comments

    SELECT DISTINCT CITY FROM STATION WHERE ID%2 = 0;