mysql 报错:Error Code: 1175. You are using safe update mode and you tried to update a table without a WHERE that uses a KEY column. To disable safe mode, toggle the option in Preferences

时间:2020-02-26 21:14:05   收藏:0   阅读:84

#事故现场

mysql执行update操作报错:

update psmp.Users set name='Jack' where name='Lily';

Error Code: 1175. You are using safe update mode and you tried to update a table without a WHERE that uses a KEY column. To disable safe mode, toggle the option in Preferences

这是因为MySql运行在safe-updates模式下,该模式会导致非主键条件下无法执行update或者delete命令。
可以通过以下SQL进行状态查询:

show variables like 'SQL_SAFE_UPDATES';

技术图片

#解决方法

SET SQL_SAFE_UPDATES = 0;

SET SQL_SAFE_UPDATES = false;
SET SQL_SAFE_UPDATES = 1;

SET SQL_SAFE_UPDATES = true;

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!