EXP(X) returns the value of e (the base of natural logarithms) raised to the power of X : EXP : Math Numeric Functions MySQL TUTORIALS


MySQL TUTORIALS » Math Numeric Functions » EXP »

 

EXP(X) returns the value of e (the base of natural logarithms) raised to the power of X


mysql>
mysql>
mysql> SELECT EXP(2);
+-----------------+
| EXP(2)          |
+-----------------+
7.3890560989307 |
+-----------------+
row in set (0.00 sec)

mysql> SELECT EXP(-2);
+------------------+
| EXP(-2)          |
+------------------+
0.13533528323661 |
+------------------+
row in set (0.00 sec)

mysql> SELECT EXP(0);
+--------+
| EXP(0|
+--------+
|      |
+--------+
row in set (0.00 sec)

mysql>



Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .

Follow Navioo On Twitter

MySQL TUTORIALS

 Navioo Math Numeric Functions
» EXP