Difference of two date time in sql server

后端 未结 20 2042
心在旅途
心在旅途 2020-12-01 03:53

Is there any way to take the difference between two datetime in sql server?

For example, my dates are

  1. 2010-01-22 15:29:55.090
20条回答
  •  温柔的废话
    2020-12-01 04:53

    SELECT DATEDIFF (MyUnits, '2010-01-22 15:29:55.090', '2010-01-22 15:30:09.153')
    

    Substitute "MyUnits" based on DATEDIFF on MSDN

提交回复
热议问题