Answers for "how to drop table if its referenced by foreign-key constraint"

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 "how to drop table if its referenced by foreign-key constraint"

Code answers related to "SQL"

Browse Popular Code Answers by Language