Represents a condition predicate for the EXISTS keyword.
Default constructor
public Void ExistsPredicate()
Initializes a new instance of ExistsPredicate.
public Void ExistsPredicate(rel, subquery)
Name | Type | Summary |
---|---|---|
rel | RelationalOperator | The relation between predicates. |
subquery | SelectStatement | A SelectStatementfor the sub query. |
Initializes a new instance of ExistsPredicate.
public Void ExistsPredicate(rel, subquery, negate)
Name | Type | Summary |
---|---|---|
rel | RelationalOperator | The relation between predicates. |
subquery | SelectStatement | A SelectStatementfor the sub query. |
negate | Boolean | true if the predicate should be negated. |
Initializes a new instance of ExistsPredicate.
public Void ExistsPredicate(rel, subquery, negate, useParenthesis)
Name | Type | Summary |
---|---|---|
rel | RelationalOperator | The relation between predicates. |
subquery | SelectStatement | A SelectStatementfor the sub query. |
negate | Boolean | true if the predicate should be negated. |
useParenthesis | Boolean | Indicates if the clause must be enclosed in parenthesis. |
Initializes a new instance of ExistsPredicate.
public Void ExistsPredicate(subquery)
Name | Type | Summary |
---|---|---|
subquery | SelectStatement | A SelectStatementfor the sub query. |
Initializes a new instance of ExistsPredicate.
public Void ExistsPredicate(subquery, negate)
Name | Type | Summary |
---|---|---|
subquery | SelectStatement | A SelectStatementfor the sub query. |
negate | Boolean | true if the predicate should be negated. |
Initializes a new instance of ExistsPredicate.
public Void ExistsPredicate(subquery, negate, useParenthesis)
Name | Type | Summary |
---|---|---|
subquery | SelectStatement | A SelectStatementfor the sub query. |
negate | Boolean | true if the predicate should be negated. |
useParenthesis | Boolean | Indicates if the clause must be enclosed in parenthesis. |
Indicates whether the predicate must be negated.
public Boolean Negate { get; set; }
The sub query for the exists clause
public SelectStatement SubQuery { get; set; }
In this document