I have a table
CREATE TABLE [dbo].[Stamp_Merchandise](
[merch_id] [float] NULL,
[merch_desc] [nvarchar](255) NULL,
) ON [PRIMARY]
Im trying to alter the column merch_id by adding identity(1,1) but i keep getting error:
alter table Stamp_Merchandise
alter column merch_id identity(1,1)
error: Incorrect syntax near the keyword 'identity'.
I'm using sql server 2012.