当前位置: 代码迷 >> 综合 >> 1452, ‘Cannot add or update a child row: a foreign key constraint fails
  详细解决方案

1452, ‘Cannot add or update a child row: a foreign key constraint fails

热度:89   发布时间:2024-01-10 19:35:20.0
  • 报错

    sqlalchemy.exc.IntegrityError: (pymysql.err.IntegrityError) (1452, 'Cannot add or update a child row: a foreign key constraint fails (`test1`.`#sql-1864_7
    5`, CONSTRAINT `#sql-1864_75_ibfk_2` FOREIGN KEY (`category`) REFERENCES `category` (`id`))')
    [SQL: ALTER TABLE article ADD FOREIGN KEY(category) REFERENCES category (id)]
    
  • 数据模型

    class Category(db.Model):id = db.Column(db.INTEGER, primary_key=True, autoincrement=True)type_name = db.Column(db.String(100), nullable=False)articles = db.relationship('Article', backref='category')class Article(db.Model):id = db.Column(db.INTEGER, primary_key=True, autoincrement=True)title = db.Column(db.String(100), nullable=False)content = db.Column(db.Text, nullable=False)pdatetime = db.Column(db.DATETIME, default=datetime.now)#添加外键 category_id = db.Column(db.INTEGER, db.ForeignKey('category.id'), nullable=False)
    
  • 分析

    由于一张表是新建的 category表。没有数据。

    而在article中是有数据的。而且新增了一个字段category_id。而且还设置成不可以为空。

    所以。数据库肯定会给article表中 新增的段赋值。

    那么问题来了。由于我们设置外键约束 且不可为空,article中的category_id字段 势必会去引用 category中的id的值。但是category表中是没有数据的。所以导致 1452, 'Cannot add or update a child row: a foreign key constraint fails

  • 解决。

    1. 先不设置外键约束。创建好数据表 category。往里头设置一些数据。然后在去设置外键约束。
    2. 将article中的category_id 设置成可以为空。
    3. 将article中的category_id 设置默认值 default=xx.
  相关解决方案