I'm trying to create a calculated column to add 1 month to a date from another column.
CREATE TABLE [dbo].[test_table_date](
[date1] [datetime] NOT NULL,
[date2] AS ([date1]+(month ,1))
) ON [PRIMARY]
Please note that I am a complete novice to TSQL. Hope someone can help.
Cheers
Cory