Apache Pinot Docs
latest
Search
⌃K

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
Last modified 1yr ago