forked from docs/doc-exports
Reviewed-by: Pruthi, Vineet <vineet.pruthi@t-systems.com> Co-authored-by: Su, Xiaomeng <suxiaomeng1@huawei.com> Co-committed-by: Su, Xiaomeng <suxiaomeng1@huawei.com>
4.8 KiB
4.8 KiB
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. |
Example Code
The value 3 is returned.
select cbrt(27);
The value 3.3019272488946267 is returned.
select cbrt(36);
The value NULL is returned.
select cbrt(null);
Parent topic: Mathematical Functions