drop table foreign key constraint code example
Example 1: drop foreign key
ALTER TABLE table_name
DROP CONSTRAINT fk_name;
Example 2: how to remove foreign key constraint in sql
USE AdventureWorks2012;
GO
ALTER TABLE dbo.DocExe
DROP CONSTRAINT FK_Column_B;
GO