sqlalchemyexcIntegrityError pymysqlerrIntegrityError 1217 Cannot delete or update a parent row a foreign key constraint failsSQL DROP TABLE userinfo报错的原因
这个错误是由于在删除表userinfo之前,存在其他表中的外键约束引用了userinfo表的记录,导致无法删除。
解决方法有两种:
- 先删除引用了userinfo表的外键约束,再删除userinfo表。
- 使用CASCADE级联删除,删除userinfo表时会自动删除引用了userinfo表的外键约束。
具体操作取决于你的数据库管理系统和数据库设计。
原文地址: https://www.cveoy.top/t/topic/i4cO 著作权归作者所有。请勿转载和采集!