EXP
returns the exponential value of a number.
The formula used is y = ex where e is 2.718281.
This example returns the exponent of the specified value.
SELECT EXP(2) AS Exponent
Exponent |
---|
7.38905609893065 |
Syntax of the EXP function.
EXP(value)
value
-- the x value in the formula above.