Answers for "droping down the foreign key constratint"

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 "droping down the foreign key constratint"

Code answers related to "SQL"

Browse Popular Code Answers by Language