CBRT

Returns the cube root of a nonnegative number x.

Analyze Syntax

func.cbrt( <x> )

Analyze Examples

func.cbrt(27)

┌───────────────┐
 func.cbrt(27) 
├───────────────┤
             3 
└───────────────┘

SQL Syntax

CBRT( <x> )

SQL Examples

SELECT CBRT(27);

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