赞
踩
在执行 truncate table xxx 的时候提示Cannot truncate a table referenced in a foreign key constraint
解决办法:
- 在删除之前先执行: 删除外键约束
#删除外键约束 SET foreign_key_checks = 0- 执行truncat table XXX的操作
- 删除完之后再执行:启动外键约束
# 启动外键约束 SET foreign_key_checks = 1
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。