Hi Vamsi,
The (+) indicates the inner table which is filled with NULLs. This should be the same in ANSI syntax:
select address.address_id,address.state,dim_tab.src_system,di m_tab.dim_last_mdfd_dt
from address LEFT JOIN dim_tab
ON dim_tab.src_system='rama' and
address.address_id=dim_tab.ods_addr_id and
address.state=dim_tab.STBe careful, more complex queries might be hard to translate. because there are different rules for Oracle and ANSI syntax.
Dieter
↧