Suppose there is one condition,
(+) =
i know (+) used in join of column but what does it mean in this condition
Suppose there is one condition,
(+) =
i know (+) used in join of column but what does it mean in this condition
 
    
    The Oracle (+)= syntax is the equivalent for OUTER JOINS.
a.column (+)= b.column
means "retrieve the record from b even if there is no match with a" (RIGH OUTER JOIN)
a.column = b.column (+)
means "retrieve the record from a even if there is no match with b" (LEFT OUTER JOIN)
