mysql workbench执行update操作报错

2019独角兽企业重金招聘Python工程师标准>>> hot3.png

错误代码:

You are using safe update mode and you tried to update a table without a WHERE that uses a KEY column.

错误原因:修改或者删除SQL语句执行时用非主键作为条件会被认为是“不安全”的。

解决方案:修改默认设置

执行如下代码:

SET SQL_SAFE_UPDATES = 0;

设置安全修改为0(0为false,1为true),设置true或者false也是可以的




转载于:https://my.oschina.net/junzizhiyao/blog/268368

你可能感兴趣的:(mysql workbench执行update操作报错)