ISqlJoinBuilder.RightJoin Method
.NET Standard 2.x
Creates a table by joining the original table source with a new table source using the RIGHT OUTER JOIN operator.
Namespace: SnapObjects.Data
Assembly: SnapObjects.Data.dll
Overloads
| Method | Description |
|---|---|
| RightJoin(string table) | Creates a table by joining the original table source with a new table source using the RIGHT OUTER JOIN operator. |
| RightJoin(string table, string alias) | Creates a table by joining the original table source with a new table source using the RIGHT OUTER JOIN operator. You need to specify an alias for the new table source. |
| RightJoin(string table, string alias, string schema) | Creates a table by joining the original table source with a new table source using the RIGHT OUTER JOIN operator. You need to specify a schema and an alias for the new table source. |
| RightJoin(ISqlBuilder sqlBuilder, string alias) | Creates a table by joining the original table source with a new table source (specified by a subquery generated by an ISqlBuilder object) using the RIGHT OUTER JOIN operator. You need to specify an alias for the new table source. |