Skip to content

EXP

  • x: This parameter represents a numeric expression for which the exponential value will be found. EXP(X) returns the value of the function e raised to the power of X, where e is the base of natural logarithms and X is the input argument.
SELECT EXP(1);
2.718281828459045

The EXP function in SQL returns the natural exponential value of the given number. In the above case, it returns the natural exponential value of 1 which is approximately 2.718281828459045.