Returns the value of e (the base of natural logarithms) raised to the power of X. The inverse of this function is LOG() (using a single argument only) or LN().
SELECT EXP(2);
7.3890560989307
SELECT EXP(-2);
0.13533528323661
SELECT EXP(0);
1
If X is NULL, this function returns NULL.
SELECT EXP(2);
7.3890560989307
SELECT EXP(-2);
0.13533528323661
SELECT EXP(0);
1