Categories: Math
EXP
Calculates Euler's number, e, raised to the power of the specified value.
Syntax
EXP(numeric_expression NUMERIC) → FLOAT
- numeric_expression: The exponent value to raise e to. This must be an DOUBLE, INTEGER, or FLOAT.
Examples
EXP exampleSELECT EXP(1)
-- 2.718281828459045
SELECT EXP(10.0)
-- 22026.465794806718