Curriculum
Course: SQL
Login

Curriculum

SQL

SQL References

0/80

MySQL Functions

0/139

SQL Server Functions

0/84

SQL Quick Ref

0/1
Text lesson

LOG10

Example

Calculate and return the logarithm of 2 to the base 10.

SELECT LOG10(2);

Definition and Usage

The LOG10() function calculates the base-10 logarithm of a number.

Note: Consider using the LOG() function for natural logarithms.

Syntax

LOG10(number)

Parameter Values

Parameter

Description

number

Required: A numeric value that is greater than zero.

Technical Details

Works in:

SQL Server (beginning from 2008), Azure SQL Database, Azure SQL Data Warehouse, and Parallel Data Warehouse

More Examples

Example

Calculate and return the logarithm of 4.5 with base 10.

SELECT LOG10(4.5);