How can I use a SQL UPDATE statement to add 1 year to a DATETIME column?

前端 未结 6 1779
难免孤独
难免孤独 2020-12-05 23:27

I want to add 1 year to a datetime-type column in every single row in a table. Adding using an UPDATE statement is easy for numeric types. ex:

UPDATE TABLE S         


        
6条回答
  •  既然无缘
    2020-12-06 00:08

    It could be done with a DATEADD() function like this:

    UPDATE Procrastination SET DropDeadDueDate = DATEADD(yy, 1, DropDeadDueDate)
    

提交回复
热议问题