Hello all, I have some records like this:
ID       Personel_Code        Time 
---      -------------       ------ 
1         0011                05:50
3         0011                20:12
4         0012                00:50
I want to have the sum of times for each person. in this example I want to have the result like this :
Personel_Code          Time
-------------          -----
 0011                  26:02
 0012                   00:50
Thank you.