CBRT

Returns the cube root of a number.

Analyze Syntax

func.cbrt(<x>)

Analyze Examples

func.cbrt(27)

┌─────┐
 3.0  
└─────┘

SQL Syntax

CBRT(<x>)

SQL Examples

SELECT CBRT(27);

┌─────┐
 3.0  
└─────┘