oracle中的plsql where (+)用SQL如何实现?

我请教一下,oracle中的plsql where (+)用SQL如何实现?
最新回答
酒爷

2024-05-02 07:42:12

左外连接用left join,右外连接用right join语句。

比如
Oracle:
select * from a, b where a.id=b.id(+)

SQL:
select * from a left join b on a.id=b.id

反过来a.id(+)=b.id 就是right join