mysql中删除时报错Cannot truncate a table referenced in a foreign key constraint (`em_hgh`.`monitoritem`, C

Posted Snow

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql中删除时报错Cannot truncate a table referenced in a foreign key constraint (`em_hgh`.`monitoritem`, C相关的知识,希望对你有一定的参考价值。

在Mysql使用Truncate截断表时,提示 Cannot truncate a table referenced in a foreign key constraint (monitoritem, CONSTRAINT monitortaskpollutant_monitortask_fk)

这是因为存在外键约束导致的无法删除,我们可以先关闭外键约束,删除后再启动外键约束。

1、检查外键约束

SELECT @@FOREIGN_KEY_CHECKS; 

2、关闭外键约束校验

SET FOREIGN_KEY_CHECKS=0

3、执行删除操作

TRUNCATE monitortask

4、开启外键约束校验

SET FOREIGN_KEY_CHECKS=1

android run/debug configurations时报错Cannot reload AVD list:

技术分享
技术分享
 
解决方案:
1.找到Android的SDK安装目录下的devices.xml( /sdk/tools/lib/devices.xml)
2.替换以下两个目录的devices.xml
system-images\\android-22\\android-wear\\x86\\devices.xml
system-images\\android-22\\android-wear\\armeabi-v7a\\devices.xml

以上是关于mysql中删除时报错Cannot truncate a table referenced in a foreign key constraint (`em_hgh`.`monitoritem`, C的主要内容,如果未能解决你的问题,请参考以下文章

mysql执行update语句时报错:Data truncation: Truncated incorrect DOUBLE value: 'null'

mysql数据库转储时报错,求大神帮助,在线等

android run/debug configurations时报错Cannot reload AVD list:

javah生成jni头文件时报错 Error: cannot access android.support...

已解决SpringBoot使用JSP时报错Cannot resolve MVC View ‘XXX‘

vue + iviewadmin框架登录时报错cannot read property“token” of undefined