Protocol
SQLJoinBuilder
Common definitions for any query builder which permits specifying joins.
protocol SQLJoinBuilder : AnyObject
Topics
Instance Properties
joinsThe set of joins to be applied to the query.
Instance Methods
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.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.join(_:method:using:)Include the given table in the list of those used by the query, performing an explicit join using the given method and columns. Tables are joined left to right.
Relationships
Inherited By
Conforming Types
See Also
Builder Protocols
SQLAliasedColumnListBuilderCommon definitions for query builders which permit specifying aliased column names.SQLColumnUpdateBuilderCommon definitions for query builders which support assigning values to columns.SQLPartialResultBuilderCommon definitions for any query builder which permits specifying range and ordering behaviors.SQLPredicateBuilderCommon definitions for any query builder which permits specifying a primary predicate.SQLQueryBuilderBase definitions for builders which set up queries and execute them against a given database.SQLQueryFetcherCommon definitions forSQLQueryBuilders which support retrieving result rows.SQLReturningBuilderCommon definitions for any query builder which can return values from data-mutating queries.SQLSecondaryPredicateBuilderCommon definitions for any query builder which permits specifying a secondary predicate.SQLSubqueryClauseBuilderA builder which can construct - but not execute - a completeSELECTquery. Useful for building CTEs,CREATE TABLE ... SELECTclauses, etc., not to mention actualSELECTqueries.SQLUnqualifiedColumnListBuilderCommon definitions for query builders which permit or require specifying a list of unqualified column names.