Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Applies to: Databricks SQL
Databricks Runtime
Returns the logarithm of expr
with base 10
.
log10(expr)
expr
: An expression that evaluates to a numeric.
A DOUBLE.
If expr
is less than or equal to 0 the result is NULL.
> SELECT log10(10);
1.0