LOG10: returns the base 10 logarithm of this parameter as a float value : Log10 « Math Functions « SQL Server / T-SQL






LOG10: returns the base 10 logarithm of this parameter as a float value


45> -- LOG10: returns the base 10 logarithm of this parameter as a float value.
46>
47> SELECT LOG10(5.67)
48> GO

------------------------
     0.75358305889290655

(1 rows affected)
           
       








Related examples in the same category

1.Use Log10