`
E路之吕
  • 浏览: 15650 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

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

使用show create table table_name命令查看,又没有外键关联信息,

可能是MySQL在InnoDB中设置了foreign key关联,造成无法更新或删除数据。可以通过设置FOREIGN_KEY_CHECKS变量来避免这种情况。

SET FOREIGN_KEY_CHECKS = 0;

然后就可以删除表了。

删除完成后设置

SET FOREIGN_KEY_CHECKS = 1;
分享到:
评论

相关推荐

    MySQL删除表的时候忽略外键约束的简单实现

    当尝试删除一个表而该表包含其他表所依赖的字段时,MySQL会抛出错误1217(23000),提示“Cannot delete or update a parent row: a foreign key constraint fails”。为了解决这个问题,我们可以利用MySQL中的一个...

    Navicat删除行时报Cannot delete or update a parent row: a foreign key constraint fails

    在SSM项目中执行一个删除用户操作时报错,遂在navicat中尝试是否可以直接删除,报如下所示错误 student表的主键是selectedcourse表的外键,当需要删除student表内的一行数据时,必须在selectedcourse表内设置该外键...

    MySQL删除有外键约束的表数据方法介绍

    当试图删除一个被其他表的外键引用的行时,MySQL会抛出错误[Err] 1451,提示“Cannot delete or update a parent row: a foreign key constraint fails”,阻止操作执行,以防止破坏数据的完整性。 解决这个问题的...

    MySQL添加外键时报错:1215 Cannot add the foreign key constraint的解决方法

    这篇文章主要涉及到在数据创建表时,遇到ERROR 1215 (HY000): Cannot add foreign key constraint 问题方面的内容,对于在数据创建表时,遇到同样问题感兴趣的同学可以参考一下。 一、问题的提出 创建两个表:  ...

    SSH异常总结

    持久化异常是指在使用 Mybatis 更新数据库时,报错 Cannot delete or update a parent row: a foreign key constraint fails。这种异常的原因是因为在更新 user 表时,未更改外键值 user_id,导致外键约束失败。解决...

    sql关闭与开启

    Cannot delete or update a parent row: a foreign key constraint fails (...) 这可能是MySQL在InnoDB中设置了foreign key关联,造成无法更新或删除数据。可以通过设置FOREIGN_KEY_CHECKS变量来避免这种情况。 SET ...

    解决django 新增加用户信息出现错误的问题

    (1452, 'Cannot add or update a child row: a foreign key constraint fails (`mxonline`.`django_admin_log`, CONSTRAINT `django_admin_log_user_id_c564eba6_fk_auth_user_id` FOREIGN KEY (`user_id`) ...

    mysql级联更新和级联删除

    错误提示:`Cannot delete or update a parent row: a foreign key constraint fails`. 5. **移除外键约束**: - 可以通过ALTER TABLE命令移除已有的外键约束。 ```sql ALTER TABLE xiaodi DROP FOREIGN KEY ...

    Foreign Key Constraint Fails(亲测可用).md

    Foreign Key Constraint Fails(亲测可用).md

    大牛总结 MySql常见错误集锦

    9. 错误1452: Cannot add or update a child row: a foreign key constraint fails 外键约束失败通常发生在尝试删除或更新父表中的记录,而子表中仍有关联的记录。在执行操作前,先检查并处理好外键约束。 10. 错误...

    MySQL常见出错代码速查表

    7. 错误代码1452: "Cannot add or update a child row: a foreign key constraint fails",意味着你尝试添加或更新的数据违反了外键约束,父表中没有对应的记录。 8. 错误代码1366: "Incorrect integer value: '...

    Django ForeignKey与数据库的FOREIGN KEY约束详解

    在Django框架中,`ForeignKey`是一个非常重要的字段类型,用于建立两个模型之间的关联,它在概念上等同于数据库中的`FOREIGN KEY`约束。然而,两者在实际使用中有一定的区别。`ForeignKey`在Django中主要是逻辑层面...

    INSERT语句与FOREIGN KEY约束冲突

    在SQL数据库设计中,FOREIGN KEY约束是一种重要的机制,它用于维护数据的引用完整性,确保表之间的关联数据是有效的。当我们尝试使用INSERT语句插入数据时,如果违反了FOREIGN KEY约束,就会出现“INSERT语句与...

    SQL语句总结,包括增删改查,建库,表,修改表结构,增删约束与字段等

    + 外键约束:alter table 从表名 add constraint 约束名 foreign key (字段名) references 主表名 (字段名) + 检查约束:alter table 表名 add constraint 约束名 check (条件) * 删除约束:alter table 表名 drop...

    SSD7 选择题。Multiple-Choice

    The foreign key in a table T1 _____ the same _____ as the corresponding primary key in table T2. must have, name need not have, name must have, domain (a) I, II, and III (b) I and II (c) ...

    数据库sqlserver关键字

    * Drop Constraint:删除约束 权限控制 * Grant:授予权限 * Revoke:撤销权限 * Deny:拒绝权限 变量和赋值 * Declare:声明局部变量 * Set/Select:为局部变量赋值 流程控制 * Begin/End:流程控制的开始和...

Global site tag (gtag.js) - Google Analytics