LOG

Returns the logarithm of a number with a specified base.

Analyze Syntax

func.log(<base>, <x>)

Analyze Examples

func.log(10, 100)

┌─────┐
 2.0  
└─────┘

SQL Syntax

LOG(<base>, <x>)

SQL Examples

SELECT LOG(10, 100);

┌─────┐
 2.0  
└─────┘