SELECT *
FROM
daaddress ad,
(daname nam LEFT OUTER JOIN daenttonam etn on nam.entity_id = etn.entity_id)
I don’t understand what the two “tables” seperated by a comma with no JOIN statement is supposed to do. Is it a FULL?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
It outputs the cartesian product between
daadressand aLEFT JOINofdanameanddaenttonam.Using
JOINsyntax, it can be rewritten as:The parens may be omitted:
It’s hard to tell its purpose not being aware of the model specifics.