SELECT *
FROM TAB1
LEFT JOIN TAB2 ON TAB2.ID_TAB1 = TAB1.ID
JOIN TAB3 ON TAB3.ID = TAB2.ID_TAB3;
and
SELECT *
FROM TAB1
LEFT JOIN (SELECT *
FROM TAB2
JOIN TAB3 ON TAB3.ID = TAB2.ID_TAB3) T
ON T.ID_TAB1 = TAB1.ID;
|
|
|
No, they are different - the inner join to TAB3 (after the left join to TAB2) in the first query effectively turns the left join back into an inner join. The brackets in the second query ensure that the inner join to TAB3 is evaluated before the left join - so it remains a left join to TAB2, returning only those TAB2 records where there is a corresponding TAB3 record (otherwise, the TAB1 records are returned with corresponding NULLs). |
|||||||||||||||
|
|
What you might want is:
In your first query, after you have the Whereas in the above query, I've introduced a Just has to download, install Oracle Express. This script:
Worked, and ran as expected. It might be easier to think about what this query does if you think of Or, another equal way, would be to consider each join clause to be "open" until its corresponding Either way, in the above query, the first |
|||||||||||
|