exp,dexp
Returns the value of e raised to the power of x
. This function is called natural logarithms function.
Syntaxβ
EXP(x);
Parametersβ
x
: the power number. DOUBLE is supported.
Return valueβ
Returns a value of the DOUBLE data type.
Examplesβ
Return e raised to the power of 3.14:
mysql> select exp(3.14);
+--------------------+
| exp(3.14) |
+--------------------+
| 23.103866858722185 |
+--------------------+
1 row in set (0.01 sec)