You can use the fact that Sql Server will implicitly convert these values to the datetime values. (assmuming that "8:30" means 8 hrs and 30 minutes.)So this: select sum(datediff(minute, 0, [Num of hrs worked])) from <yourTable>
will return 1530 as an integer which is the total number of minutes. How do you want the value displayed? like "25:30" ? If so you will have to do something like this:select convert(varchar(3), sum(datediff(minute, 0, [Num of hrs worked])) / 60) + ':' + convert(varchar(2), sum(datediff(minute, 0, [Num of hrs worked])) % 60)from <yourTable>
Be One with the OptimizerTG