You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Does php-sql-query-builder have support for nested joins?
I.e. Can it describe the following query:
SELECT*FROM t1
LEFT JOIN (t2, t3) ON (t1.a=t2.aANDt2.b=t3.b)
So the above is LEFT JOIN to the results of an INNER JOIN between t2 and t3. Note that this JOIN statement can also be described using standard SQL as LEFT JOIN (t2 CROSS JOIN t3).
The text was updated successfully, but these errors were encountered:
Does php-sql-query-builder have support for nested joins?
I.e. Can it describe the following query:
So the above is
LEFT JOIN
to the results of anINNER JOIN
betweent2
andt3
. Note that this JOIN statement can also be described using standard SQL asLEFT JOIN (t2 CROSS JOIN t3)
.The text was updated successfully, but these errors were encountered: