Exp

The Exp() function calculates the e-number raised to the power n, where n is an number.

This function is NOT SQL compatible. For more information about SQL compatibility, see our documentation.

Returns a number. Returns Invalid expression if the parameter is not a valid number.

Syntax

Exp(number)

Exp(10) => 22026.4657948067

Exp() => Invalid expression

Parameters

NameTypeRequiredDescription

number

numeric

a numeric value.

Examples

Function callResult

Exp(0)

1

Exp(-0.6)

0.548812

Exp(-1000)

0

Exp(10)

22026.4658

Last updated