Preamble
Oracle/PLSQL NULLIF function compares expr1 and expr2. If expr1 and expr2 are equal, the function NULLIF returns NULL. Otherwise, it returns expr1.
Oracle/PLSQL syntax of the function NULLIF
NULLIF( expr1_id, expr2_id )
Parameters or arguments
- expr1_id and expr2_id must either have numerical values or values that have the same data type.
Note:
- The function NULLIF returns NULL if expr1_id and expr2_id are equal.
- The function NULLIF returns expr1 if expr1_id and expr2_id are not equal.
- expr1 can be an expression which is evaluated as NULL but cannot be literal NULL.
The function NULLIF can be used in the following versions of Oracle/PLSQL
|
Oracle 12c, Oracle 11g, Oracle 10g, Oracle 9i
|
Let’s consider some examples of Oracle NULLIF function and learn how to use NULLIF function in Oracle PLSQL.
SELECT NULLIF(12, 12) AS RESULT FROM DUAL;
-result: NULL
SELECT NULLIF(12, 13) AS RESULT FROM DUAL;
-result: 12
SELECT NULLIF('apples', 'apples') AS RESULT FROM DUAL;
-RESULT: NULL
SELECT NULLIF('apples', 'oranges') AS RESULT FROM DUAL;
-RESULT: apples
SELECT NULLIF(NULL, 12) AS RESULT FROM DUAL;
SELECT NULLIF(NULL, 12) AS RESULT FROM DUAL
ORA-00932: inconsistent datatypes: expected - got CHAR
-- ORA-00932 error because expr1 can't be literal NULL
NULLIF FUNCTION IN ORACLE SQL WITH EXAMPLE
About Enteros
Enteros offers a patented database performance management SaaS platform. It proactively identifies root causes of complex business-impacting database scalability and performance issues across a growing number of clouds, RDBMS, NoSQL, and machine learning database platforms.
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
Revolutionizing the Fashion Sector: How Enteros Leverages Generative AI and AI Performance Management to Optimize SaaS Database Efficiency
- 5 November 2025
- Database Performance Management
Introduction The global fashion industry has always been a beacon of creativity, speed, and transformation. From runway collections to e-commerce platforms, the sector thrives on rapid innovation and data-driven decision-making. In today’s digital-first world, fashion enterprises—from luxury retailers to fast-fashion brands—are evolving into technology-driven organizations, heavily dependent on SaaS platforms, AI tools, and cloud databases … Continue reading “Revolutionizing the Fashion Sector: How Enteros Leverages Generative AI and AI Performance Management to Optimize SaaS Database Efficiency”
Driving Financial Sector RevOps Efficiency: How Enteros Unites Database Performance Optimization and Cloud FinOps Intelligence
Introduction In the fast-evolving financial sector, success hinges on agility, precision, and performance. Financial institutions—banks, investment firms, fintech innovators, and insurance providers—depend on massive volumes of transactional and analytical data processed across complex, distributed systems. Yet, as these organizations modernize operations through cloud computing, AI, and automation, new challenges have emerged: escalating cloud costs, unpredictable … Continue reading “Driving Financial Sector RevOps Efficiency: How Enteros Unites Database Performance Optimization and Cloud FinOps Intelligence”
Empowering the Cloud Center of Excellence: How Enteros Uses Generative AI for Real-Time Monitoring and Performance Optimization in the Technology Sector
- 4 November 2025
- Database Performance Management
Introduction In the era of digital transformation, the technology sector stands at the forefront of innovation, harnessing cloud computing, artificial intelligence, and big data to drive performance and efficiency. However, as cloud infrastructures scale in size and complexity, managing performance, resource allocation, and cost optimization becomes increasingly challenging. Enter the Cloud Center of Excellence (CCoE) … Continue reading “Empowering the Cloud Center of Excellence: How Enteros Uses Generative AI for Real-Time Monitoring and Performance Optimization in the Technology Sector”
AI SQL Meets Healthcare Innovation: Enteros’ Breakthrough in Database Performance Optimization
Introduction In the modern healthcare landscape, data has become both a vital asset and a formidable challenge. Hospitals, research institutions, and digital health startups generate and process massive amounts of data—from patient records and clinical trial results to real-time monitoring devices and medical imaging. Yet, the performance of these complex data ecosystems often determines how … Continue reading “AI SQL Meets Healthcare Innovation: Enteros’ Breakthrough in Database Performance Optimization”