大家好,又见面了,我是全栈君,今天给大家准备了Idea注册码。
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')
发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/117753.html原文链接:https://javaforall.cn
【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛
【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...