This function is used to return the positive and negative signs corresponding to a.
sign(DOUBLE a)
Parameter |
Mandatory |
Type |
Description |
---|---|---|---|
a |
Yes |
DOUBLE, BIGINT, DECIMAL, or STRING |
The value can be a float, integer, or string. |
The return value is of the DOUBLE type.
The value -1 is returned.
select sign(-3);
The value 1 is returned.
select sign(3);
The value 0 is returned.
select sign(0);
The value 1 is returned.
select sign(3.1415926);
The value NULL is returned.
select sign(null);