EDUCBA

EDUCBA

MENUMENU
  • Free Tutorials
  • Free Courses
  • Certification Courses
  • 360+ Courses All in One Bundle
  • Login

SQL NULLIF()

Home » Data Science » Data Science Tutorials » SQL Tutorial » SQL NULLIF()

SQL NULLIF()

Introduction to SQL NULLIF()

NULLIF() is a comparison function in standard query language (SQL) that takes two expressions as arguments and returns NULL if the two expressions are equal. The data type of the NULL value returned is the same as the first expression. If the expressions are not equal to each other, NULLIF() returns the first expression. This function can be considered as a special case of CASE statements where the statement returns NULL if two given expressions are equal, else returns the first expression.

We should note that NULLIF() function is not supported in all SQL databases. It is currently supported in SQL Server, Azure SQL server, and Parallel databases only.

Start Your Free Data Science Course

Hadoop, Data Science, Statistics & others

Syntax and parameters:

The basic syntax for using NULLIF() function in SQL is as follows :

NULLIF(first_expression,second_expression);

The parameters used in the above syntax are as follows :

  • First_expression: Any valid scalar expression
  • Second_expression: Any valid scalar expression

Since we have already mentioned that the NULLIF() function is a special case of CASE statements, here is an illustration of NULLIF as a case statement.

CASE WHEN first_expression = second_expression
THEN NULL
ELSE
first_expression
END;

Popular Course in this category
JDBC Training (6 Courses, 7+ Projects)6 Online Courses | 7 Hands-on Projects | 37+ Hours | Verifiable Certificate of Completion | Lifetime Access
4.5 (5,676 ratings)
Course Price

View Course

Related Courses
PHP Training (5 Courses, 3 Project)Windows 10 Training (4 Courses, 4+ Projects)SQL Training Program (7 Courses, 8+ Projects)PL SQL Training (4 Courses, 2+ Projects)Oracle Training (14 Courses, 8+ Projects)

Having discussed the syntax, let us try some examples using NULLIF() to understand it in great detail.

Examples of SQL NULLIF()

Let us discuss examples of SQL NULLIF().

Example #1: Simple SQL query to illustrate NULLIF() functionality using two integer type arguments.

Declare @X Int, @Y Int
Select @X = 1, @Y = 2
Select NULLIF(@X, @Y) [Result];

SQL NULLIF() 1

The case statement equivalent to the above NULLIF() function is as follows :

CASE WHEN X = Y
THEN NULL
ELSE
X
END;

In the above code snippet, we have passed X =1 and Y = 2 as arguments to NULLIF() function. Since they are not equal, the function returns the first expression i.e. value of X. Next, let us try to pass equal values of X and Y.

Declare @X Int, @Y Int
Select @X = 2, @Y = 2
Select NULLIF(@X, @Y) [Result];

SQL NULLIF() 2

When we pass equal arguments, the NULLIF() function returns NULL.

Example #2: Simple SQL query to illustrate NULLIF() functionality using two VARCHAR type arguments.

Declare @Fruit_1 VARCHAR(255), @Fruit_2 VARCHAR(255)
Select @Fruit_1 = 'Apple', @Fruit_2 = 'Oranges'
Select NULLIF(@Fruit_1, @Fruit_2) [Result];

SQL NULLIF() 3

The case statement equivalent to the above NULLIF() function is as follows :

CASE WHEN Fruit_1 = Fruit_2
THEN NULL
ELSE
Fruit_1
END;

In the code snippet, since the values of arguments are not the same, the function returns the first expression that is fruit_1.

Declare @Fruit_1 VARCHAR(255), @Fruit_2 VARCHAR(255)
Select @Fruit_1 = 'Apple', @Fruit_2 = 'Apple'
Select NULLIF(@Fruit_1, @Fruit_2) [Result];

SQL NULLIF() 4

When we pass equal arguments, the NULLIF() function returns NULL.

By now we have got a decent understanding of the NULLIF() function. But to put this understanding to some usage, here are some more examples to illustrate the use of NULLIF() function in real business problems.

Let us first create a table called “sales” that contains details of sales made by a salesperson. We will use it for illustration purposes. You may use the following code snippet for creating the said table.

CREATE TABLE sales
(
salesperson_id integer NOT NULL,
salesperson character varying(255) NOT NULL,
store_state character varying(255) NOT NULL,
sales_target numeric NOT NULL,
sales_current numeric NOT NULL,
);

SQL NULLIF() 5

Having successfully created the table, let us now insert some random records in it to use in examples. You may use the following code snippet to perform the task.

INSERT INTO sales
([salesperson_id] ,[salesperson] ,[store_state] ,[sales_target] ,[sales_current])
VALUES
(101,'Danish K','KA',10000,10000),
(102,'Rashmi Sharma','DL',23000,18000),
(103,'Mohak Patel','MH',21000,21000),
(104,'Devika Ramaswamy','TN',10000,8000),
(105,'Reema Ray','WB',0,10000);

After a few insertion operations, the data in the sales table looks something like this :

SELECT * FROM sales;

SQL NULLIF() 6

Example #3: SQL query to return sales target of a salesperson who has not achieved his or her target.

SELECT
salesperson,
NULLIF(sales_target,sales_current) AS 'target to be achieved'
FROM sales;

example 3-1

In this example, we have used NULLIF to return a null value if the salesperson has completed his or her targets and return sales_target for the ones who are yet to complete theirs.

Example #4: SQL query to return average sales target for the salesperson who has not achieved their sales target.

SELECT
AVG(COALESCE(NULLIF(sales_target,sales_current),0.00))
AS 'Avg target to be achieved'
FROM sales;

example 4-1

In the above example, we have first used NULLIF to return a null value if the salesperson has completed his or her targets and return sales_target for the ones who are yet to complete theirs. Then used COALESCE to convert “NULL” into (0.00) and then finally applied the AVG summary function.

Example #5: SQL query to return the remaining sales target for each salesperson.

SELECT salesperson,
((COALESCE(NULLIF(sales_target,sales_current),sales_target))-sales_current)
AS 'targets to be achieved'
FROM sales;

example 5-1

In the previous examples, we have straightforwardly considered sales targets without considering the current status of sales targets met by the individual salesperson. But in this example, we have tried to calculate the remaining target by using the NULLIF. We can do it right away by subtracting sales_current from sales_target. But it has been done this way to illustrate use of NULLIF() along with COALESCE function.

Conclusion

NULLIF() is a flow control function that takes two arguments and examines if the given arguments are equal or not. If they are equal, it returns NULL value of data type similar to the first argument otherwise returns the first expression.

Recommended Articles

This is a guide to SQL NULLIF(). Here we discuss Introduction, syntax, parameters, and Examples with code implementation. You can also go through our other related articles to learn more –

  1. SQL DELETE
  2. SQL Compare String
  3. SQL LAG()
  4. SQL UPDATE Trigger

All in One Data Science Bundle (360+ Courses, 50+ projects)

360+ Online Courses

50+ projects

1500+ Hours

Verifiable Certificates

Lifetime Access

Learn More

