Difference of two date time in sql server

后端 未结 20 2032
心在旅途
心在旅途 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:40

    select
    datediff(millisecond,'2010-01-22 15:29:55.090','2010-01-22 15:30:09.153') / 1000.0 as Secs
    
    result:
    Secs
    14.063
    

    Just thought I'd mention it.

提交回复
热议问题