CBRT
Learn how to use the CBRT math function in PlaidCloud Lakehouse. Returns the cube root of a number - see syntax, examples, and output.
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 │
└─────┘