Skip to main content
Version: 0.0.1

CBRT

Categories: Math

CBRT

Computes the cube root of a numeric expression

Syntax

CBRT(numeric_expression NUMERIC) → FLOAT

  • numeric_expression: The number (DOUBLE, FLOAT, INTEGER) for which you want to compute the cube root.

Examples

{{< codeheader "CBRT example" >}}

SELECT CBRT(8)
-- 2.0

{{< codeheader "CBRT example" >}}

SELECT CBRT(120)
-- 4.932424148660941

{{< codeheader "CBRT example" >}}

SELECT CBRT(99.5)
-- 4.633839922986558