Skip to content

Returns the cube root of a nonnegative number x.

func.cbrt( <x> )
func.cbrt(27)
┌───────────────┐
│ func.cbrt(27) │
├───────────────┤
3
└───────────────┘
CBRT( <x> )
SELECT CBRT(27);
┌──────────┐
│ cbrt(27) │
├──────────┤
3
└──────────┘