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

前端 未结 10 1433
小鲜肉
小鲜肉 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:10

    where
    year(date1) = year(date2)
    and month(date1) = month(date2)
    and day(date1) = day(date2)
    

提交回复
热议问题