C-Sharp | Java | Python | Swift | GO | WPF | Ruby | Scala | F# | JavaScript | SQL | PHP | Angular | HTML
MySQL EXP() FunctionThe exp() is a Math function of MySQL. This function is used to find e raised to the power of number i.e. enumber. Syntax
select exp(number); Parameter
Number : It is the number to be raised in e. ReturnsThis function returns e raised to the power of a number. Example 1
Select exp(11); Output:
Example 2Select exp(1); Output:
Example 3Select exp(-3); Output:
Next TopicMySQL Math
|