Well I made a table in sqlserver and put the primary key as normal int but I need to change it to Identity. how do I??
You can change via command or via Management Studio. Via command you will have to remove the column and add it again: ALTER TABLE Cliente DROP COLUMN Id ALTER TABLE Cliente ADD ID INT NOT NULL Identity(1,1) via Management Studio:
need to delete the current column and include a new one, such as
identity
– Ricardo Pontual
worth helping me dms !
– Bianca