For the complete documentation index, see llms.txt. This page is also available as Markdown.

CBRT

This page describes the CBRT function in Lenses SQL.

CBRT(numExpr)

Returns the cube root of numExpr.

Available in:

Processors
SQL Studio

Sample code:

USE `kafka`;
SELECT 
    CBRT(integer),
    integer 
FROM numbers-data
LIMIT 1;

Output:

{
  "value": {
    "CBRT": "25.483906287370523",
    "integer": 16550
  }
}

Last updated

Was this helpful?