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.7 KiB
4.7 KiB
sqrt
This function is used to return the square root of a value.
Syntax
sqrt(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 2.8284271247461903 is returned.
select sqrt(8);
The value 4 is returned.
select sqrt(16);
The value NULL is returned.
select sqrt(null);
Parent topic: Mathematical Functions