LOG10

Represents the SQLite LOG10() function, which computes the base-10 logarithm of a number.

This function is a specific case of LOG(X). The input value must be positive.

Return

A KQLiteColumn with the base-10 logarithm of the value. Returns null if the input is null or non-positive (<= 0).

Author

MOHAMMAD AZIM ANSARI

Parameters

x

The column containing the value. Must be greater than 0.

See also