mysqlworkbench 执行update语句报错:You are using safe update mode and you tried to update a table without a

Posted kaerxifa

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysqlworkbench 执行update语句报错:You are using safe update mode and you tried to update a table without a相关的知识,希望对你有一定的参考价值。

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 and reconnect

技术图片

解决办法1:

其实错误提示中已经给出了解决办法了

关闭安全模式:

Edit --> Preferences --> SQL Editors-->取消沟选 Safe Updates 先项

技术图片

技术图片

 

别忘记重启MysqlWorkbench,重启之后就可以正常执行更新语句了
技术图片

 


解决办法2:
参考:https://blog.csdn.net/sanpic/article/details/79879408

可以通过以下SQL进行状态查询


showvariables like sql_safe%;

解决方案:

  1. 执行SQL:
    set sql_safe_updates=0;
    或
    set sql_safe_updates=off;

 



以上是关于mysqlworkbench 执行update语句报错:You are using safe update mode and you tried to update a table without a的主要内容,如果未能解决你的问题,请参考以下文章

在 MySQL Workbench 中通过快捷方式执行语句

MySQL建表语句转PostgreSQL建表语句全纪录

MySQL Workbench 的安全设置

oracle执行update语句卡住不动

无法在 SQLite DB 上执行 UPDATE 语句:数据库已锁定 [重复]

ASP.Net 后台的Update语句执行成功了,为啥数据库的值没有改变