Answers for "how to drop key with foreign key"

SQL
5

drop foreign key

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

drop foreign key

ALTER TABLEEmployee
DROP FOREIGN KEY FK_EmployeeDept;
Posted by: Guest on July-06-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language