0 Shares
Share
Tweet
Share
Primary Sidebar
SQL Tutorial
  • Functions
    • SQL Date Function
    • SQL String Functions
    • SQL Compare String
    • SQL Window Functions
    • SQL Timestamp
    • SQL TO_DATE()
    • SQL DATEADD()
    • ANY in SQL
    • LIKE Query in SQL
    • BETWEEN in SQL
    • LTRIM() in SQL
    • TOP in SQL
    • SQL Select Top
    • Merge SQL
    • SQL TRUNCATE()
    • SQL UNION
    • SQL ALL
    • SQL INTERSECT
    • SQL Alias
    • SQL Server Substring
    • CUBE in SQL
    • SQL RANK()
    • SQL CTE
    • SQL LAG()
    • SQL MID
    • SQL avg()
    • SQL WEEK
    • SQL DELETE
    • SQL DATEPART()
    • SQL DECODE()
    • SQL DENSE_RANK()
    • SQL NTILE()
    • SQL NULLIF()
    • SQL Stuff
    • SQL Ceiling
    • SQL EXISTS
    • SQL LEAD()
    • SQL ROW_NUMBER
    • SQL Server Replace
    • T-SQL INSERT
    • SQL Ranking Function
  • Basic
    • What is SQL
    • Careers in SQL
    • Careers in SQL Server
    • IS SQL Microsoft?
    • SQL Management Tools
    • What is SQL Developer
    • Uses of SQL
    • How to Install SQL Server
    • What is SQL Server
    • Database in SQL
    • SQL Data Types
    • SQL Keywords
    • Composite Key in SQL
    • SQL Constraints
    • Transactions in SQL
    • First Normal Form
    • SQL Server Data Types
    • SQL Administration
    • SQL Variables
    • Cheat sheet SQL
  • Operators
    • SQL Operators
    • SQL Arithmetic Operators
    • SQL Logical Operators
    • SQL String Operators
    • Ternary Operator in SQL
  • Commands
    • SQL Commands
    • SQL Alter Command
    • SQL Commands Update
    • SQL DML Commands
    • FETCH in SQL
  • Clause
    • SQL Clauses
    • SQL IN Operator
    • SQL LIKE Clause
    • SQL NOT Operator
    • SQL Minus
    • SQL WHERE Clause
    • SQL with Clause
    • SQL HAVING Clause
    • GROUP BY clause in SQL
    • ORDER BY Clause in SQL
    • SQL ORDER BY CASE
    • SQL ORDER BY DATE
    • SQL ORDER BY Alphabetical
    • SQL ORDER BY Ascending
    • SQL GROUP BY Month
    • SQL GROUP BY Multiple Columns
    • SQL GROUP BY DAY
    • SQL GROUPING SETS
  • Queries
    • SQL Insert Query
    • SQL SELECT Query
    • SQL SELECT RANDOM
    • SQL Except Select
    • SQL Subquery
    • SQL SELECT DISTINCT
    • SQL WITH AS Statement
  • Keys
    • SQL Keys
    • Primary Key in SQL
    • Foreign Key in SQL
    • Unique Key in SQL
    • Alternate Key in SQL
  • Joins
    • Join Query in SQL
    • Types of Joins in SQL
    • Types of Joins in SQL Server
    • SQL Inner Join
    • SQL Join Two Tables
    • SQL Delete Join
    • SQL Left Join
    • SQL Right Join
    • SQL Cross Join
    • SQL Outer Join
    • SQL Full Join
    • SQL Self Join
    • Natural Join SQL
    • SQL Multiple Join
  • Advanced
    • Aggregate Functions in SQL
    • IF ELSE Statement in SQL
    • SQL CASE Statement
    • SQL While Loop
    • SQL INSTR()
    • What is Procedure in SQL
    • Stored Procedure in SQL?
    • SQL Server Constraints
    • SQL DELETE ROW
    • Column in SQL
    • Table in SQL
    • SQL Virtual Table
    • SQL Merge Two Tables
    • SQL Table Partitioning
    • SQL Temporary Table
    • SQL Clone Table
    • SQL Rename Table
    • SQL LOCK TABLE
    • SQL Mapping
    • Cursors in SQL
    • AND in SQL
    • Wildcard in SQL
    • SQL FETCH NEXT
    • SQL Views
    • Triggers in SQL
    • SQL UPDATE Trigger
    • SQL AFTER UPDATE Trigger
    • SQL Update Statement
    • SQL DROP TRIGGER
    • Views in MySQL
    • SQL COMMIT
    • Distinct Keyword in SQL
    • PARTITION BY in SQL
    • SQL Set Operators
    • SQL UNION ALL
    • Metadata in SQL
    • SQL Bulk Insert
    • Array in SQL
    • SQL REGEXP
    • JSON in SQL
    • SQL For loop
    • EXPLAIN in SQL
    • SQL Cluster
    • SQL Backup
    • SQL Pattern Matching
    • SQL Users
    • ISNULL SQL Server
    • SQL Import CSV
  • Interview Questions
    • SQL Interview Questions
    • Advance SQL Interview Questions
    • SQL Joins Interview Questions
    • SQL Server Interview Questions

Related Courses

JDBC Training Course

PHP course

Windows 10 Training

SQL Course Training

PL/SQL Certification Courses

Oracle Certification Courses

Footer
About Us
  • Blog
  • Who is EDUCBA?
  • Sign Up
  • Corporate Training
  • Certificate from Top Institutions
  • Contact Us
  • Verifiable Certificate
  • Reviews
  • Terms and Conditions
  • Privacy Policy
  •  
Apps
  • iPhone & iPad
  • Android
Resources
  • Free Courses
  • Database Management
  • Machine Learning
  • All Tutorials
Certification Courses
  • All Courses
  • Data Science Course - All in One Bundle
  • Machine Learning Course
  • Hadoop Certification Training
  • Cloud Computing Training Course
  • R Programming Course
  • AWS Training Course
  • SAS Training Course

© 2020 - EDUCBA. ALL RIGHTS RESERVED. THE CERTIFICATION NAMES ARE THE TRADEMARKS OF THEIR RESPECTIVE OWNERS.

EDUCBA
Free Data Science Course

Hadoop, Data Science, Statistics & others

*Please provide your correct email id. Login details for this Free course will be emailed to you
Book Your One Instructor : One Learner Free Class

Let’s Get Started

This website or its third-party tools use cookies, which are necessary to its functioning and required to achieve the purposes illustrated in the cookie policy. By closing this banner, scrolling this page, clicking a link or continuing to browse otherwise, you agree to our Privacy Policy

EDUCBA

*Please provide your correct email id. Login details for this Free course will be emailed to you
EDUCBA Login

Forgot Password?

EDUCBA
Free Data Science Course

Hadoop, Data Science, Statistics & others

*Please provide your correct email id. Login details for this Free course will be emailed to you

Special Offer - JDBC Training Course Learn More