EXP Function

Description

The EXP function returns ex (the base of natural logarithm) raised to a power.

Syntax

EXP( x )

Example

SELECT EXP(1), EXP(0);

  exp(1)                    exp(0)

====================================================

  2.718281828459045e+000 1.000000000000000e+000

 

SELECT EXP(-1), EXP(2.00);

  exp(-1)                 exp(2.00)

====================================================

  3.678794411714423e-001 7.389056098930650e+000