| title | LOG10 (Transact-SQL) | ||||
|---|---|---|---|---|---|
| description | LOG10 (Transact-SQL) | ||||
| author | markingmyname | ||||
| ms.author | maghan | ||||
| ms.date | 03/06/2017 | ||||
| ms.service | sql | ||||
| ms.subservice | t-sql | ||||
| ms.topic | reference | ||||
| ms.custom |
|
||||
| f1_keywords |
|
||||
| helpviewer_keywords |
|
||||
| dev_langs |
|
||||
| monikerRange | >=aps-pdw-2016 || =azuresqldb-current || =azure-sqldw-latest || >=sql-server-2016 || >=sql-server-linux-2017 || =azuresqldb-mi-current || =fabric || =fabric-sqldb |
[!INCLUDE sql-asdb-asdbmi-asa-pdw-fabricse-fabricdw-fabricsqldb]
Returns the base-10 logarithm of the specified float expression.
:::image type="icon" source="../../includes/media/topic-link-icon.svg" border="false"::: Transact-SQL syntax conventions
LOG10 ( float_expression )
float_expression
Is an expression of type float or of a type that can be implicitly converted to float.
float
The LOG10 and POWER functions are inversely related to one another. For example, 10 ^ LOG10(n) = n.
The following example calculates the LOG10 of the specified variable.
DECLARE @var FLOAT;
SET @var = 145.175643;
SELECT 'The LOG10 of the variable is: ' + CONVERT(VARCHAR,LOG10(@var));
GO [!INCLUDEssResult]
The LOG10 of the variable is: 2.16189
(1 row(s) affected)
The following example returns the result of raising a base-10 logarithm to a specified power.
SELECT POWER (10, LOG10(5)); [!INCLUDEssResult]
-----------
5
(1 row(s) affected)
Examples: [!INCLUDEssazuresynapse-md] and [!INCLUDEssPDW]
The following example calculates the LOG10 of the specified value.
SELECT LOG10(145.175642); [!INCLUDEssResult]
-------------------
2.16
Mathematical Functions (Transact-SQL)
POWER (Transact-SQL)
LOG (Transact-SQL)