Preamble

In this article, you will learn how to display NULL values in other meaningful values.
Dr.EFCodd, who is the creator of the relational model for the database, introduced this concept of NULL in the theory of relational databases.
According to Dr.EFCodd, NULL means unknown value or missing information.
MySQL also supports NULL, which represents the concept of missing or inapplicable information.
In the database table, you store data that contain NULL values
When you provide data to users in the form of reports, it makes no sense to show NULL values.
To make reports more readable and understandable, you need to display NULL values in the form of other values, such as unknown, missing, or inaccessible (no data). You can do this by using the IF function.
The syntax of the IF function is as follows:
IF(exp,exp_result1,exp_result2);
If the value of exp is TRUE (when exp <> 0 and exp <> NULL), then IF returns a value from otherwise exp_result1 returns exp_result2.
The IF return can be a string or a number, depending on exp_result1 and exp_result2.
Lets practice with some examples for a better understanding
Below is the partial data in the customer table, which includes the customername state and country:
SELECT
customername, state, country
FROM
ORDER BY country;
Status values are not available for some clients. You can use the IF function to display the NULL value as N/A:
SELECT
customername, IF(state IS NULL, 'N/A', state) state, country
FROM
ORDER BY country;
In addition to the IF function, MySQL provides the IFNULL function, which allows NULL to process values directly. The syntax of the IFNULL function is given below:
IFNULL(exp,exp_result);
The IFNULL function returns the value of the expression exp_result if exp is calculated as NULL, otherwise, it returns the value of exp.
In the next query, the IFNULL function displays NULL as unknown as follows:
SELECT customername,
IFNULL(state, "N/A")state,
country
FROM customers
ORDER BY country;
In this article, you learned how to use IF and IFNULL to display NULL values on other more important values to present data in a readable form.
Important concepts on NULL values
Enteros
About Enteros
IT organizations routinely spend days and weeks troubleshooting production database performance issues across multitudes of critical business systems. Fast and reliable resolution of database performance problems by Enteros enables businesses to generate and save millions of direct revenue, minimize waste of employees’ productivity, reduce the number of licenses, servers, and cloud resources and maximize the productivity of the application, database, and IT operations teams.
The views expressed on this blog are those of the author and do not necessarily reflect the opinions of Enteros Inc. This blog may contain links to the content of third-party sites. By providing such links, Enteros Inc. does not adopt, guarantee, approve, or endorse the information, views, or products available on such sites.
Are you interested in writing for Enteros’ Blog? Please send us a pitch!
RELATED POSTS
How to Accelerate Banking Growth with Enteros Performance Management and Generative AI
- 2 March 2026
- Database Performance Management
Introduction The banking industry is evolving at unprecedented speed. Digital-first challengers are redefining customer expectations. Legacy institutions are modernizing core systems. Real-time payments, open banking frameworks, AI-driven fraud detection, and personalized financial services are now standard. But beneath every digital innovation lies a critical truth: Banking growth depends on performance. Read more”Indian Country” highlights Enteros … Continue reading “How to Accelerate Banking Growth with Enteros Performance Management and Generative AI”
What Drives Profitability in Fashion Tech: AI SQL, Cost Attribution, and Database Governance with Enteros
Introduction The fashion industry has transformed into a digital-first ecosystem. Global apparel brands, luxury retailers, direct-to-consumer startups, and fast-fashion giants now rely on sophisticated technology stacks to power: E-commerce platforms Omnichannel inventory systems Read more”Indian Country” highlights Enteros and its database performance management platform *Real-time pricing engines Demand forecasting models Supply chain visibility tools Read … Continue reading “What Drives Profitability in Fashion Tech: AI SQL, Cost Attribution, and Database Governance with Enteros”
What Real Estate Leaders Must Prioritize: Enteros Database Software, RevOps Efficiency, and Scalable Growth
- 1 March 2026
- Database Performance Management
Introduction The real estate sector is undergoing a profound digital transformation. Property marketplaces, commercial real estate platforms, property management systems, investment analytics engines, and tenant experience applications are now powered by complex data ecosystems. Listings update in real time. Pricing models adjust dynamically. Lease agreements are processed digitally. Investment portfolios are analyzed through cloud-native analytics. … Continue reading “What Real Estate Leaders Must Prioritize: Enteros Database Software, RevOps Efficiency, and Scalable Growth”
How to Eliminate Cost and Performance Silos in Healthcare IT with Enteros RevOps Intelligence
Introduction Healthcare organizations are under relentless pressure to do more with less. Hospitals, health systems, life sciences companies, and digital health platforms must deliver high-quality patient care while navigating complex regulations, rising cloud costs, staffing shortages, and increasing digital demands. Electronic health records (EHRs), telehealth platforms, medical imaging systems, revenue cycle applications, analytics engines, and … Continue reading “How to Eliminate Cost and Performance Silos in Healthcare IT with Enteros RevOps Intelligence”