I have a requirement to get time difference between two DateTime's in HH:MM format not decimal.
Eg:
DECLARE @D1 DATETIME = '2019-11-18 06:00:00', @D2 DATETIME = '2019-11-19 10:23:00'
I need Time Diff as 28:23 not with decimals. I found related article here but not forDATETIME format. Any suggestion