Package wt.query
Class SetOperator
java.lang.Object
wt.query.SQLOperator
wt.query.SetOperator
- All Implemented Interfaces:
Serializable
This class represents a Set Operator.
This class defines the following static final Set Operators: UNION, UNION_ALL,
INTERSECT, and MINUS.
Supported API: true
Extendable: false
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final SetOperatorSpecifies a INTERSECT set operator.static final SetOperatorSpecifies a MINUS set operator.static final SetOperatorSpecifies a UNION set operator.static final SetOperatorSpecifies a UNION ALL set operator. -
Method Summary
-
Field Details
-
UNION
Specifies a UNION set operator.
Supported API: true -
UNION_ALL
Specifies a UNION ALL set operator.
Supported API: true -
INTERSECT
Specifies a INTERSECT set operator.
Supported API: true -
MINUS
Specifies a MINUS set operator.
Supported API: true
-