Sorry for the silly question... :)
I found this statement in a query:
select * from table a, table b WHERE a.id =b.id(+)
What does the plus between brackets mean?
Thank you
Sorry for the silly question... :)
I found this statement in a query:
select * from table a, table b WHERE a.id =b.id(+)
What does the plus between brackets mean?
Thank you
this is outer join and this query is equal to -
SELECT
A.ID,
B.anycol
FROM A LEFT OUTER JOIN B ON A.ID = B.ID