To drop Primary Key of a Table using MSSQL you can use the snippet below.
Sample MSSQL
ALTER TABLE tblTest DROP CONSTRAINT PK_tblTest GO
To drop Primary Key of a Table using MSSQL you can use the snippet below.
ALTER TABLE tblTest DROP CONSTRAINT PK_tblTest GO
You must be logged in to post a comment.