TAggregateFunction Enumeration
Identifies the aggregate SQL function to apply to a select field.
Syntax
Unit: Aurelius.Sql.BaseTypes
Members
| Name | Value | Description |
|---|---|---|
| Count | 0 | Applies the COUNT aggregate function. |
| Sum | 1 | Applies the SUM aggregate function. |
| Average | 2 | Applies the AVG aggregate function. |
| Max | 3 | Applies the MAX aggregate function. |
| Min | 4 | Applies the MIN aggregate function. |
| List | 5 | Applies a list or string-aggregation function (e.g., GROUP_CONCAT). |