I need to convert a string value containing time in HH:MM:SS format to timestamp and then add those timestamps grouped by ticketid. I have tried TIME functions but they are not helping much.
Current results:
TICKETID WORKTIMETRACKING
5141 02:55:00
5141 00:00:00
7856 01:12:55
7857 00:07:00
7857 00:01:00
Desired results:
TICKETID WORKTIMETRACKING
5141 02:55:00
7856 01:12:55
7857 00:08:00
In current results we have same ticketids with different worktimetraking but I need to extract results by summing the time(in timestampformat) as shown in desired results (ticket:7857 worktime adds up to 00:08:00)