I'm going through some older code, and one query is laid out in the following manner:
FROM (A INNER JOIN (B LEFT JOIN C ON B.ID2 = C.ID2) ON A.ID1= B.ID1)
I'm confused as to how this would actually be processed? What's the difference between the above and below?
FROM A
INNER JOIN B ON A.ID1 = B.ID1
LEFT JOIN C on B.ID2 = C.ID2