Discussion about this post

User's avatar
Muhammad Hussnain's avatar

SELECT COUNT([Departure Station]) as Total_Number_Of_Departure_Stations

FROM railway

SELECT COUNT(DISTINCT[Departure Station]) as Total_Different_Number_Of_Departure_Stations

FROM railway

SELECT COUNT([Departure Station]) - COUNT(DISTINCT[Departure Station]) as Total_Difference_Of_Departure_Stations

FROM railway

Today's Query Solution

Expand full comment
1 more comment...

No posts