I am using Decimal data type to store time like 1.30(1 hour 30 min),0.40(40 minutes) in MySQL. I
want to calculate total time. When I use SUM function it was giving result in unexpected way.
example: 1.30 + 0.30 = 1.60 -> SUM function gives like this.
But I want 2.00 as result.
Is any way to get result like this?
Thanks