其他分享
首页 > 其他分享> > [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

作者:互联网

[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'

 

删除约束即可。

 

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

__________________________________________________________________________________

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

标签:parent,1217,ERR,constraint,Cannot,key,row
来源: https://www.cnblogs.com/lovebing/p/13578303.html