Weather Observation Station 4

Sort by

recency

|

1350 Discussions

|

  • + 0 comments

    FOR DB2 select (count (city)- count (distinct city)) from station;

  • + 1 comment

    Why we are using - symbol? can anyone explain please

  • + 0 comments

    For MySQL

    SELECT COUNT(city) - COUNT(DISTINCT city) FROM station;
    
  • [deleted]
    + 0 comments

    For MySQL

    SELECT COUNT(city) - COUNT(DISTINCT city) FROM station;
    
  • + 0 comments

    SELECT COUNT(CITY)-COUNT(DISTINCT CITY) FROM STATION;