Skip to main content
Returns the REAL value of the constant e raised to the power of a specified number.

Syntax

EXP(<value>)

Parameters

ParameterDescriptionSupported input types
<value>base value with the power of the constant eDOUBLE PRECISION

Return Type

DOUBLE PRECISION

Example

The following example takes in the value 2 to the power of e:
SELECT EXP(2);
exp double
7.38905609893065

Rows: 1Execution time: 2.09ms