I would like to make a LEFT JOIN between table t1 and
the result of a JOIN between t2 and t3.
mathematically, I would write
t1 LEFT JOIN ( t2 JOIN t3)
In SQL, I only know how to make
t1 LEFT JOIN t2 ... LEFT JOIN t3
or
t1 LEFT JOIN t2 ... JOIN t3
But this doesn't give me the expected result.
How could I do this
t1 LEFT JOIN ( t2 JOIN t3)
Thanks for your help