Skip to content

Support for Nested Joins? #117

@courtney-miles

Description

@courtney-miles

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.a AND t2.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).

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions