1452 - cannot add or update a
时间: 2023-04-28 08:05:47 浏览: 94
MySQL添加外键时报错:1215 Cannot add the foreign key constraint的解决方法
child row: a foreign key constraint fails (`mydb`.`#sql-3a4_4`, CONSTRAINT `#sql-3a4_4_ibfk_1` FOREIGN KEY (`parent_id`) REFERENCES `mytable` (`id`))
这是一条 SQL 错误信息,表示在数据库中插入或更新记录时出现了外键约束错误。具体来说,在表 "#sql-3a4_4" 中,无法将数据插入或更新到 "parent_id" 列,因为它是另一个表 "mytable" 中 "id" 列的外键。
阅读全文