[]
Defines the set of supported aggregate functions (see Aggregate).
public enum AggregateFuncEnum
Name | Description |
---|---|
Average | Returns the average of values of the expression within the scope. |
Count | Returns the count of values of the expression within the scope. |
CountDistinct | Returns the count of distinct values of the expression within the scope. |
First | Returns the first (in the sorted sequence) value of the expression within the scope. |
Last | Returns the last (in the sorted sequence) value of the expression within the scope. |
Max | Returns the maximum of values of the expression within the scope. |
Min | Returns the minimum of values of the expression within the scope. |
StDev | Returns the standard deviation of values of the expression within the scope. |
StDevP | Returns the population standard deviation of values of the expression within the scope. |
Sum | Returns the sum of values of the expression within the scope. |
Var | Returns the variance of values of the expression within the scope. |
VarP | Returns the population variance of values of the expression within the scope. |