Oracle中(+)连接写法解释

最近遇到一个sql如下

select i.client_id, ‘3’ status, ‘1’ exchange_type

from dev.openstock_active op, dev.prestock_account p, dev.preclient_info i where op.active_result = 1 and op.preengage_id = p.preengage_id(+) and p.preengage_id is null and op.preengage_id = i.preengage_id and p.exchange_type(+) = ‘1’ 其中 op.preengage_id = p.preengage_id(+) 为 left join 或 right join 的另一种写法。p.exchange_type(+) = ‘1’却 让我一下看懵了。经过大神的讲解。p.exchange_type(+) = ‘1’ 的 (+) 并不是表示 连接 1 这个字段 而是 作为 p表连接时的条件。将(+)这种写法还原成left join写法即可明白。举个简单的例子:①select * from a left join bon a.id = b.idwhere b.type =’1’这种情况是 a表先关联 b表 然后筛选出 b.type =‘1’的记录②select * from aleft join bon a.id =b.id and b.type =’1′

这种情况是 a表去关联 b表中b.type =’1’的记录

因此①②查询出的数量上并不相同。而最开始的p.exchange_type(+) = ‘1’ 这种写法 表示的就是 p.exchange_type = ‘1’ 这个条件是加在 on之后 而不是在where之后的。即原sql符合的情景应该是② 例子表达的意思。

(0)
上一篇 2022年3月22日
下一篇 2022年3月22日

相关推荐