Syntax
EXP(X)
Purpose
You can call this function to return 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 (0.00 sec)
obclient> SELECT EXP(0);
+--------+
EXP(0)
+--------+
1
+--------+
1 row in set (0.00 sec)
obclient> SELECT EXP(-2);
+--------------------+
EXP(-2)
+--------------------+
0.1353352832366127
+--------------------+
1 row in set (0.00 sec)