码迷,mamicode.com
首页 > 数据库 > 详细

Mysql-解除安全模式批量更新

时间:2020-04-24 14:28:48      阅读:85      评论:0      收藏:0      [点我收藏+]

标签:enc   img   error   edit   tab   without   ror   ble   highlight   

update email_content  set Content = replace(Content ,‘001.11‘,‘002.22‘)	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.031 secfan‘s  

方式一

  1、show variables like ‘SQL_SAFE_UPDATES’;查看开关状态。

  2 、SET SQL_SAFE_UPDATES = OFF;

  3、update email_content set Content = replace(Content ,‘001.11‘,‘002.22‘); //批量更新email_content的Content字段内容中001.11为002.22

  4、记得更新后:SET SQL_SAFE_UPDATES = ON;

 

方式二

  技术图片  技术图片

 

Mysql-解除安全模式批量更新

标签:enc   img   error   edit   tab   without   ror   ble   highlight   

原文地址:https://www.cnblogs.com/Essaycode/p/12767143.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!