Home >> MySql >> How To Find e raised to the power of the specified number in MySql

How To Find e raised to the power of the specified number in MySql

The EXP() function returns e(2.718281828459045) raised to the power of the specified number.

Example-1

SELECT EXP(1);

Output

2.718281828459045

Example-2

SELECT EXP(2);

Output

7.38905609893065

Post Your Comment

Next Questions
How to find a value extracted from a date
How to find a value extracted from a date or datetime
How to find a value extracted from an internal value

Copyright ©2022 coderraj.com. All Rights Reserved.