加入收藏 | 设为首页 | 会员中心 | 我要投稿 应用网_镇江站长网 (https://www.0511zz.com/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 站长学院 > MySql教程 > 正文

MySQL中的安全更新模式 - MySQL教程

发布时间:2014-01-06 14:23:31 所属栏目:MySql教程 来源:站长网
导读:删除mysql 的一个表的数据的时候报告如下错误: mysql delete from upload_images; ERROR 1175 (HY000): You are using safe update mode and you tried to upd
删除mysql 的一个表的数据的时候报告如下错误:

mysql> delete from upload_images;
ERROR 1175 (HY000): You are using safe update mode and you tried to update a table without a WHERE that uses a KEY column

mysql> show variables like '%sql_safe%';
+------------------+-------+
| Variable_name    | Value |
+------------------+-------+
| sql_safe_updates | ON    |
+------------------+-------+
1 row in set (0.00 sec)

mysql> set sql_safe_updates=0;

Query OK, 0 rows affected (0.00 sec)

mysql> show variables like '%sql_safe%';
+------------------+-------+
| Variable_name    | Value |
+------------------+-------+
| sql_safe_updates | OFF   |
+------------------+-------+
1 row in set (0.00 sec)

mysql> delete from upload_images;
Query OK, 505 rows affected (0.01 sec)

然后再启用safe mode

mysql> set sql_safe_updates=1;

本文出自 “影子骑士” 博客,请务必保留此出处http://andylhz2009.blog.51cto.com/728703/947634

(编辑:应用网_镇江站长网)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!