Returns the base-10 logarithm of the specified float expression.
LOG10 ( float_expression )
float_expression
Is an expression of type float or of a type that can be implicitly converted to float.
float
SELECT POWER (10, LOG10(5));
Functions