Oracle 11g的(+)與 left jion

字號(hào):


    select * from A left join B on A.id=B.id
    等同于
    select * from A,B where A.id=B.id(+)