create table table1 (col1 int identity(1,1),col2 varchar(10))
i created the table like this
now i want to alter col1 which can increase by value 2
something like that
alter table table1 alter column col1 int identity(1,2)
plz help
i have done this through wizard
i want sql query