Cannot truncate a table referenced in a foreign key constraint (`uplus_user_web`.`initiative_drivers`, CONSTRAINT `initiative_drivers_icategorydriverid_foreign`) (SQL: truncate table code example
Example: cannot truncate a table referenced in a foreign key constraint
SET FOREIGN_KEY_CHECKS = 0;
TRUNCATE table $table_name;
SET FOREIGN_KEY_CHECKS = 1;