mysql更新时报错:Error Code: 1175. You are using safe update mode

更新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 -> SQL Editor -> Query Editor and reconnect.

啥意思?

错误码1175.在安全模式下,您正试图通过不含key的WHERE更新一个table,该操作将使safe mode失效,点击选项栏“Preferences -> SQL Editor -> Query”编辑并重连。

网上很多说,该问题是因为where条件中的缺少主键,其实本质问题是update和delete在where中没有索引(key)

解决方法有2个:
1. 在where条件中使用索引来查询;
2. 在update和delete时设置 SQL_SAFE_UPDATES:

  1. set SQL_SAFE_UPDATES = 1;
    1. 执行 update和delete;
    2. set SQL_SAFE_UPDATES = 0;

你可能感兴趣的:(MySql)