thank you for the explanation. Does that mean that the result of the first join is passed to the next. What is happening with the null rows , what good are they?
Hello everybody,
I have to following query
SELECT DISTINCT A0.*
FROM Mail A0
INNER JOIN MailTo2Contact A1 ON A0.id=A1.mailid
INNER JOIN Contact A2 ON A1.contactId=A2.id
LEFT OUTER JOIN MailCc2Contact A3 ON A0.id=A3.mailid
LEFT OUTER JOIN Contact A4 ON A3.contactId=A4.id
LEFT OUTER...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.