oracle 优化or 更换inexistsunion all几个字眼

Posted kongxc

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了oracle 优化or 更换inexistsunion all几个字眼相关的知识,希望对你有一定的参考价值。

oracle 优化or 更换in、exists、union几个字眼。测试没有问题!

根据实际情况选择相应的语句是。假设指数,or全表扫描,in 和not in 应慎用。否则会导致全表扫描。

 

 select *
   from T_Pro_Product
  where bar_code = ‘nnnmmm‘
     or name = ‘nnnmmm‘
     or no = ‘nnnmmm‘;

select *
   from T_Pro_Product
  where ‘nnnmmm‘ in (bar_code, name, no)
 
 --忧化
   select *
           from T_Pro_Product t1
          where exists
          (select 1
                   from T_Pro_Product tt1
                  where t1.bar_code = ‘nnnmmm‘
                 union all
                 select 1
                   from T_Pro_Product tt2
                  where t1.no = ‘nnnmmm‘
                 union all
                 select 1 from T_Pro_Product tt3 where t1.name like ‘n%‘)
         
         --忧化
           select *
                   from T_Pro_Product t1
                  where t1.id in (select id
                                    from T_Pro_Product tt1
                                   where t1.bar_code = ‘nnnmmm‘
                                  union all
                                  select id
                                    from T_Pro_Product tt2
                                   where t1.no = ‘nnnmmm‘
                                  union all
                                  select id
                                    from T_Pro_Product tt3
                                   where t1.name = ‘nnnmmm‘)


来源:http://www.cnblogs.com/yxwkf/p/4602143.html



以上是关于oracle 优化or 更换inexistsunion all几个字眼的主要内容,如果未能解决你的问题,请参考以下文章

Oracle group by 和 OR 查询优化

oracle 查询的sql语句特别慢,是啥原因,是or特别慢吗,用啥优化,急急急!!!

PostgreSQL对or exists的优化

PostgreSQL对or exists产生的filter优化一

PostgreSQL对or exists产生的filter优化一

总结Oracle系统内核参数优化设置