EDUCBA Logo

EDUCBA

MENUMENU
  • Explore
    • EDUCBA Pro
    • PRO Bundles
    • Featured Skills
    • New & Trending
    • Fresh Entries
    • Finance
    • Data Science
    • Programming and Dev
    • Excel
    • Marketing
    • HR
    • PDP
    • VFX and Design
    • Project Management
    • Exam Prep
    • All Courses
  • Blog
  • Enterprise
  • Free Courses
  • Log in
  • Sign Up
Home Data Science Data Science Tutorials DB2 Tutorial DB2 ISNULL
 

DB2 ISNULL

Updated March 6, 2023

DB2 ISNULL

 

 

Introduction to DB2 ISNULL

DB2 ISNULL is used to handle the NULL values that might be present in the data or list of values that are specified. When the data is stored in DB2 RDBMS, we use the tables and store the data in rows and columns format. If the NOT NULL constraint on the column is not applied, then the default value that gets inserted in those columns when not specified is the NULL value. While retrieving and displaying the data to the user, it is not good to display the NULL values of certain columns. In that case, we can use the ISNULL function in DB2, which will help us get the first non NULL value from the list of the parameters specified while using it.

Watch our Demo Courses and Videos

Valuation, Hadoop, Excel, Mobile Apps, Web Development & many more.

Syntax:

The syntax of the ISNULL function in DB2 is as given below:

ISNULL(expr1,expr2)

  • In the above syntax, the expr1 is the expression that can be any constant value of even the column’s name whose value you wish to retrieve and check if it contains a NULL value in it.
  • Expr2 is the value we want to replace the expr1 column if the expr1 contains a NULL value. If the expression evaluates to non-null value first, then the expr2 value is considered the resultant and returned as an output.

Examples of DB2 ISNULL

Given below are the examples of DB2 ISNULL:

Use of ISNULL function to retrieve the non-NULL value from the parameters that are specified as the fixed values.

Let us firstly consider the use of ISNULL function with the values (NULL, ‘EDUCBA’)

Code:

SELECT ISNULL (NULL, 'EDUCBA');

The execution of the above query statement gives the following output as the resultant and gives out the first non-null value from the list of specified values in the ISNULL parameters.

Output:

DB2 ISNULL 1

Now, consider that we remove the NULL value from the first place and place the NULL value in the second place. So, the first non-null value from the two parameters will be EDUCBA. Hence, the execution of the following query statement gives out EDUCBA as the output.

Code:

SELECT ISNULL('EDUCBA', NULL);

The output of the above query statement’s execution is as shown in the below image, which is the same as the previous, one but in this case, the ISNULL function doesn’t go for substituting the expr1 with expr2 for output.

Output:

DB2 ISNULL 2

Passing NULL values in both parameters.

If we supply all the parameters as NULL, then it gives out no error without any output. The ISNULL function goes for searching the first non- NULL value and fails in finding the same. Hence it returns no output as the first expression is NULL, and the value with which the expr1 is to replace in case of NULL that is expr2 is also NULL.

Code:

SELECT ISNULL(NULL, NULL);

Execution of the above statement gives the following output shown in the image.

Output:

both parameters

Use of ISNULL function for substituting the NULL values stored in columns of a table.

The main purpose of the ISNULL function is to display any non-NULL value in place of NULL values when a particular column of the table is given the NULL constraint or not provided the NOT NULL constraint. In case if default value is not specified for that column or the column is kept to AUTOINCREMENT value, then by default, the value that gets inserted for that column is the NULL value. Suppose that we have one table named Sales_Customers.

If we retrieve the data of the table sales_customers from the database right now by using the following query statement.

Code:

SELECT * FROM [Sales_Customers];

Execution of the above statement gives the following result with all the values of the column purchase_date having the value NULL for store_id column having the value of FRUITS in it as shown below.

Output:

DB2 ISNULL 4

If we have to replace the value of NULL in the purchase_date column, then we can do that by using the ISNULL function by giving the first argument as the name of the column of purchase_date and then the second argument can be any non-NULL value with which we want to replace the NULL value with. The ISNULL function will go for searching the first non-NULL value; if the column has any date stored in it, then it displays that date else, it goes further to replace that null value stored in the column with the value specified in the second parameter. Suppose that we have to show the default date as “21-03-2021”. We can then use the ISNULL function while retrieving the values of the table by using the following SELECT query statement.

Code:

SELECT customer_id, f_name , email_id , mobile_number , purchase_date , store_id , bill_amount , ISNULL(purchase_date,"21-03-2021") FROM [Sales_Customers];

The output of the above query statement is shown below with replacing the values of the purchase date column with null values with the date that we have specified in the last value retrieved in the select query.

Output:

DB2 ISNULL 5

We can also make the use of the ISNULL function to replace the column value having NULL in it with some other column value by specifying the column containing NULL values as the first argument and the column with which the value needs to be replaced in the second argument.

Consider an example where we have the table named workers created by using the following query statement.

Code:

CREATE TABLE workers(
employee_id INT NOT NULL ,
f_name VARCHAR(50) NULL,
l_name VARCHAR(50) NULL,
email_id VARCHAR(50) NULL,
mobile_no INT NULL,
joining_date VARCHAR(50) NULL,
food_intake BOOLEAN NULL,
salary FLOAT(10, 2) NULL,
address1 VARCHAR(50) NULL,
address2 VARCHAR(50) NULL,
PRIMARY KEY (employee_id )
)

The data of the table is as shown below:

Code:

SELECT * FROM [workers]

Output:

table named workers

Using the following query statement, we can display the column address2 value in address1 place if it is NULL, as shown below.

Code:

SELECT employee_id,f_name, email_id, salary, ISNULL(address1,address2) FROM [workers]

Output:

display the column address2

Conclusion

We can use the ISNULL function to handle the NULL values present in the columns of the table or present as literal values. The only difference between ISNULL and COALESCE function is that ISNULL accepts only two parameters while COALESCE accepts the list of expressions for searching a non-NULL value in it.

Recommended Articles

This is a guide to DB2 ISNULL. Here we discuss the introduction and the examples of DB2 ISNULL for a better understanding. You may also have a look at the following articles to learn more –

  1. What is DB2?
  2. Database Management Software
  3. Data Analysis Tools
  4. Data Modelling Tools

Primary Sidebar

Footer

Follow us!
  • EDUCBA FacebookEDUCBA TwitterEDUCBA LinkedINEDUCBA Instagram
  • EDUCBA YoutubeEDUCBA CourseraEDUCBA Udemy
APPS
EDUCBA Android AppEDUCBA iOS App
Blog
  • Blog
  • Free Tutorials
  • About us
  • Contact us
  • Log in
Courses
  • Enterprise Solutions
  • Free Courses
  • Explore Programs
  • All Courses
  • All in One Bundles
  • Sign up
Email
  • [email protected]

ISO 10004:2018 & ISO 9001:2015 Certified

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

EDUCBA

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

Answer:

Quiz Result
Total QuestionsCorrect AnswersWrong AnswersPercentage

Explore 1000+ varieties of Mock tests View more

EDUCBA

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

Hadoop, Data Science, Statistics & others

By continuing above step, you agree to our Terms of Use and Privacy Policy.
*Please provide your correct email id. Login details for this Free course will be emailed to you
EDUCBA

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

EDUCBA Login

Forgot Password?

🚀 Limited Time Offer! - 🎁 ENROLL NOW