LOG10

Description

Returns the base 10 logarithm of a number (LOG10 in Transact-SQL).

Sample Source Pattern

Syntax

LOG10( expression )

Arguments

expression: Numeric expression, must be positive.

Return Type

Float.

Examples

SELECT LOG10(5)

Last updated