Kategorien:

Numerische Funktionen (Exponent und Wurzel)

CBRT

Gibt die kubische Wurzel eines numerischen Ausdrucks zurück.

Syntax

CBRT( <input_expr> )
Copy

Returns

If the input expression is of type DECFLOAT, the returned type is DECFLOAT. Otherwise, the returned type is FLOAT.

Beispiele

SELECT x, CBRT(x) FROM tab;

--------+-------------+
   x    |   cbrt(x)   |
--------+-------------+
 0      | 0           |
 2      | 1.25992105  |
 -10    | -2.15443469 |
 [NULL] | [NULL]      |
--------+-------------+
Copy