delete primary key constraintin sql code example
Example 1: remove primary key from a table
alter table Player DROP PRIMARY KEY;
Example 2: how to remove foreign key constraint in sql
USE AdventureWorks2012;
GO
ALTER TABLE dbo.DocExe
DROP CONSTRAINT FK_Column_B;
GO