Skip to content

Powers, roots and logarithms

RETURN SQRT(9) AS root, POWER(2, 3) AS power, LOG(10, 100) AS logarithm, LOG10(100) AS common, LN(1) AS natural, EXP(0) AS exponential;

LOG takes its base before its value. Function arity is represented by the parser; numeric domain and overflow behavior are not promised without an execution implementation.

See supported features for executable alternatives.