Hi all,
I need to update a field value which is also the primary key.
So I have to remove the Primary Key constraint.
I tried the below but gives error..
ALTER TABLE student DROP CONSTRAINT ffnumber
also tried...
ALTER TABLE student DISABLE PRIMARY KEY;
error is "incorrect syntax neat the keyword 'PRIMARY'"
Any ideas? Using MS SQL Server.
Thanks.