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

Posted datalife

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql ERROR 1217 (23000): Cannot delete or update a parent row: a foreign key constrain fails相关的知识,希望对你有一定的参考价值。

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的主要内容,如果未能解决你的问题,请参考以下文章