If I was to have a SQL query as such:
SELECT * FROM tableA a
INNER JOIN TABLEB b on a.item = b.item
INNER JOIN TABLEC c on a.item = c.item
LEFT JOIN TABLED d on d.item = c.item
Am I right in assuming the following:
- Firstly, Table A is joined with Table B
- Table C is joined with Table A independently of statement 1
- Table D is left joined with table C indepdendently of Statement 1 and 2
- The results of statement 1,2 and 3 and listed all together from the select