DATEDIFF output between dates using TIME July 24, 2017 1:04 pm \ by John Perry Let’s create an example. DECLARE @cTimeStamp CHAR(25) SELECT @cTimeStamp = DATEADD(MINUTE, -1, GETDATE()) SELECT CONVERT(TIME, GETDATE() - @cTimeStamp) AS [Duration] Combines the output to Duration ——– 00:01:49.6930000 Posted in: Coding, SQL