VistaDB 6
VistaDB / Developer's Guide / SQL Reference / Functions / Mathematical Functions / SIGN
In This Topic
SIGN
In This Topic
Returns the positive, zero, or negative sign of the input value.


Example

SELECT SIGN(-10), SIGN(0), SIGN(32)

RETURNS:  -1,  0,  1
See Also