Categories:

Numeric functions (Exponent and Root)

EXP¶

Computes Euler’s number e raised to a floating-point value.

Syntax¶

EXP( <real_expr> )
Copy

Examples¶

SELECT EXP(1), EXP(LN(10));
-------------+-------------+
   EXP(1)    | EXP(LN(10)) |
-------------+-------------+
 2.718281828 | 10          |
-------------+-------------+
Copy