ERROR 1452 : Cannot add or update a child row: a foreign key constraint fails

Posted ~花开不败~

tags:

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

MySQL添加外键失败  error 1452解决办法

举例:

两个表       用户表:user   班级表:  grade

用户表中每个用户对应一个班级ID,即gradeId

即:user表的主关键字gradeId是grade表中的Id 

user表称为主表   grade表称为从表

【sql】

alter table user add foreign key (gradeId) references grade(Id );  
【error】
ERROR 1452 : Cannot add or update a child row: a foreign key constraint fails

【原因】

user表中的有的gradeId不属于grade表中的id 

【解决方法】

修改数据,使user表中的gradeId全部属于grade表中的id

以上是关于ERROR 1452 : Cannot add or update a child row: a foreign key constraint fails的主要内容,如果未能解决你的问题,请参考以下文章

MySQL设置外键报错 #1452 - Cannot add or update a child row: a foreign key constraint fails 解决方法

Django报错修复:1452, ‘Cannot add or update a child row: a foreign key constraint fails

Django报错修复:1452, ‘Cannot add or update a child row: a foreign key constraint fails

Cannot add or update a child row 数据库错误

pyinotify ERROR] add_watch: cannot watch

hibernate错误:Cannot add or update a child row: a foreign key constraint fails