1. 程式人生 > >mysql ERROR 1217 (23000): Cannot delete or update a parent row: a foreign key constrain fails

mysql ERROR 1217 (23000): Cannot delete or update a parent row: a foreign key constrain fails

inno delet error parent 更新 ren update RR spl

ERROR 1217 (23000): Cannot delete or update a parent row: a foreign key constrain fails。

可能是MySQL在InnoDB中設置了foreign key關聯,造成無法更新或刪除數據。可以通過設置FOREIGN_KEY_CHECKS變量來避免這種情況。

1、set foreign_key_checks=0;

2、刪除要刪除的表;

3、set foreign_key_checks=1;

mysql ERROR 1217 (23000): Cannot delete or update a parent row: a foreign key constrain fails