Calculate and return the logarithm of 2 to the base 10.
SELECT LOG10(2); |
The LOG10() function calculates the base-10 logarithm of a number.
Note: Consider using the LOG() function for natural logarithms.
LOG10(number) |
Parameter |
Description |
number |
Required: A numeric value that is greater than zero. |
Works in: |
SQL Server (beginning from 2008), Azure SQL Database, Azure SQL Data Warehouse, and Parallel Data Warehouse |
Calculate and return the logarithm of 4.5 with base 10.
SELECT LOG10(4.5); |