SqlJoinType, represents the two join types we support.
Namespace: P4s3FilterToolsAssembly: P4s3FilterTools (in P4s3FilterTools.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
Members
Member name | Value | Description | |
---|---|---|---|
NONE | -1 | Represents an empty or unknown join type. | |
INNER | 1 | Inner join returns all rows from the left table, andthe matched row from the right table. | |
LEFT | 2 | Left join returns all rows from the left table, and the matched rows from the right table. | |
RIGHT | 3 | Right join returns all rows from the right table, and the matched rows from the left table. | |
FULL | 4 | Returns all rows when there is a match in one of the tables. |
See Also