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

CBRT example
SELECT CBRT(8)
-- 2.0
CBRT example
SELECT CBRT(120)
-- 4.932424148660941
CBRT example
SELECT CBRT(99.5)
-- 4.633839922986558

Last updated