
- SQL Tutorial
- SQL - Home
- SQL - Overview
- SQL - RDBMS Concepts
- SQL - Databases
- SQL - Syntax
- SQL - Data Types
- SQL - Operators
- SQL - Expressions
- SQL Database
- SQL - Create Database
- SQL - Drop Database
- SQL - Select Database
- SQL - Rename Database
- SQL - Show Databases
- SQL - Backup Database
- SQL Table
- SQL - Create Table
- SQL - Show Tables
- SQL - Rename Table
- SQL - Truncate Table
- SQL - Clone Tables
- SQL - Temporary Tables
- SQL - Alter Tables
- SQL - Drop Table
- SQL - Delete Table
- SQL - Constraints
- SQL Queries
- SQL - Insert Query
- SQL - Select Query
- SQL - Select Into
- SQL - Insert Into Select
- SQL - Update Query
- SQL - Delete Query
- SQL - Sorting Results
- SQL Views
- SQL - Create Views
- SQL - Update Views
- SQL - Drop Views
- SQL - Rename Views
- SQL Operators and Clauses
- SQL - Where Clause
- SQL - Top Clause
- SQL - Distinct Clause
- SQL - Order By Clause
- SQL - Group By Clause
- SQL - Having Clause
- SQL - AND & OR
- SQL - BOOLEAN (BIT) Operator
- SQL - LIKE Operator
- SQL - IN Operator
- SQL - ANY, ALL Operators
- SQL - EXISTS Operator
- SQL - CASE
- SQL - NOT Operator
- SQL - NOT EQUAL
- SQL - IS NULL
- SQL - IS NOT NULL
- SQL - NOT NULL
- SQL - BETWEEN Operator
- SQL - UNION Operator
- SQL - UNION vs UNION ALL
- SQL - INTERSECT Operator
- SQL - EXCEPT Operator
- SQL - Aliases
- SQL Joins
- SQL - Using Joins
- SQL - Inner Join
- SQL - Left Join
- SQL - Right Join
- SQL - Cross Join
- SQL - Full Join
- SQL - Self Join
- SQL - Delete Join
- SQL - Update Join
- SQL - Left Join vs Right Join
- SQL - Union vs Join
- SQL Keys
- SQL - Unique Key
- SQL - Primary Key
- SQL - Foreign Key
- SQL - Composite Key
- SQL - Alternate Key
- SQL Indexes
- SQL - Indexes
- SQL - Create Index
- SQL - Drop Index
- SQL - Show Indexes
- SQL - Unique Index
- SQL - Clustered Index
- SQL - Non-Clustered Index
- Advanced SQL
- SQL - Wildcards
- SQL - Comments
- SQL - Injection
- SQL - Hosting
- SQL - Min & Max
- SQL - Null Functions
- SQL - Check Constraint
- SQL - Default Constraint
- SQL - Stored Procedures
- SQL - NULL Values
- SQL - Transactions
- SQL - Sub Queries
- SQL - Handling Duplicates
- SQL - Using Sequences
- SQL - Auto Increment
- SQL - Date & Time
- SQL - Cursors
- SQL - Common Table Expression
- SQL - Group By vs Order By
- SQL - IN vs EXISTS
- SQL - Database Tuning
- SQL Function Reference
- SQL - Date Functions
- SQL - String Functions
- SQL - Aggregate Functions
- SQL - Numeric Functions
- SQL - Text & Image Functions
- SQL - Statistical Functions
- SQL - Logical Functions
- SQL - Cursor Functions
- SQL - JSON Functions
- SQL - Conversion Functions
- SQL - Datatype Functions
- SQL Useful Resources
- SQL - Questions and Answers
- SQL - Quick Guide
- SQL - Useful Functions
- SQL - Useful Resources
- SQL - Discussion
SQL - SIGN() Function
The SQL SIGN() function is used to determine whether a number is positive, negative, or zero.
Assume we have a table with a column that stores the value in both negative and positive integers. Then, to detect the positive and negative numbers, we can use the SIGN() function.
The SIGN() function returns the sign of a number, in the form of an integer which could be -1, 1 or, 0.
If the specified number is a negative value this function returns -1.
If the specified number is a positive value this function returns 1.
If the specified number is 0 (neither negative nor positive) this function returns 0.
Syntax
Following is the syntax of the SQL SIGN() function −
SELECT SIGN(x) AS Alias_Name;
where x can be a negative, positive, or zero integer.
Following is the SIGN() function syntax to use in the table −
SELECT SIGN(column_name) AS Aliase_Name FROM table_name;
Where column_name is the name of an integer-valued column in a table.
Example
Following is an example of the SIGN() function. In here we are passing a positive value as a parameter.
Following is the query −
SELECT SIGN(1234) AS sign_of_pos_value;
Output
Following is the output of the above SQL query, which is 1 if the value passed is positive.
+-------------------+ | sign_of_pos_value | +-------------------+ | 1 | +-------------------+
Example
Following is an example of the SIGN() function. In here we are passing a negative value as a parameter.
Following is the query −
SELECT SIGN(-1234) AS sign_of_neg_value;
Output
Following is the output of the above SQL query, which is -1 if the value passed is negative.
+-------------------+ | sign_of_pos_value | +-------------------+ | -1 | +-------------------+
Example
Following is an example of the SIGN() function. In here we are passing a zero as a parameter.
Following is the query −
SELECT SIGN(0) AS sign_of_zero;
Output
Following is the output of the above SQL query, which is 0 if the value passed is zero.
+--------------+ | sign_of_zero | +--------------+ | 0 | +--------------+
Example
In the following example, we are fetching the name and finding the account balance which employee has negative or which has positive balance from the emp_tbl. Let’s create a table named emp_tbl −
Create table emp_tbl (ID INT NOT NULL, NAME VARCHAR(20), ACCOUNT_BL NUMERIC);
Let’s insert n data into table −
insert into emp_tbl values(1, 'Raja', 1200); insert into emp_tbl values(2, 'Vivek', 1500); insert into emp_tbl values(3, 'Roja', -1500); insert into emp_tbl values(4, 'Lukha', -1700); insert into emp_tbl values(5, 'Sonal', 1800);
Let’s fetch the table details.
SELECT * FROM emp_tbl;
Following is the emp_tbl −
+----+-------+------------+ | ID | NAME | ACCOUNT_BL | +----+-------+------------+ | 1 | Raja | 1200 | | 2 | Vivek | 1500 | | 3 | Roja | -1500 | | 4 | Lukha | -1700 | | 5 | Sonal | 1800 | +----+-------+------------+
Following is the query −
SELECT NAME, SIGN(ACCOUNT_BL) FROM emp_tbl;
Output
Following is the output of the above query, which shows the name and which employee has an account balance or does not. If an employee has a positive sign value, they have a positive account balance. They have no account balance if they have a negative sign value.
+-------+------------------+ | NAME | SIGN(ACCOUNT_BL) | +-------+------------------+ | Raja | 1 | | Vivek | 1 | | Roja | -1 | | Lukha | -1 | | Sonal | 1 | +-------+------------------+