Answers for "sql how to add months to a date"

SQL
3

how to add month in update sql

UPDATE users
SET date = DATEADD(MONTH, 1, date)
Posted by: Guest on December-17-2020
0

how to add month in update sql

UPDATE users
SET date = DATE_ADD(date, INTERVAL 1 month )
Posted by: Guest on December-17-2020
0

how to add month in update sql

UPDATE users
SET date = ADD_MONTHS(date, 1)
Posted by: Guest on December-17-2020

Code answers related to "sql how to add months to a date"

Code answers related to "SQL"

Browse Popular Code Answers by Language