create table school_student(
id int not null,
name varchar(20),
DOB Date,
Address varchar(50),
phone_no int,
primary key(id)
);
need to update the primary key column to auto increment in sql
alter table school_student alter column id int not null identity(5,1) primary key
i am getting below error,
Incorrect syntax near the keyword 'identity'.