Click or drag to resize

AggregateType Enumeration

Aggregate types specifying what type of aggregation should be used, per field, in the aggregate row of a Datasheet.

Namespace:  NetQuarry.Data
Assembly:  EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax
public enum AggregateType
Members
  Member nameValueDescription
None0Do not include this column in any aggregation calculation.
Sum10Calculate the sum of all values in this column.
Avg20Calculate the average (arithmetic mean) of all values in this column.
Min30Use the minimum value in this column.
Max40Use the maximum value in this column.
Count50Count the number of non-null values in this column.
CountDistinct60Count the number of distinct, non-null values in this column.
StDev70Calculate the statistical standard deviation of all the values in the column.
StDevP80Calculate the statistical standard deviation for the population of all values in the column.
Var90Calculate the statistical variance of all values in the column.
VarP100Calculate the statistical variance for the population of all values in the column.
Range110Compose the range of minimum and maximum values in the column.
AvgAndSum120Calculate the average and sum of all values in this column.
SumBig11Calculate the sum of all values in this column increasing data type max for the case where the aggregate overflows the normal data type.
AvgAndSumBig121Calculate the average and sum of all values in this column increasing data type max for the case where the aggregate overflows the normal data type.
Difference122Calculate the difference between the MAX and MIN values in the column. If specified on a date/time column the results will be formatted as a duration.
CountStar130Count the total number of records in the query - uses COUNT(*).
See Also