Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.firebolt.io/llms.txt

Use this file to discover all available pages before exploring further.

Returns the cubic-root of a non-negative numeric expression.

Syntax

CBRT(<value>);

Parameters

ParameterDescriptionSupported input types
<value>Value that the CBRT function is applied toDOUBLE_PRECISION

Return Type

DOUBLE_PRECISION

Example

The following example returns the cubic-root of 8:
SELECT
    CBRT(8);
Returns 2