[转]Oracle left join \ right join

select 1 from a,b where a.id=b.id(+)

等同于 a left join b on a.id=b.id

select 1 from a,b where a.id(+)=b.id

等同于 a right join b on a.id=b.id

在 MS SQL 中,写作 *= 和 =*

 

来自:http://www.cnblogs.com/yeyerl/p/7682081.html

posted on 2018-12-29 11:41  z5337  阅读(162)  评论(0编辑  收藏  举报