Tuesday 2 August 2016

EXP: Get Exponent of a number


EXP function takes a number and return exponent to that number.


mysql> SELECT EXP(5);
+-------------------+
| EXP(5)            |
+-------------------+
| 148.4131591025766 |
+-------------------+
1 row in set (0.00 sec)

mysql> SELECT EXP(5.1);
+-------------------+
| EXP(5.1)          |
+-------------------+
| 164.0219072999017 |
+-------------------+
1 row in set (0.00 sec)


Previous                                                 Next                                                 Home

No comments:

Post a Comment