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 │
└─────┘
Returns the cube root of a number.
func.cbrt(<x>)
func.cbrt(27)
┌─────┐
│ 3.0 │
└─────┘
CBRT(<x>)
SELECT CBRT(27);
┌─────┐
│ 3.0 │
└─────┘