mysql修改数据时候,抛出safe mode相关错误,处理方法

Posted 无信不立

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql修改数据时候,抛出safe mode相关错误,处理方法相关的知识,希望对你有一定的参考价值。

 在mysql5中,可以设置safe mode,比如在一个更新语句中 
UPDATE table_name SET bDeleted=0; 
执行时会错误,报: 
You are using safe update mode and you tried to update a table without a WHERE clause that uses a KEY column.” 

  原因是在safe mode下,要强制安全点,update只能跟where了, 
要取消这个限制,可以: 
    SET SQL_SAFE_UPDATES=0; 
即可 









以上是关于mysql修改数据时候,抛出safe mode相关错误,处理方法的主要内容,如果未能解决你的问题,请参考以下文章

MySQL事务日志Redo_Log之Crash_Safe原理和事务两阶段提交原理

MySQL: You are using safe update mode and you tried to update a table without a WHERE that uses a KE

mysql 报错:Error Code: 1175. You are using safe update mode and you tried to update a table without a

mysql更新字段值提示You are using safe update mode and you tried to update a table without a WHERE that uses

fail-safe fail-fast知多少

Java 快速失败( fail-fast ) 安全失败( fail-safe )