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
|
1431 Discussions
|
Please Login in order to post a comment
select count(*)-count(distinct(city)) from station
SELECT COUNT(CITY)-COUNT(DISTINCT(CITY)) FROM STATION;
Has anyone gotten this correct? Every answer that I have seen, I used and still getting an error.
select (count(city)-count(distinct(city))) from station;