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