我在 SQLyog 工作,并在我的 salesquote sq 表中添加了一个名为 accountpersonmapid 类型为 int unsigned 的列。这个 id 必须映射到我的 accountpersonmap apm 其中 sq.accountid = apm.accountid
我已经设置了外键,但显然无法保存它,因为无法添加或更新子行:外键约束失败 ( clevva_live
. #sql-7f8_737
, CONSTRAINT salesquote_account
FOREIGN KEY ( accountid
) REFERENCES accountpersonmap
( accountid
) ON DELETE NO ACTION ON UPDATE NO ACTION) 错误
我怎么能克服这个?
SELECT sq.accountid,apm.accountid FROM salesquote sq
LEFT JOIN accountpersonmap apm ON sq.accountid = apm.accountid
我没有每个 sq.accountid 的 apm.accountid
请问有什么帮助吗?