For the complete documentation index, see llms.txt. This page is also available as Markdown.

exp

This section contains reference documentation for the exp function.

Euler’s number(e) raised to the power of col.

Signature

EXP(col1)

Usage Examples

select EXP(1) AS value
from ignoreMe
value

2.718281828459045

select EXP(12) AS value
from ignoreMe
value

162754.79141900392

Was this helpful?