MySQL EXP() Function
THE WORLD'S LARGEST WEB DEVELOPER SITE

MySQL EXP() Function

❮ MySQL Functions

Example

Return e raised to the power of number:

SELECT EXP(1);
Try it Yourself »

Definition and Usage

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

e is the base of natural logarithms.

Note: See also the LOG() and LN() functions.

Syntax

EXP(number)

Parameter Values

Parameter Description
number Required. The power to raise e to (enumber)

Technical Details

Works in: MySQL 5.7, MySQL 5.6, MySQL 5.5, MySQL 5.1, MySQL 5.0, MySQL 4.1, MySQL 4.0, MySQL 3.23

More Examples

Example

Return e raised to the power of number:

SELECT EXP(2);
Try it Yourself »

❮ MySQL Functions