Loading...
This page describes the CBRT function in Lenses SQL.
CBRT(numExpr)
Returns the cube root of numExpr.
Available in:
Sample code:
USE `kafka`; SELECT CBRT(integer), integer FROM numbers-data LIMIT 1;
Output:
{ "value": { "CBRT": "25.483906287370523", "integer": 16550 } }
✓