We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
Weather Observation Station 4
Weather Observation Station 4
Sort by
recency
|
1450 Discussions
|
Please Login in order to post a comment
SELECT COUNT(CITY) - COUNT(DISTINCT CITY) FROM STATION;
SELECT COUNT(CITY) - COUNT(DISTINCT CITY) AS difference FROM STATION;
For MySQL
THE ANSWER IS Select Count(*) - Count(Distinct City) From Station;