zvv

Mysql删除表提示Cannot truncate a table referenced in a foreign key constraint解决办法

背景

因为测试过程中,几套环境都是用的同一个库,数据有点冲突,需要删库。 
执行truncate table xxx时提示: 
[Err] 1701 -Cannot truncate a table referenced in a foreign key constraint ….

解决办法

删除外键约束

SET foreign_key_checks = 0

启动外键约束

SET foreign_key_checks = 1

via.https://blog.csdn.net/amoscn/article/details/77776511

当前页面是本站的「Google AMP」版。查看和发表评论请点击:完整版 »

因本文不是用Markdown格式的编辑器书写的,转换的页面可能不符合AMP标准。