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)
No comments:
Post a Comment