t-sql add month to date code example
Example 1: sql add months to date
//Returns Date time
//Takes where to add (as in year, month, day, etc) to
//Takes how much to add
//Takes a datetime in some different formats
DATEADD(month, 1, '2017/08/25')
Example 2: how to add month in update sql
UPDATE users
SET date = ADD_MONTHS(date, 1)