Subtract one day from datetime

后端 未结 9 1841
你的背包
你的背包 2020-12-08 08:55

I have a query to fetch date diff between 2 datetime as :

SELECT DATEDIFF(DAY, @CreatedDate , GETDATE())

Ex :

SELECT DATEDIFF(DAY, \'2013-03-13 00:00:00.00         


        
9条回答
  •  情话喂你
    2020-12-08 09:41

    I am not certain about what precisely you are trying to do, but I think this SQL function will help you:

    SELECT DATEADD(day,-1,'2013-04-01 16:25:00.250')
    

    The above will give you 2013-03-31 16:25:00.250.

    It takes you back exactly one day and works on any standard date-time or date format.

    Try running this command and see if it gives you what you are looking for:

    SELECT DATEADD(day,-1,@CreatedDate)
    

提交回复
热议问题