What's a good way to check if two datetimes are on the same calendar day in TSQL?

前端 未结 10 1421
小鲜肉
小鲜肉 2021-02-12 02:15

Here is the issue I am having: I have a large query that needs to compare datetimes in the where clause to see if two dates are on the same day. My current solution, which suck

10条回答
  •  执念已碎
    2021-02-12 03:14

    this will remove time component from a date for you:

    select dateadd(d, datediff(d, 0, current_timestamp), 0)
    

提交回复
热议问题