LOGN Function

The LOGN function returns the natural logarithm of a numeric argument.

This return value is the inverse of the exponential value that the EXP function returns from the same argument.

The following query returns the natural log of population for each row of the history table:
SELECT LOGN(population) FROM history WHERE country='US'
   ORDER BY date;