即使parent为null,也要添加childrow

时间:2013-10-24 09:55:59

标签: mysql

我在SQLyog中工作并在我的salesquote sq表中添加了一个名为account unsigned的accountpersonmapid的列。 此ID必须映射到我的accountpersonmap apm,其中sq.accountid = apm.accountid

我设置了foreigh键但显然无法保存它因为无法添加或更新子行:外键约束失败(clevva_live#sql-7f8_737,CONSTRAINT salesquote_account FOREIGN KEY(accountid)REFERENCES accountpersonmapaccountid)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

有什么帮助吗?

0 个答案:

没有答案