i wrote the stored procedure like this
Declare @sum varchar(50)
Set @sum = (select SUM(ct.WorkingHours)
from ConsultantTimeSheet ct
where ConsultantID = @Consultantid
and ct.Status = @status
and ct.StartDate = @StartDate
and ct.EndDate = @Enddate
group by ConsultantID)
Now I got the sum like 33.90, but I have to display 34.30, how to convert like that format minutes exceed 60 add to hours.
Try this:
result: