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
DOUBLE
,INTEGER
, orFLOAT
.
Examples
SELECT EXP(1)
-- 2.718281828459045
SELECT EXP(10.0)
-- 22026.465794806718
Last updated
Was this helpful?