我有一个表,其中我有一个主键和另一列,它是同一数据库中另一个表的主键。
我只是想添加外键但显示错误-
#1452 - Cannot add or update a child row: a foreign key constraint fails
(`c2cjobportal`.`#sql-114c_e3`,CONSTRAINT `fk_PerOrders
`FOREIGN KEY (`jobseekers_id`) REFERENCES `jobseekers` (`jobseekers_id`))
这是什么原因造成的?
我的 sql 代码是 -
ALTER TABLE `jobseekers_customprofile`
ADD CONSTRAINT fk_PerOrders
FOREIGN KEY (jobseekers_Id)
REFERENCES jobseekers(jobseekers_Id)