TSQLJoin.Create Constructor
Overloads
TSQLJoin.Create
Creates an empty TSQLJoin with no relations or conditions set.
Syntax
Unit: Aurelius.Sql.BaseTypes
constructor TSQLJoin.Create;
See also
TSQLJoin.Create(TSQLRelation, TSQLRelation, TJoinType)
Creates a TSQLJoin between the specified left and right relations with the given join type.
Syntax
Unit: Aurelius.Sql.BaseTypes
constructor TSQLJoin.Create(Left: TSQLRelation; Right: TSQLRelation; JoinType: TJoinType = TJoinType.Inner);
Parameters
| <-> | Parameter | Type | Description |
|---|---|---|---|
| Left | TSQLRelation | The left-hand relation in the join. | |
| Right | TSQLRelation | The right-hand relation in the join. | |
| JoinType | TJoinType | Optional: Default value is TJoinType.Inner The type of join to generate; defaults to Inner. |