カテゴリ:

数値関数 (指数とルート)

CBRT

数値式の3乗ルートを返します。

構文

CBRT( <input_expr> )
Copy

Returns

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

SELECT x, CBRT(x) FROM tab;

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