Weather Observation Station 4

Sort by

recency

|

1450 Discussions

|

  • + 0 comments

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

  • + 0 comments

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

  • + 0 comments

    For MySQL

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

    THE ANSWER IS Select Count(*) - Count(Distinct City) From Station;

  • + 0 comments
    SELECT COUNT(CITY)-COUNT(DISTINCT CITY) FROM STATION