I need to add date field column to the current table.
I need to add Jan1 to Dec31 of 2018 to the column named date.
I tried with following query,
Insert into [dbo].[Calendar] ([Date])
Values
Getdate()
It throws syntax error near getdate().
Please help me with the query.