How to compare two dates to find time difference in SQL Server 2005, date manipulation

后端 未结 11 1818
天命终不由人
天命终不由人 2020-11-27 14:55

I have two columns:

job_start                         job_end
2011-11-02 12:20:37.247           2011-11-02 13:35:14.613

How would it be po

11条回答
  •  迷失自我
    2020-11-27 15:26

    Declare the Start and End date DECLARE @SDATE AS DATETIME

    TART_DATE  AS DATETIME
    DECLARE @END_-- Set Start and End date
    SET @START_DATE = GETDATE()
    SET @END_DATE    = DATEADD(SECOND, 3910, GETDATE())
    

    -- Get the Result in HH:MI:SS:MMM(24H) format SELECT CONVERT(VARCHAR(12), DATEADD(MS, DATEDIFF(MS, @START_DATE, @END_DATE), 0), 114) AS TimeDiff

提交回复
热议问题