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

不念不忘少年蓝@ 2023-07-08 14:25 94阅读 0赞

文章目录

      • #事故现场
      • #解决方法

#事故现场

mysql执行update操作报错:

  • sql如下:

    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进行状态查询:

  1. show variables like 'SQL_SAFE_UPDATES';

在这里插入图片描述

#解决方法

  • 执行下面的sql,关闭safe-updates模式:

    SET SQL_SAFE_UPDATES = 0;

  1. SET SQL_SAFE_UPDATES = false;
  • 执行下面的sql,打开safe-updates模式:

    SET SQL_SAFE_UPDATES = 1;

  1. SET SQL_SAFE_UPDATES = true;

▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼
博客园同步更新地址: https://www.cnblogs.com/willingtolove/p/12368712.html
▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲

发表评论

表情:
评论列表 (有 0 条评论,94人围观)

还没有评论,来说两句吧...

相关阅读