how to drop a foreign key mysql code example
Example 1: mysql remove foreign key constraint
ALTER TABLE jobs DROP FOREIGN KEY constraint_name
Example 2: drop all foreign key constraints mysql
SET foreign_key_checks = 0;
Example 3: mysql drop key
ALTER TABLE tbl_quiz_attempt_master
DROP INDEX `PRIMARY`;