LN function
The LN function is an alias for the LOGN function, and returns the natural logarithm of a numeric argument. This value is the inverse of the exponential value.
The following query returns the natural logarithm
of population for each row in the history table:
SELECT LN(population) FROM history WHERE country='US'
ORDER BY date;