LOG10 (Lakehouse v1)
Returns the base-10 logarithm of x. If x is less than or equal to 0.0E0, the function returns NULL.
Analyze Syntax
Section titled “Analyze Syntax”func.log10( <x> )Analyze Examples
Section titled “Analyze Examples”func.log10(100)
┌─────────────────┐│ func.log10(100) │├─────────────────┤│ 2 │└─────────────────┘SQL Syntax
Section titled “SQL Syntax”LOG10( <x> )SQL Examples
Section titled “SQL Examples”SELECT LOG10(100);
┌────────────┐│ log10(100) │├────────────┤│ 2 │└────────────┘