検索

ホームページ  >  に質問  >  本文

java - 外键约束失败 该怎么解决

WARNING]
org.springframework.web.util.NestedServletException: Request processing failed; nested exception is org.springframework.dao.DataIntegrityViolationException:

Error updating database. Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLIntegrityConstraintViolationException: Cannot add or update a child row: a foreign key constraint fails (lgip.tb_intention, CONSTRAINT fk_intention_user FOREIGN KEY (firm_id) REFERENCES tb_user (id))

The error may involve com.nstc.lgip.idao.TbIntentionMapper.insert-Inline

The error occurred while setting parameters

SQL: insert into tb_intention (id, firm_id, industry_type ) values (?, ?, ? )

Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLIntegrityConstraintViolationException: Cannot add or update a child row: a foreign key constraint fails (lgip.tb_intention, CONSTRAINT fk_intention_user FOREIGN KEY (firm_id) REFERENCES tb_user (id))

; SQL []; Cannot add or update a child row: a foreign key constraint fails (lgip.tb_intention, CONSTRAINT fk_intention_user FOREIGN KEY (firm_id) REFERENCES tb_user (id)); nested exception is com.mysql.jdbc.exceptions.jdbc4.MySQLIntegrityConstraintViolationException: Cannot add or update a child row: a foreign key constraint fails (lgip.tb_intention, CONSTRAINT fk_intention_user FOREIGN KEY (firm_id) REFERENCES tb_user (id))

PHP中文网PHP中文网2815日前600

全員に返信(2)返信します

  • 高洛峰

    高洛峰2017-04-18 10:22:27

    挿入した farm_id には、対応する ID が tb_user テーブルにありません。 。 。 。 。 。 。

    返事
    0
  • 大家讲道理

    大家讲道理2017-04-18 10:22:27

    外部キー テーブルは、主キー テーブルに対して左リンク クエリを実行し、一部の ID が主キー テーブルに存在しないことを検出し、それらを削除するか保持するかを決定できます。

    返事
    0
  • キャンセル返事