ISqlJoinBuilder.InnerJoin Method
.NET Standard 2.x
Uses the INNER 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 |
---|---|
InnerJoin(string table) | Uses the INNER JOIN operator to join the original table source and the new table source to create a joined table. |
InnerJoin(string table, string alias) | Uses the INNER 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. |
InnerJoin(string table, string alias, string schema) | Uses the INNER 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. |
InnerJoin(ISqlBuilder sqlBuilder, string alias) | Uses the INNER 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. |