Enum AggregationFunctionCallType
Describes the available aggregation function types.
Namespace: TimeCockpit.Data.QueryLanguage.Syntax
Assembly: TimeCockpit.Data.dll
Syntax
public enum AggregationFunctionCallType
Fields
Name | Description |
---|---|
Avg | Calculates the average value of the elements. |
Count | Calculates the count of the objects. |
CountDistinct | Counts the number of distinct elements. |
Max | Retrieves the maximum value of elements. |
Min | Retrieves the minimum value of the elements. |
Sum | Aggregates the sum over the elements. |