Using SQLSERVER 2000
How to make a total of intime value
Table 1
InTime
02:00:48 22:00:22 .....,
Intime Datatype is varchar
02:00:12 - (HH:MM:SS)
Before I tried in access 2003
select format( Int(24*sum(Intime)), '0') & format( sum(Intime) , ':ss' ) AS totaltime from table1
Above Query is working perfectly in Access 2003
How to make a total of Intime in sql?
Expected Output
Intime
24:01:00
So on...,
Need Query help