Answers for "how to delete foreign key constraint"

SQL
5

drop foreign key

ALTER TABLE table_name
DROP CONSTRAINT fk_name;
Posted by: Guest on June-04-2020
1

how to remove foreign key constraint in sql

USE AdventureWorks2012;  
GO  
ALTER TABLE dbo.DocExe   
DROP CONSTRAINT FK_Column_B;   
GO
Posted by: Guest on September-24-2020

Code answers related to "how to delete foreign key constraint"

Code answers related to "SQL"

Browse Popular Code Answers by Language