Best approach to remove time part of datetime in SQL Server

前端 未结 23 1460
南旧
南旧 2020-11-21 22:51

Which method provides the best performance when removing the time portion from a datetime field in SQL Server?

a) select DATEADD(dd, DATEDIFF(dd, 0, getdate(         


        
23条回答
  •  有刺的猬
    2020-11-21 23:07

    Of-course this is an old thread but to make it complete.

    From SQL 2008 you can use DATE datatype so you can simply do:

    SELECT CONVERT(DATE,GETDATE())
    

提交回复
热议问题