Instance Method
join(_:method:on:)
Include the given table in the list of those used by the query, performing an explicit join using the given method and condition(s). Tables are joined left to right.
@discardableResult func join(_ table: String, method: SQLJoinMethod = .inner, on expression: any SQLExpression) -> Self
Parameters
tableThe name of the table to join.
methodThe join method to use.
expressionA string containing a join condition.