Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

Oracle SIGN() function

Description

The SIGN() returns the sign of an argument.

This function is used to return the sign of a given number. This function takes as an argument any numeric data type and any nonnumeric data can also comes in the argument but that can be implicitly converted to number and returns number.

The function returns:

  • 1 when the value of the argument is positive
  • -1 when the value of the argument is negative
  • 0 when the value of the argument is 0

For binary floating-point numbers (BINARY_FLOAT and BINARY_DOUBLE), this function returns the sign bit of the number. The sign bit is:

  • -1 if n<0
  • +1 if n>=0 or n=NaN

Syntax:

SIGN(n)

Parameters:

Name Description
n A number whose sign is to be retrieved.

Pictorial Presentation of SIGN() function

Pictorial Presentation of Oracle SIGN() function

Example:

SELECT SIGN(-145), SIGN(0), SIGN(145) FROM dual;

Here is the result.

SIGN(-145)    SIGN(0)  SIGN(145)
---------- ---------- ----------
        -1          0          1

The above statement will return the sign of given numbers -145, 0 and 145.

Previous: ROUND
Next: SIN