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 │
└─────┘
Returns the logarithm of a number with a specified base.
func.log(<base>, <x>)
func.log(10, 100)
┌─────┐
│ 2.0 │
└─────┘
LOG(<base>, <x>)
SELECT LOG(10, 100);
┌─────┐
│ 2.0 │
└─────┘