[ERR] 1217 - Cannot delete or update a parent row: a foreign key constraint

[ERR] 1217 - Cannot delete or update a parent row: a foreign key constraint

运行sql文件不能成功,找到原因是,某个表设置了外键约束。

 

可以通过sql查询外键引用关系:
SELECT * 
FROM information_schema.`KEY_COLUMN_USAGE`
WHERE referenced_table_name='student'

 

删除约束即可。

 

文章来源:刘俊涛的博客 欢迎关注公众号、留言、评论,一起学习。

__________________________________________________________________________________

若有帮助到您,欢迎捐赠支持,您的支持是对我坚持最好的肯定(*^_^*)

上一篇:ERROR: Failed to resolve: com.android.support.constraint:constraint-layout:1


下一篇:mysql查询、增加、删除外键约束