其他分享
首页 > 其他分享> > 报错:Cannot add or update a child row: a foreign key constraint fails

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

作者:互联网

当使用外键而外键没有填入数据库就会报错

 

解决方案:执行下面sql语句

SET FOREIGN_KEY_CHECKS=0;

解决完成后改回来

SET FOREIGN_KEY_CHECKS=1;

  

标签:fails,SET,constraint,FOREIGN,报错,KEY,改回来,CHECKS
来源: https://www.cnblogs.com/guoqinghe/p/15141513.html