Specifies the type of join to use when querying multiple class instances (tables). This class is used when constructing SQL
statements with the SearchSQL class. The join type and behavior is that
of the corresponding ANSI/ISO SQL99-compliant joins.
Namespace:
FileNet.Api.Constants
Assembly:
FileNet.Api (in FileNet.Api.dll)
Syntax
| Visual Basic (Declaration) |
|---|
Public Enumeration JoinOperator |
| C# |
|---|
public enum JoinOperator |
| Visual C++ |
|---|
public enum class JoinOperator |
| JavaScript |
|---|
FileNet.Api.Constants.JoinOperator = function(); FileNet.Api.Constants.JoinOperator.createEnum('FileNet.Api.Constants.JoinOperator', false); |
Members
| Type | Member name | Description |
|---|---|---|
| RIGHT_OUTER |
Indicates a right outer join.
| |
| FULL_OUTER |
Indicates a full outer join.
| |
| INNER |
Indicates an inner join.
| |
| LEFT_OUTER |
Indicates a left outer join.
|