Weather Observation Station 3

Sort by

recency

|

1956 Discussions

|

  • + 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;

  • + 0 comments

    SELECT DISTINCT city FROM station WHERE MOD(ID, 2) = 0;