CBRT
Computes the cube root of a numeric expression.
Syntax
CBRT(numeric_expression NUMERIC) → FLOAT
numeric_expression: The number (
DOUBLE
,FLOAT
,INTEGER
) used to compute the cube root.
Examples
SELECT CBRT(8)
-- 2.0
SELECT CBRT(120)
-- 4.932424148660941
SELECT CBRT(99.5)
-- 4.633839922986558
Last updated
Was this helpful?