Enum SetOperator
Namespace: LemonEdge.Utils.Database
Assembly: Utils.dll
Syntax
public enum SetOperator : short
Fields
Name | Description |
---|---|
Except | Returns distinct values from the query left of the except operator that are not also found on the right query |
Intersect | Returns distinct values that are returned by both the query on the left and right sides of the intersect operator |
Union | Returns distinct values that are returned from the query on the left and right sides of the union operator |
UnionAll | Returns all values that are returned from the query on the left and right sides of the union all operator |