I am trying to add months to an existing date in SQL. The new column displayed will have a followup column instead of a days column. Im getting an error in the select statement.
This can be used to add months to a date in SQL:
select DATEADD(mm,1,getdate())
This might be a useful link.