turn off foreign key constraint mysql code example
Example 1: mariadb disable foreign key checks
SET FOREIGN_KEY_CHECKS=0;
Example 2: mysql remove foreign key constraint
ALTER TABLE jobs DROP FOREIGN KEY constraint_name
Example 3: drop all foreign key constraints mysql
SET foreign_key_checks = 0;