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
positive
This function is used to return the value of a.
Syntax
positive(INT a)
Parameters
Parameter |
Mandatory |
Type |
Description |
---|---|---|---|
a |
Yes |
DOUBLE, BIGINT, DECIMAL, or STRING |
The value can be a float, integer, or string. |
Return Values
The return value is of the DECIMAL, DOUBLE, or INT type.
Example Code
The value 3 is returned.
SELECT positive(3);
The value -3 is returned.
SELECT positive(-3);
The value 123 is returned.
SELECT positive('123');
Parent topic: Mathematical Functions