Preamble
Oracle/PLSQL LNNVL function is used in the WHERE SQL query sentence to evaluate the state when one of the operands may contain the value NULL.
Oracle/PLSQL syntax of LNNVL function
LNNVL( condition_id )
The LNNVL function will return to the following:
| The condition is assessed as | LNNVL will return the value |
| TRUE | FALSE |
| FALSE | TRUE |
| UNKNOWN | TRUE |
So, if we had two columns called qty and reorder_level, where qty = 20 and reorder_level IS NULL, the function LNNVL would return the following:
| Condition | The condition is assessed as | LNNVL will return the value |
| qty = reorder_level | UNKNOWN | TRUE |
| qty IS NULL | FALSE | TRUE |
| reorder_level IS NULL | TRUE | FALSE |
| qty = 20 | TRUE | FALSE |
| reorder_level = 20 | UNKNOWN | TRUE |
LNNVL function in the following versions of Oracle/PLSQL
Oracle 12c, Oracle 11g, Oracle 10g
The LNNVL function can be used in Oracle PLSQL.
Let’s have a look at an example. If we had a product table containing the following data:
| PROD_ID | QTY_ID | REORDER_LEVEL_ID |
| 1000 | 20 | NULL |
| 2000 | 15 | 8 |
| 3000 | 8 | 10 |
| 4000 | 12 | 6 |
| 5000 | 2 | 2 |
| 6000 | 4 | 5 |
And we wanted to find all the products whose QTY was below REORDER_LEVEL, let’s run the next SQL query:
SELECT *
FROM prods
WHERE QTY < REORDER_LEVEL;
The request will return the following result:
| PROD_ID | QTY_ID | REORDER_LEVEL_ID |
| 3000 | 8 | 10 |
| 6000 | 4 | 5 |
However, if we wanted to consider products that were lower than REORDER_LEVEL and REORDER_LEVEL had the value NULL, we would use the function LNNVL as follows:
SELECT *
FROM prods
WHERE LNNVL(QTY >= REORDER_LEVEL);
This will return the next result:
| PROD_ID | QTY_ID | REORDER_LEVEL_ID |
| 1000 | 20 | NULL |
| 3000 | 8 | 10 |
| 6000 | 4 | 5 |
In this example, the resulting set also contains prod_id 1000, which has REORDER_LEVEL NULL.
LNNVL FUNCTION IN ORACLE SQL
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
Driving Cost-Efficient Innovation: Enteros Performance Management Platform for Accurate Technology Cost Estimation
- 15 December 2025
- Database Performance Management
Introduction The technology sector is at the epicenter of global innovation. From cloud-native applications and SaaS platforms to AI-driven analytics and real-time digital services, modern technology organizations operate in environments defined by speed, scale, and complexity. However, as innovation accelerates, so do operational challenges—particularly around performance management, cloud cost estimation, and financial predictability. Today’s technology … Continue reading “Driving Cost-Efficient Innovation: Enteros Performance Management Platform for Accurate Technology Cost Estimation”
Future-Ready Fashion Tech: How Enteros Combines Database Optimization and Cloud FinOps for Smarter Operations
Introduction The fashion industry has evolved far beyond seasonal collections and brick-and-mortar storefronts. Today’s fashion brands operate as highly digital, data-driven enterprises—powered by eCommerce platforms, global supply chain systems, AI-powered demand forecasting, personalization engines, and SaaS-based retail applications. At the heart of this transformation lies a complex web of databases, cloud resources, and analytics platforms. … Continue reading “Future-Ready Fashion Tech: How Enteros Combines Database Optimization and Cloud FinOps for Smarter Operations”
Precision Banking Operations: How Enteros Uses AIOps to Enhance Performance Management and Cost Estimation
- 14 December 2025
- Database Performance Management
Introduction The banking sector is at the center of a profound digital transformation. Core banking platforms, digital wallets, real-time payments, mobile apps, fraud detection engines, and regulatory reporting systems now operate on always-on, data-intensive infrastructures. As customer expectations for speed, reliability, and personalization rise, banks face unprecedented pressure to ensure flawless system performance, while simultaneously … Continue reading “Precision Banking Operations: How Enteros Uses AIOps to Enhance Performance Management and Cost Estimation”
Driving Retail Profitability: How Enteros Uses Cloud FinOps to Modernize Cost Attribution
Introduction The retail industry is operating in one of the most competitive and digitally demanding environments in history. Omnichannel commerce, dynamic pricing, real-time inventory visibility, personalized customer experiences, and AI-driven demand forecasting have become table stakes. Behind every seamless retail experience lies a complex web of cloud infrastructure, SaaS platforms, databases, and data pipelines. However, … Continue reading “Driving Retail Profitability: How Enteros Uses Cloud FinOps to Modernize Cost Attribution”