LOG (Lakehouse v2)
Returns the logarithm of a number with a specified base.
Analyze Syntax
Section titled “Analyze Syntax”func.log(<base>, <x>)Analyze Examples
Section titled “Analyze Examples”func.log(10, 100)
┌─────┐│ 2.0 │└─────┘SQL Syntax
Section titled “SQL Syntax”LOG(<base>, <x>)SQL Examples
Section titled “SQL Examples”SELECT LOG(10, 100);
┌─────┐│ 2.0 │└─────┘