Categories: Math
LOG10
Returns the log base 10 of the numeric input expression.
Syntax
LOG10(expression double) → double
- expression: The value for which you want to calculate the log.
Examples
LOG10 exampleSELECT LOG10(20.5)
-- 1.3117538610557542
LOG10(expression int64) → double
- expression: The value for which you want to calculate the log.
Examples
LOG10 exampleSELECT LOG10(100)
-- 2.0
LOG10(expression int32) → double
- expression: The value for which you want to calculate the log.
Examples
LOG10 exampleSELECT LOG10(100)
-- 2.0
LOG10(expression float) → double
- expression: The value for which you want to calculate the log.
Examples
LOG10 exampleSELECT LOG10(20.5)
-- 1.3117538610557542
Was this page helpful?
Glad to hear it! Thank you for your feedback.
Sorry to hear that. Thank you for your feedback.