I want do SQL query of alter to change column int type from normal to identity with seed 10 and start 5
how I do that?
I mean something like:
ALTER TABLE Persons MODIFY ID Identity(5,10)
ALTER TABLE Table3 ALTER COLUMN AutoINC set Idenity(5,2)
to change he's identity