dropping a foreign key in mysql code example
Example 1: mysql change foreign key
ALTER TABLE Orders
ADD FOREIGN KEY (PersonID) REFERENCES Persons(PersonID);
Example 2: mysql remove foreign key constraint
ALTER TABLE jobs DROP FOREIGN KEY constraint_name
Example 3: mysql drop key
ALTER TABLE tbl_quiz_attempt_master
DROP INDEX `PRIMARY`;