Weather Observation Station 4

Sort by

recency

|

1451 Discussions

|

  • + 0 comments

    SELECT (count(city) - count(distinct city)) AS CITY from station

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