GUYS I KNOW (+) MEANS OUTER JOIN
SELECT *
FROM email a,email_types b
WHERE a.user_id (+) =10
AND a.email_id(+)=b.email_enum;
SELECT *
FROM email a,email_types b
WHERE a.user_id =10
AND a.email_id(+)=b.email_enum;
What is the meaning of a.user_id (+) = 10
? Is this equal to a.user_id =10
, or do they have a different meaning?
What is the difference between the two queries?
a.user_id (+) =10
is matched with which column b
. The value 10 is matched with column of b
table?