LN
Purpose
This function returns the natural logarithm of number n
. The function LN(n)
is equivalent to LOG(EXP(1),n)
.
Syntax
ln::=
Usage Notes
The specified number n
must be greater than 0
.
Example
Copy
SELECT LN(100) LN;