Table 127. Numeric Scalar Functions
Returns the average (arithmetic mean) of values in a number column. The average includes null values when calculating the arithmetic mean. Avg example | |
Returns the average (arithmetic mean) of values in a number column, excluding null values. AvgNonNull example | |
Returns the largest value in a column of numbers. ColMax example | |
Returns the smallest value in a column of number. ColMin example | |
Counts and returns the number of rows in a column. Count example | |
Counts and returns the number of values in a column. CountDistinct example | |
Counts the number of rows in a column. CountNonNull example | |
Counts the number of rows in a column that contains null values. CountNull example | |
Returns a cumulative running total for each value in a column of numbers. Cume example | |