CBRT (Lakehouse v1)
Returns the cube root of a nonnegative number x.
Analyze Syntax
Section titled “Analyze Syntax”func.cbrt( <x> )Analyze Examples
Section titled “Analyze Examples”func.cbrt(27)
┌───────────────┐│ func.cbrt(27) │├───────────────┤│ 3 │└───────────────┘SQL Syntax
Section titled “SQL Syntax”CBRT( <x> )SQL Examples
Section titled “SQL Examples”SELECT CBRT(27);
┌──────────┐│ cbrt(27) │├──────────┤│ 3 │└──────────┘