(borrow_id,cust_id,agency_id,pawn_goods_name,pawn_goods_num,contract_date) VALUES('202210260001','A001... 错误代码: 1452 Cannot add or update a child row: a foreign key constraint fails (`bankcreditloandb`. `t_impawn_info`, CONSTRAINT `t_impawn_info_ibfk_2` FOREIGN KEY (`agency_id`) REFERENCES `t_agency_info` (`agency_id`))
时间: 2024-04-20 12:22:59 浏览: 156
book_borrow_system.zip_Book 2_book borrow_book_borrow system_图书借
根据错误代码1452,这个错误是由于在`t_impawn_info`表中的`agency_id`列与`t_agency_info`表中的`agency_id`列之间的外键约束失败引起的。这意味着您在`t_impawn_info`表中插入了一个无效的`agency_id`值,该值在`t_agency_info`表中找不到对应的记录。
要解决这个问题,您需要确保您插入`t_impawn_info`表的每个`agency_id`值都存在于`t_agency_info`表中。请检查您的插入语句并确保提供正确且存在的`agency_id`值。
阅读全文