inding data in a relational database is usually a simple task, especially if you’re simply comparing entries to a specific value, but queries rapidly become more complicated when you start hunting for data that’s missing, in other words, data that could exist, but doesn’t. Missing data is data related to existing data that simply doesn’t occur. You could find missing values using a two-query solution, but SQL’s EXISTS predicate can help you quickly find missing values with just one query?a subquery to be exact.
For example, you may create a query to find active customers by counting recent orders. However, finding inactive customers may be just as important; perhaps you can learn why they’re inactive and perhaps turn them into active customers. In this article, you’ll see how to use the SQL EXISTS predicate to find missing data. This article is aimed at the Jet and Transact-SQL (T-SQL) audience. We’ll offer specific instructions when syntax or rules differ between the two dialects.
| Fast Facts |
| This article refers to Jet and Transact-SQL. The examples work in Access 97, 2000, and 2002. The T-SQL syntax is correct for SQL Server 2000. |
What Is EXISTS?
SQL’s EXISTS predicate specifies a subquery and then compares a value against the existence of one or more rows in that subquery. The subquery returns True when the subquery contains any rows and False when it doesn’t. However, all of that is probably clear as mud if you’re not familiar with subqueries.
A subquery is a SELECT query within another SELECT, INSERT, UPDATE, DELETE query, or another subquery. In other words, the subquery returns a result set, which is then subject to the main query’s conditions and criteria. Think of the subquery as a filter. The results of the embedded SELECT, also known as the inner query or inner select, become part of the search condition for the main query, otherwise known as the outer query or outer select.
The subquery can take many forms:
SELECT field1?, (subquery) AS alias FROM datasource SELECT fieldlist FROM datasource WHERE field comparison operator (subquery) SELECT fieldlist FROM datasource WHERE field ANY|SOME|ALL (subquery) WHERE expression [NOT] EXISTS (subquery)
In the preceding code, comparison operator equals one of the following: =, <>, <, >, >=, <, !>, !lt;, or <=. When you use one of these comparison operators, the subquery must return a single value. In this article, you'll work with the last form?the one that includes the EXISTS predicate.
Create a Subquery with EXISTS
When combined with EXISTS, an outer query checks for the existence of values within the inner query’s result set. Now, using the Northwind sample database that comes with Access, suppose you want to learn which companies have placed orders. The solution is simple?you don’t need a complex EXISTS solution just yet. The following query returns a unique list of companies with records in the Orders table (see Figure 1):
SELECT DISTINCT Orders.CustomerID FROM Orders
There are 89 companies that have placed at least one order (see Figure 1). The Access query displays the company name instead of the CustomerID value because the CustomerID field in the Orders table is a lookup field. A lookup field is an Access data type that displays a value other than the value that’s actually stored (SQL Server 2000 also supports lookup fields via an ADP front-end).
![]() |
|||
Figure 2).
The inner query compares the CustomerID value for each record in the Orders table to the CustomerID values in the Customers table. When a matching value is found, the inner query returns True. A True value means the customer has placed an order, but the NOT operator preceding the EXISTS predicate eliminates that particular value from the outer query’s result set. When the inner query doesn’t find any matching records, it returns False. Remember, a False value means the customer hasn’t ordered. The NOT operator then negates that False value, so the outer query can include that record in its result set. The EXISTS predicate finds values that do exist; preceding that predicate with the NOT operator finds those that don’t. Missing data can often be just as informative as data that’s available. Unfortunately, learning what’s missing isn’t always as easy as finding existing data. Combining SQL’s EXISTS predicate with the NOT operator solves the problem and quickly turns up missing information. Charlie has over a decade of experience in website administration and technology management. As the site admin, he oversees all technical aspects of running a high-traffic online platform, ensuring optimal performance, security, and user experience. Related PostsAbout Our Editorial ProcessAt DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere. See our full editorial policy. ![]() Wall Street Firms Signal DeFi Interest
Sumit Kumar
March 16, 2026
4:31 PM
![]() Atlassian Cuts 10 Percent Of Staff
Sumit Kumar
March 16, 2026
2:51 PM
![]() Trump Manufacturing Push Meets AI Crossroads
Kirstie Sands
March 16, 2026
2:38 PM
![]() Snap Faces Executive Exit Before VR Launch
Steve Gickling
March 16, 2026
2:34 PM
![]() How to Scale User Session Management in Distributed Systems
Sumit Kumar
March 16, 2026
1:30 PM
![]() Why AI Agents Need Process Intelligence
Steve Gickling
March 16, 2026
12:50 PM
![]() Five Prompts That Reveal Real AI Reasoning Ability
Steve Gickling
March 16, 2026
12:30 PM
![]() Risks Loom Over Iran Oil Hub
Rashan Dixon
March 16, 2026
12:00 PM
![]() Hidden Coupling: The Architecture Trap Teams Don’t See
Rashan Dixon
March 16, 2026
11:31 AM
![]() Why Data Strategy Matters More Than Data Volume
Jordan Williams
March 16, 2026
9:31 AM
![]() KBW CEO Warns of AI Risks
Deanna Ritchie
March 16, 2026
9:13 AM
We’re Funding AI By Taxing Memory
Joe Rothwell
March 14, 2026
11:58 AM
![]() Structured Logging for Production Observability
Kirstie Sands
March 13, 2026
6:34 PM
![]() Command Query Responsibility Segregation Explained
Sumit Kumar
March 13, 2026
6:27 PM
![]() Choosing Database Isolation Levels by Workload Pattern
Steve Gickling
March 13, 2026
6:19 PM
![]() 7 Architectural Differences Between Reliable and Brittle RAG
Rashan Dixon
March 13, 2026
6:09 PM
![]() The Hidden Reasons Teams Disagree on Observability Tools
Kirstie Sands
March 13, 2026
5:57 PM
![]() AT&T Pledges U.S. Network Investment Through 2030
Sumit Kumar
March 13, 2026
3:31 PM
![]() NASA Delays Artemis II After Helium Fault
Rashan Dixon
March 13, 2026
2:13 PM
![]() MIT Senior Named Churchill Scholar
Kirstie Sands
March 13, 2026
1:24 PM
![]() Will AI Disrupt Venture Capital Itself?
Rashan Dixon
March 13, 2026
10:03 AM
![]() Paris Prosecutors Probe Online Hate, Abuse
Deanna Ritchie
March 13, 2026
9:42 AM
![]() Amazon Expands Access to Shop Direct
Sumit Kumar
March 13, 2026
9:31 AM
![]() Charles Payne Hosts Investor Town Hall
Steve Gickling
March 13, 2026
8:44 AM
![]() Primary–Secondary Topology: How It Works and Fails
Rashan Dixon
March 12, 2026
4:32 PM
|

























