mysql利用参数sql_safe_updates限制update/delete范围详解

作者:gxcherie 时间:2024-01-27 06:52:53 

前言

大家应该都知道,我们在mysql运维中出现过不少因为update/delete条件错误导致数据被误更新或者删除的case,为避免类似问题的发生,可以用sql_safe_updates参数来对update/delete做限制。这个参数设置为on后,可防止因程序bug或者DBA手工误操作导致的整个表被更新或者删除的情况。下面话不多说了,来一起看看详细的介绍吧。

设置这个参数时需要注意一下几点:

       a、设置前需要确认程序中所有的update和delete都符合sql_safe_updates的限制规范,不然程序会报错。

       b、5.0,5.1都是session级别的,5.6是global&session级别;低版本的数据库只能在程序创建session时设置带上set sql_safe_updates=on;高版本的数据库可以直接set global set sql_safe_updates=on,设置完成后让程序重连后生效。

限制规范:

示例表结构:


CREATE TABLE `delay_monitor` (
`id` int(11) NOT NULL,
`Ftime` datetime DEFAULT NULL,
`Fgtid` varchar(128) NOT NULL DEFAULT '',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin

1、update

a、报错条件:不带where、带where无索引、where条件为常量

     不带where:update delay_monitor set Ftime=now();

      带where无索引:update delay_monitor set Ftime=now() where Fgtid='test';

      where条件为常量:update delay_monitor set Ftime=now() where 1;

 b、执行条件:带where带索引、不带where+带limit、带where无索引+limit、带where有索引+limit、where条件为常量+limit

       带where带索引:update delay_monitor set Ftime=now() where id=2;

       不带where+带limit: update delay_monitor set Ftime=now()  limit 1;

       带where无索引+limit:update delay_monitor set Ftime=now() where Fgtid='test' limit 1;

       带where有索引+limit:update delay_monitor set Ftime=now() where id =2 limit1;

        where条件为常量+limit:update delay_monitor set Ftime=now() where 1 limit 1;

 2、delete

 相对于update,delelte的限制会更为严格;where条件为常量或者为空,将不予执行。

a、报错条件:不带where、带where无索引、不带where+带limit、where条件为常量、where条件为常量+limit

      不带where:delete delay_monitor set Ftime=now();

      带where无索引:delete delay_monitor set Ftime=now() where Fgtid='test';

      不带where+带limit: delete delay_monitor set Ftime=now()  limit 1;

      where条件为常量:delete delay_monitor set Ftime=now() where 1;

      where条件为常量+limit:delete delay_monitor set Ftime=now() where 1 limit 1;

b、执行条件:带where带索引、带where无索引+limit、带where有索引+limt

      带where带索引:delete delay_monitor set Ftime=now() where id=2;

      带where无索引+limit:delete delay_monitor set Ftime=now() where Fgtid='test' limit 1;

      带where有索引+limit:delete delay_monitor set Ftime=now() where id =2 limit1;

总结如下表:key表示所有、const表示常量

操作 no wherewhere keywhere nokey limitwhere nokey+limitwhere key+limit     where constwhere const+limit
delete    NOYESNONOYESYESNO    NO
updateNOYESNOYESYESYESNOYES

来源:http://www.cnblogs.com/Cherie/p/7658189.html

标签:mysql,参数sql,safe,updates,update
0
投稿

猜你喜欢

  • 在Mac中配置Python虚拟环境过程解析

    2023-11-14 06:55:43
  • Python+OpenCV实现车牌字符分割和识别

    2022-03-11 02:55:21
  • Python使用pyinstaller实现学生管理系统流程

    2023-05-25 02:58:05
  • Python使用scrapy抓取网站sitemap信息的方法

    2023-04-02 20:03:18
  • PHP 中文处理技巧

    2024-05-11 09:45:09
  • 深入理解python中函数传递参数是值传递还是引用传递

    2022-02-21 10:08:33
  • Mysql 本地计算机无法启动 mysql 服务 错误 1067:进程意外终止。

    2024-01-27 19:30:56
  • UTF-8 GBK UTF8 GB2312 之间的区别和关系介绍

    2022-06-12 12:15:46
  • Python操作Mysql实例代码教程在线版(查询手册)

    2024-01-24 17:07:44
  • Python 数字转化成列表详情

    2023-09-24 06:53:25
  • tensorflow模型继续训练 fineturn实例

    2023-07-10 12:53:09
  • flask上传作品之dbm操作的实现

    2022-06-29 15:25:41
  • python爬取指定微信公众号文章

    2021-03-29 02:34:39
  • Python自动连接ssh的方法

    2023-09-20 00:12:16
  • 解决安装mysqlclient的时候出现Microsoft Visual C++ 14.0 is required报错

    2024-01-14 15:48:14
  • mysql语句如何插入含单引号或反斜杠的值详解

    2024-01-13 03:30:03
  • python中apply函数详情

    2023-06-03 14:58:15
  • Python命名空间与作用域深入全面详解

    2022-03-07 08:36:10
  • 在Python中使用filter去除列表中值为假及空字符串的例子

    2022-02-01 06:47:35
  • 计算机管理服务中找不到mysql的服务的解决办法

    2024-01-26 03:31:34
  • asp之家 网络编程 m.aspxhome.com