ISqlJoinBuilder.FullJoin Method
.NET Standard 2.x
Uses the FULL OUTER JOIN
operator to join the original table source and the new table source to create a joined table.
Namespace: SnapObjects.Data
Assembly: SnapObjects.Data.dll
Overloads
Method | Description |
---|---|
FullJoin(string table) | Uses the FULL OUTER JOIN operator to join the original table source and the new table source to create a joined table. |
FullJoin(string table, string alias) | Uses the FULL OUTER JOIN operator to join the original table source and the new table source to create a joined table. You need to specify an alias for the new table source. |
FullJoin(string table, string alias, string schema) | Uses the FULL OUTER JOIN operator to join the original table source and the new table source to create a joined table. You need to specify a schema and an alias for the new table source. |
FullJoin(ISqlBuilder sqlBuilder, string alias) | Uses the FULL OUTER JOIN operator to join the original table source and the new table source (specified by a subquery generated by an ISqlBuilder object) to create a joined table. You need to specify an alias for the new table source. |