This function is used to return the value of a.
positive(INT 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 DECIMAL, DOUBLE, or INT type.
If the value of a is NULL, NULL is returned.
The value 3 is returned.
SELECT positive(3);
The value -3 is returned.
SELECT positive(-3);
The value 123 is returned.
SELECT positive('123');