I have this table:
I want to workout how many bus journeys per hour are operated by Bond Brothers and the expected results is 7 per hour
My questions is how do I add up values that contain strings?
SELECT Operator, SUM(Frequency) AS “Total Frequency”
FROM Bus Routes
I don't think this would work would it?
Thanks