Weather Observation Station 3

Sort by

recency

|

1898 Discussions

|

  • + 0 comments

    and for the mysql users select disctinct CITY from STATION where MOD (id,2) = 0;

  • + 0 comments

    select distinct city from station where id%2=0

  • + 0 comments

    select distinct city from station where id % 2=0;

  • + 0 comments

    SELECT CITY FROM STATION WHERE ID%2=0 GROUP BY CITY;

  • + 0 comments

    select distinct(city) from station where id%2=0;