cbrt
This function is used to return the cube root of a.
Syntax
cbrt(DOUBLE a)
Parameters
Parameter |
Mandatory |
Type |
Description |
---|---|---|---|
a |
Yes |
DOUBLE, BIGINT, DECIMAL, or STRING |
The value can be a float, integer, or string. If the value is not of the DOUBLE type, the system will implicitly convert it to the DOUBLE type for calculation. |
Return Values
The return value is of the DOUBLE type.
If the value of a is NULL, NULL is returned.
Example Code
select cbrt(27);
select cbrt(36);
select cbrt(null);
Feedback
Was this page helpful?
Provide feedbackThank you very much for your feedback. We will continue working to improve the documentation.