欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

sql脚本中的优先级(and 、or 和 括号)

程序员文章站 2022-06-18 08:00:12
二月初三辛丑年 牛辛卯月 壬戌日 好多天没更博了,为啥呢,因为我的需求上线了,然后又被bibibi了,其中各种心酸背锅以及瑟瑟发抖。。。天呐 回来继续说,今天一个sql的修改: 需求是这样的:在一个日期范围内(2020-03-01至2021-03-12)查询人员类型为(“1003%”、“1004%” ......

二月初三辛丑年 牛辛卯月 壬戌日

好多天没更博了,为啥呢,因为我的需求上线了,然后又被bibibi了,其中各种心酸背锅以及瑟瑟发抖。。。天呐

回来继续说,今天一个sql的修改:

需求是这样的:在一个日期范围内(2020-03-01至2021-03-12)查询人员类型为(“1003%”、“1004%”、“1006%”)的数据。

1、我原来错误的写法为:

当我查询出来的数据时间有2015年的,并且查询时间特别特别慢

-- 这段脚本查询出来的数据和时间没有什么关系的
select m.no, m.calldate, m.persontype from amain m where m.calldate >= date '202-03-01' and m.calldate< date'2021-03-12' and m.persontype like '1003%' or m.persontype like '1004%' or m.persontype like '1006%' ;

-- 即当出现:

-- condition1 and condition2  or   condition3 

-- 其运算实际上是等价于:(condition1 and  condition2) or condition3    //先运算and  再运算or

--运算顺序为 and > or

2、正确的写法为:

select m.no, m.calldate, m.persontype
      from amain m
     where m.calldate >= date '202-03-01'
       and m.calldate< date'2021-03-12'
       and (m.persontype like '1003%' 
          or m.persontype like '1004%' 
          or m.persontype like '1006%' );
-- 加入了括号之后就能查出正确的数据了

-- condition1 and (condition2  or   condition3)

-- 其运算实际上先运行了 括号里面的 or 再运行了 括号外的 and

-- 运算顺序为 () > and

综合上述两种情况,就可得到:运算顺序为 () > and >or.