oracle 的left join和(+)真的能夠起到同樣的效果嗎?

 select * from a,b where a.id=b.id(+);    --左鏈接,a表爲主     from tableA, tableB where a.xx=b.xx(+) select * from a left join b on a.id=b.id;  --   tableA left join tableB on a.xxx=b.xxx緩存 不少資料說上面兩個語句的效
相關文章
相關標籤/搜索