Left Join unioned group query
I have created a unioned query that refers to the same table three times
I have then group the whole lot into one set of brackets (see picture)
how do I left join this with the rest of my query
So I end up with something like
Select Something From myBigTable
Left Join (Q union all Q union all Q)
Thanks
The GlobalIndent seems to have no effect
The IndentInPart does have an effect and indents the From parts a bit
Ideally in the future you want an indent for the subquery as a whole i.e everything between the brackets
SELECT F1,G2
FROM xyztable
Inner join .....
left join
-----(Select j1,y2
-----From
-----Where)
Where .... etc
Not urgent