CBRT

Returns the cube root of the argument.

Returns the cube root of the argument. The return value has the type DOUBLE PRECISION.

Behavior type

Immutable

Syntax

CBRT ( expression )

Parameters

expression
Value of type DOUBLE PRECISION

Examples

SELECT CBRT(27.0);
 cbrt
------
    3
(1 row)