时间:2021-07-01 10:21:17 帮助过:27人阅读
今日用MySQL Workbench进行数据库的管理更新时,执行一个更新的语句碰到以下错误提示:
代码如下:
Error Code: 1175
You are using safe update mode and you tried to update a table without a WHERE that uses a KEY column
解决方法如下:
1.打开Workbench的菜单[Edit]->[Preferences...]
2.切换到[SQL Editor]页面
3.把[Forbid UPDATE and DELETE statements without a WHERE clause (safe updates)]之前的对勾去掉
4.点击[OK]按钮
5.最后一步记得要重启一下Workbench,否则你仍然会得到这个错误提示。
如下图:
再次运行SQL语句就没问题了