Math Functions
The following list shows available mathematical functions:
Name | Description |
---|---|
CEIL() | Returns the smallest integer that is greater than or equal to a number. |
CEILING() | Same as CEIL(). |
FLOOR() | Returns the largest integer that is smaller than or equal to a number. |
POW() | Calculates power value. |
POWER() | Same as POW(). |
ROUND() | Returns the round integer of a number. |
SQRT() | Computes square root. |
POW
pow(base, exponent)
POW function calculates the value of base raised to the power exponent.
SQRT
sqrt(expression)
SQRT function returns the square root of given expression.