I have a query
SELECT CONVERT(VARCHAR(8), DATEADD(SS, DATEDIFF(SS, '2017/08/24 06:00', '2017/08/25 07:15'), 0), 114)
which gives output as 01:15:00, where the date is not considered. My expected output is 25:15:00 because the difference of the day is 1. I tried with replacing SS with HH but did not get the desired help.