美文网首页
MySQL安全模式

MySQL安全模式

作者: 木头猿 | 来源:发表于2018-07-10 17:09 被阅读0次

    MySQL安全模式要求不能对非主键的条件查询做update和delete操作
    报错:

    update activity set type=1 where title='aa'
    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 -> SQL Editor and reconnect. 0.000 sec

    解决如下:
    查看安全模式开关状态

    show variables like 'SQL_SAFE_UPDATES';

    关闭安全模式

    SET SQL_SAFE_UPDATES = 0;

    在workbench中也有自己的安全模式设置
    edit>preference


    图片.png

    去掉选中以关闭安全模式

    相关文章

      网友评论

          本文标题:MySQL安全模式

          本文链接:https://www.haomeiwen.com/subject/oekqpftx.html