Expand description
Concrete implementations of aggregate functions
Structsยง
- AvgFunction
- AVG(column) - averages numeric values
- Count
Function - COUNT(column) - counts non-null values
- Count
Star Function - COUNT(*) - counts all rows including nulls
- MaxFunction
- MAX(column) - finds maximum value
- Median
Function - MEDIAN(column) - finds the median value
- MinFunction
- MIN(column) - finds minimum value
- Mode
Function - MODE(column) - finds the most frequently occurring value
- Percentile
Function - PERCENTILE(column, percentile) - finds the nth percentile value
- StdDev
Function - STDDEV(column) - computes population standard deviation
- String
AggFunction - STRING_AGG(column, separator) - concatenates strings with separator
- SumFunction
- SUM(column) - sums numeric values
- Variance
Function - VARIANCE(column) - computes population variance