% | Returns the remainder of the two numbers |
* | Multiplies the two numbers |
+ | Adds the two numbers |
- | Subtracts the two numbers |
/ | Divides the two numbers |
abs | Returns the absolute value of the input |
acos | Returns the inverse cosine value |
approx_count_distinct | Returns the estimated cardinality by HyperLogLog++ |
approx_percentile | Returns the approximate percentile value at the given percentage |
asin | Returns the inverse sine value |
atan | Returns the inverse tangent value |
atan2 | Returns the angle between the positive x-axis plane and the points given by the coordinates |
avg | Returns the average value |
cbrt | Returns the cube root |
ceil or ceiling | Returns the smallest integer not larger than the inputted value |
conv | Convert from one base to another |
corr | Returns the Pearson coefficient between the numbers |
cos | Returns the cosine value |
cosh | Returns the hyperbolic cosine value |
cot | Returns the cotangent value |
dense_rank | Returns the rank of a value in a group of values |
e | Returns Euler’s number |
exp | Returns e to the power of the value |
expm1 | Returns e to the power of the value minus 1 |
factorial | Returns the factorial of the value |
floor | Returns the largest integer not smaller than the value |
greatest | Returns the largest value of all the parameters |
hypot | Returns the hypotenuse of the two values given |
kurtosis | Returns the kurtosis value from the group |
least | Returns the smallest value of all the parameters |
ln | Returns the natural logarithm of the value |
log | Returns the logarithm of the value |
log10 | Returns the logarithm, in base 10, of the value |
log1p | Returns the logarithm of the value plus 1 |
log2 | Returns the logarithm, in base 2, of the value |
max | Returns the maximum value of the expression |
mean | Returns the mean calculated from the values |
min | Returns the minimum value of the expression |
monotonically_increasing_id | Returns monotonically increasing IDs |
negative | Returns the negated value |
percent_rank | Returns the percentage ranking of a value |
percentile | Returns the exact percentile at a given percentage |
percentile_approx | Returns the approximate percentile at a given percentage |
pi | Returns pi |
pmod | Returns the positive modulo between two values |
positive | Returns the positive value |
pow , power | Returns the first value to the power of the second value |
radians | Converts the value to radians |
rand | Returns a random number from 0 through 1 |
randn | Returns a random value |
rint | Returns the closest double value |
round | Returns the closest rounded value |
sign , signum | Returns the number’s sign |
sin | Returns sine of the value |
sinh | Returns hyperbolic sine of the value |
sqrt | Returns the square root of the value |
stddev | Returns the standard deviation of the value |
sttdev_pop | Returns the population standard deviation of the value |
stddev_samp | Returns the sample standard deviation of the value |
sum | Returns the sum of the values |
tan | Returns tangent of the value |
tanh | Returns hyperbolic tangent of the value |
var_pop | Returns the calculated population variance |
var_samp , variance | Returns the calculated sample variance |