LOG10

Returns the base-10 logarithm of x. If x is less than or equal to 0.0E0, the function returns NULL.

Analyze Syntax

func.log10( <x> )

Analyze Examples

func.log10(100)

┌─────────────────┐
 func.log10(100) 
├─────────────────┤
               2 
└─────────────────┘

SQL Syntax

LOG10( <x> )

SQL Examples

SELECT LOG10(100);

┌────────────┐
 log10(100) 
├────────────┤
          2 
└────────────┘
Last modified April 23, 2024 at 12:42 PM EST: updating numerical functions (2a94341)