运算符(+)vs左外连接

时间:2018-06-11 09:55:34

标签: sql oracle

我有以下sql查询:

select d.c3
from table1 a,
     table2 b,
     table3 e,
     table4 d
where a.c1(+) = b.c1 AND d.c1(+) = e.c1 and e.c2 (+) = b.c2

我想将加号运算符(+)更改为左连接或任何其他连接运算符。

请帮忙吗?

0 个答案:

没有答案