GroupByBehavior Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Specifies the relationship between the columns in a GROUP BY clause and the non-aggregated columns in the select-list of a SELECT statement.
public enum class GroupByBehavior
public enum GroupByBehavior
type GroupByBehavior =
Public Enum GroupByBehavior
- Inheritance
Fields
Name | Value | Description |
---|---|---|
Unknown | 0 | The support for the GROUP BY clause is unknown. |
NotSupported | 1 | The GROUP BY clause is not supported. |
Unrelated | 2 | There is no relationship between the columns in the GROUP BY clause and the nonaggregated columns in the SELECT list. You may group by any column. |
MustContainAll | 3 | The GROUP BY clause must contain all nonaggregated columns in the select list, and can contain other columns not in the select list. |
ExactMatch | 4 | The GROUP BY clause must contain all nonaggregated columns in the select list, and must not contain other columns not in the select list. |
Remarks
The GroupByBehavior values are mutually exclusive.