LOG10

Learn how to use the LOG10 math function in PlaidCloud Lakehouse. Returns the base-10 logarithm of a number - see syntax, examples, and output.

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  
└─────┘