首页 > 代码库 > oracle 优化or 替换为in、exists、union all的几种写法,测试没有问题!
oracle 优化or 替换为in、exists、union 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‘)
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。