Sum of hour and minutes in SQL Server 2008

2020-04-10 15:25发布

I have written one query,but it not giving correct answer.I want to display like this 5 Hour 58 minutes + 7 Hour 58 minutes=13 hour 56 minutes(answer should 13.56),but this below query giving 15.09 .

Please reply me with any other solution.(here Effort1 is 5 Hour column,Effort1Minutes is 58 minute column and same Effort2 is 7 Hour column,Effort2Minutes is 58 minute column .

 select CAST((SUM(Effort1)*60+SUM(Effort1Minutes))/60 as float) +  
       (CAST((SUM(Effort1)*60+SUM(Effort1Minutes))% 60 as float)) / 100 +   
        CAST((SUM(Effort2)*60+SUM(Effort2Minutes))/60 as float) +  
       (CAST((SUM(Effort2)*60+SUM(Effort2Minutes))% 60 as float)) / 100               
 from TimesheetDetails

1条回答
Explosion°爆炸
2楼-- · 2020-04-10 15:31

please tried below query

    select CONVERT(decimal(18,2),SUM(Effort1 + Effort2)) + 
    SUM(Effort1Minutes + Effort2Minutes) / 60 + 
    CONVERT(decimal(18,2), (SUM(Effort1Minutes + Effort2Minutes) % 60) / 100.00)
from TimesheetDetails

I had tested with this query with SQL server 2008 as well as with SQL Fiddle

查看更多
登录 后发表回答