SqlExpression LN
From Eigenpedia
Contents |
Syntax
LN( numeric_expression )
Purpose
Returns the natural logarithm for numeric_expression
Input
- numeric_expression - input to the natural logarithm function (base e logarithm)
Output
- [NUMERIC] - output of the natural log function. Returns null on null input. If input is 0 or negative, exception is raised.
Example
| Function | Result |
|---|---|
| LN(2.71828) | 0.999999327347282 |
| LN(100) | 4.605170185988092 |

