Question about Outerjoin:
I set outjoin in both Access db and oracle db, when I check the sql of both Query, it looks difference.
In Access 2000:
select T1.`Alert_Level`, T1.`Report_ID`, T1.`Subject`, T2.`Report_Type`
from (`NewMessage` T1 LEFT OUTER JOIN `ReportList` T2 on T1.`Report_ID` = T2.`Report_ID`)
In Oracle 8.1.7:
select T1."MANDT" "c1", T1."KUNNR" "c2", T2."SPART" "c3"
from "SAPR3"."KNA1" T1, "SAPR3"."TSPAT" T2
where T1."MANDT"=T2."MANDT"(+) and T1."SPRAS"=T2."SPRAS"(+)
So why in access it use the words Left outer join, but in oracle it use (+) as the signal of outer join?
Pls help
I set outjoin in both Access db and oracle db, when I check the sql of both Query, it looks difference.
In Access 2000:
select T1.`Alert_Level`, T1.`Report_ID`, T1.`Subject`, T2.`Report_Type`
from (`NewMessage` T1 LEFT OUTER JOIN `ReportList` T2 on T1.`Report_ID` = T2.`Report_ID`)
In Oracle 8.1.7:
select T1."MANDT" "c1", T1."KUNNR" "c2", T2."SPART" "c3"
from "SAPR3"."KNA1" T1, "SAPR3"."TSPAT" T2
where T1."MANDT"=T2."MANDT"(+) and T1."SPRAS"=T2."SPRAS"(+)
So why in access it use the words Left outer join, but in oracle it use (+) as the signal of outer join?
Pls help