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
CBRT exampleSELECT CBRT(8)
-- 2.0
SELECT CBRT(120)
-- 4.932424148660941
SELECT CBRT(99.5)
-- 4.633839922986558