Enum AggregateType
- Namespace
- YndigoBlue.Velocity.Enums
- Assembly
- YndigoBlue.Velocity.dll
Specifies SQL aggregate functions for summarizing data.
public enum AggregateType
Fields
Count = 1Counts the number of rows or non-NULL values.
Sum = 2Calculates the sum of numeric values.
Average = 3Calculates the arithmetic mean of numeric values.
Min = 4Returns the minimum value.
Max = 5Returns the maximum value.
StdDev = 6Calculates the standard deviation of numeric values.
Variance = 7Calculates the variance of numeric values.
Remarks
Aggregate functions perform calculations on a set of values and return a single value. They are commonly used with GROUP BY clauses to summarize data.