- Categories:
Numeric functions (Exponent and Root)
EXPÂļ
Computes Eulerâs number e
raised to a floating-point value.
SyntaxÂļ
EXP( <real_expr> )
ExamplesÂļ
SELECT EXP(1), EXP(LN(10)); -------------+-------------+ EXP(1) | EXP(LN(10)) | -------------+-------------+ 2.718281828 | 10 | -------------+-------------+