For the complete documentation index, see llms.txt. This page is also available as Markdown.

Logarithmic Functions

Calculate logarithms using various bases for numerical analysis.

LN( <expr> )

Computes the natural logarithm of a numeric expression. Expression should be greater than 0

Support datatype: Integer, Double

> select ln(-7)
nan

> select ln(10)
2.302585092994046

Last updated