exp
Description
Syntax:
DOUBLE exp(DOUBLE x)
This function returns e
to the power of x
.
Example
mysql> select exp(2);
+------------------+
| exp(2.0) |
+------------------+
| 7.38905609893065 |
+------------------+
mysql> select exp(3.4);
+--------------------+
| exp(3.4) |
+--------------------+
| 29.964100047397011 |
+--------------------+
Keywords
EXP