您的位置:首页 > Web前端

You are using safe update mode and you tried to update a table without a WHERE that uses a KEY colum

2013-03-26 08:45 537 查看
Error: 1175 SQLSTATE: HY000 (ER_UPDATE_WITHOUT_KEY_IN_SAFE_MODE)

 

Message: You are using safe update mode and you tried to update a table without a WHERE that uses a KEY column.

 

Solution

SET SQL_SAFE_UPDATES =
0;

 

 

在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
相关文章推荐