oracle实现left join的两种写法

select * from a,b where a.id=b.id(+);--该写法的执行效率高
select * from a left join b on a.id=b.id;
posted @ 2013-05-11 15:50  顿金  阅读(2247)  评论(0编辑  收藏  举报