EXP
Represents the SQLite EXP() function, which computes e (Euler's number, approximately 2.71828) raised to the power of the input value.
This is the inverse of the natural logarithm function LN().
Return
A KQLiteColumn with the result of e^x. Returns null if the input is null or if the result is too large to be represented as a floating-point number (overflow).
Author
MOHAMMAD AZIM ANSARI
Parameters
x
The column containing the exponent value.