Oracle® OLAP DML Reference 10g Release 2 (10.2) Part Number B14346-01 |
|
|
View PDF |
The SIGN function returns a value that indicates when a specified number is less than, equal to, or greater than 0
(zero).
Return Value
INTEGER. SIGN returns -1
when n<0
, 0
(zero) when n=0
, or 1
when n>0
.
Syntax
SIGN (n)
Arguments
A numeric expression.
Examples
The following example indicates that the function's argument (-15
) is less than 0
(zero).
SHOW SIGN(-15) -1