Answers for "drop constraint mysql"

SQL
0

mysql remove foreign key constraint

ALTER TABLE jobs DROP FOREIGN KEY constraint_name
Posted by: Guest on August-08-2020
1

drop all foreign key constraints mysql

SET foreign_key_checks = 0;
Posted by: Guest on June-26-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 "drop constraint mysql"

Code answers related to "SQL"

Browse Popular Code Answers by Language