LOG10
Returns the base-10 logarithm of a number.
Analyze Syntax
func.log10(<x>)
Analyze Examples
func.log10(1000)
┌─────┐
│ 3.0 │
└─────┘
SQL Syntax
LOG10(<x>)
SQL Examples
SELECT LOG10(1000);
┌─────┐
│ 3.0 │
└─────┘
Returns the base-10 logarithm of a number.
func.log10(<x>)
func.log10(1000)
┌─────┐
│ 3.0 │
└─────┘
LOG10(<x>)
SELECT LOG10(1000);
┌─────┐
│ 3.0 │
└─────┘