You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|[AVERAGE](#average)| Returns the average (arithmetic mean) of all parameters. If a parameter is of type _ARRAY_, the average of all elements is calculated. |
18
-
|[CEILING](#ceiling)| Rounds the given value to the nearest integer using the rounding mode CEILING |
19
-
|[COALESCE](#coalesce)| Returns the first non-null parameter, or NULL if all parameters are null|
20
-
|[FACT](#fact)| Calculates the factorial of a base value |
21
-
|[FLOOR](#floor)| Rounds the given value to the nearest integer using the rounding mode FLOOR |
22
-
|[IF](#if)| Conditional evaluation function. Returns one value or another, depending on a given condition. |
23
-
|[LOG](#log)| The natural logarithm (base e) of a value |
24
-
|[LOG10](#log10)| The base 10 logarithm of a value |
25
-
|[MAX](#max)| Returns the maximum value of all parameters. If a parameter is of type _ARRAY_, the maximum of all elements is calculated. |
26
-
|[MIN](#min)| Returns the minimum value of all parameters. If a parameter is of type _ARRAY_, the minimum of all elements is calculated. |
27
-
|[NOT](#not)| Boolean negation, implemented as a function (for compatibility) |
28
-
|[RANDOM](#random)| Produces a random value between 0 and 1 |
29
-
|[ROUND](#round)| Rounds the given value to the specified scale, using the current rounding mode |
30
-
|[SQRT](#sqrt)| Returns the square root of a given number |
31
-
|[SUM](#sum)| Returns the sum of all parameters. If a parameter is of type _ARRAY_, the sum of all elements is calculated. |
32
-
|[SWITCH](#switch)| Returns the result correponding to the first matching value in the specified expression or an optional default value if no match found. |
|[AVERAGE](#average)| Returns the average (arithmetic mean) of all parameters. If a parameter is of type _ARRAY_, the average of all elements is calculated. |
18
+
|[CEILING](#ceiling)| Rounds the given value to the nearest integer using the rounding mode CEILING |
19
+
|[COALESCE](#coalesce)| Returns the first non-null parameter, or NULL if all parameters are null. If a parameter is of type ARRAY, returns the first non-null element.|
20
+
|[FACT](#fact)| Calculates the factorial of a base value |
21
+
|[FLOOR](#floor)| Rounds the given value to the nearest integer using the rounding mode FLOOR |
22
+
|[IF](#if)| Conditional evaluation function. Returns one value or another, depending on a given condition. |
23
+
|[LOG](#log)| The natural logarithm (base e) of a value |
24
+
|[LOG10](#log10)| The base 10 logarithm of a value |
25
+
|[MAX](#max)| Returns the maximum value of all parameters. If a parameter is of type _ARRAY_, the maximum of all elements is calculated. |
26
+
|[MIN](#min)| Returns the minimum value of all parameters. If a parameter is of type _ARRAY_, the minimum of all elements is calculated. |
27
+
|[NOT](#not)| Boolean negation, implemented as a function (for compatibility) |
28
+
|[RANDOM](#random)| Produces a random value between 0 and 1 |
29
+
|[ROUND](#round)| Rounds the given value to the specified scale, using the current rounding mode |
30
+
|[SQRT](#sqrt)| Returns the square root of a given number |
31
+
|[SUM](#sum)| Returns the sum of all parameters. If a parameter is of type _ARRAY_, the sum of all elements is calculated. |
32
+
|[SWITCH](#switch)| Returns the result correponding to the first matching value in the specified expression or an optional default value if no match found. |
0 commit comments