Hello All,
I\'ve had some confusion for quite some time with essentially flooring a DateTime SQL type using T-SQL. Essentially, I want to take a
How about this?
SELECT DATEADD(dd, DATEDIFF(dd,0,GETDATE()), 0)