ln
This section contains reference documentation for the ln function.
Natural log of value i.e. ln(col1)
Signature
LN(col1)
Usage Examples
select ln(1) AS value
from ignoreMe
value
0
select ln(12) AS value
from ignoreMe
value
2.4849066497880004
Was this helpful?