ERROR 1217 (23000): Cannot delete or update a parent row: a foreign key constraint fails
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ERROR 1217 (23000): Cannot delete or update a parent row: a foreign key constraint fails相关的知识,希望对你有一定的参考价值。
mysql在删除一张表时出现
ERROR 1217 (23000): Cannot delete or update a parent row: a foreign key constraint fails
可能是MySQL在InnoDB中设置了foreign key关联,造成无法更新或删除数据。可以通过设置FOREIGN_KEY_CHECKS变量来避免这种情况。
SET FOREIGN_KEY_CHECKS = 0;
然后就可以删除表了。
删除完成后设置
SET FOREIGN_KEY_CHECKS = 1;
drop table slow_log cascade;
ERROR 1580 (HY000) at line 1: You cannot ‘DROP‘ a log table if logging is enabled”
解决方法:执行set global slow_query_log=off,然后再次运行mysql
本文出自 “梦Dream” 博客,请务必保留此出处http://dreamy.blog.51cto.com/12471447/1897218
以上是关于ERROR 1217 (23000): Cannot delete or update a parent row: a foreign key constraint fails的主要内容,如果未能解决你的问题,请参考以下文章
MySQL:错误 1217 (23000):无法删除或更新父行:外键约束失败 - 但仅适用于 1 个 sql 文件
ERROR 1062 (23000): Duplicate entry for key 'PRIMARY'
ERROR 1130: Host '192.168.1.3' is not allowed to connect to this MySQL ERROR 1062 (23000): D