Syntax
EXP(X)
Purpose
EXP() returns the value of e (the base of natural logarithms) raised to the power of X.
Examples
obclient> SELECT EXP(2);
+------------------+
| EXP(2) |
+------------------+
| 7.38905609893065 |
+------------------+
1 row in set
obclient> SELECT EXP(0);
+--------+
| EXP(0) |
+--------+
| 1 |
+--------+
1 row in set
obclient> SELECT EXP(-2);
+--------------------+
| EXP(-2) |
+--------------------+
| 0.1353352832366127 |
+--------------------+
1 row in set