SQL LOG10 Function

Example

Return the base-10 logarithm of 2:

SELECT LOG10(2);

Definition and Usage

The LOG10() function returns the natural logarithm of a number to base 10.

Note: Also look at the LOG() function.

Syntax

LOG10(number)

Continue reading SQL LOG10 Function