当前位置:   article > 正文

Mysql删除表提示Cannot truncate a table referenced in a foreign key constraint的解决办法_cannot drop table 'act ru execution' referenced by

cannot drop table 'act ru execution' referenced by a foreign key constraint

在执行 truncate table xxx 的时候提示Cannot truncate a table referenced in a foreign key constraint

解决办法:

  1. 在删除之前先执行: 删除外键约束
    1. #删除外键约束
    2. SET foreign_key_checks = 0
  2. 执行truncat table XXX的操作
  3. 删除完之后再执行:启动外键约束
    1. # 启动外键约束
    2. SET foreign_key_checks = 1

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Gausst松鼠会/article/detail/560048
推荐阅读
相关标签
  

闽ICP备14008679号