Exponential and Root Functions
POWER( <expr1>, <expr2> )
Returns the value of expr1
raised to the power of expr2.
FACTORIAL( <expr>)
Computes the factorial of its input
Supported datatype: Integer
NOTE - The input must be an integer expression within the inclusive range of 0 to 20.
CBRT( <expr> )
Calculates the cubic root of a numerical value.
Support datatype: Integer, Double
SQRT( <expr> )
Calculates the square root of a numerical value.
Support datatype: Integer, Double
EXP( <expr> )
Calculates the exponential function of a floating-point value, with Euler's number e as the base
Support datatype: Integer, Double
Last updated