Error Code: 1175_MySQL
程序员文章站
2022-04-20 19:01:09
...
用mysql workbench 更新一个表的时候报如下异常:
Error Code: 1175. To disable safe mode, toggle the option in Preferences -> SQL Editor -> Query Editor and reconnect.
You are using safe update mode and you tried to update a table without a WHERE that uses a KEY column
使用安全更新模式的时候update语句必须使用一个关键字列属性来限定更新的范围。如果不使用关键字列来限定范围或更新所有记录的时候就不能用安全更新模式。
解决办法是执行以下语句设置为非安全更新模式.
SET SQL_SAFE_UPDATES=0;
上一篇: 详解javascript事件绑定使用方法
下一篇: 有关MySQL数据库中的外键约束详解
推荐阅读
-
ERROR 1045 (28000): Access denied for user root@localhost (using password: NO)
-
Visual Studio Code给文件添加文件图标主题的教程
-
MySQL无法读表错误的解决方法(MySQL 1018 error)
-
Codeigniter中禁止A Database Error Occurred错误提示的方法
-
Codeigniter出现错误提示Error with CACHE directory的解决方案
-
MYSQL ERROR 1045 (28000): Access denied for user (using password: YES)问题的解决
-
MySQL案例02:(MyCAT报错) [ERROR][$_NIOREACTOR-3-RW] caught err: java.lang.OutOfM emo
-
ERROR 1045: Access denied for user: root@localhost (Using password: NO)
-
Python socket.error: [Errno 98] Address already in use的原因和解决方法
-
Ubuntu下安装并配置VS Code编译C++的方法