SQL EXP Function

Example

Return e raised to the power of 1:

SELECT EXP(1);

Definition and Usage

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

The constant e (2.718281…), is the base of natural logarithms.

Note: See also the LOG() function.

Syntax

EXP(number)

Continue reading SQL EXP Function