VOOZH about

URL: https://www.javacodegeeks.com/2014/08/sql-tip-of-the-day-be-wary-of-select-count.html

⇱ SQL Tip of the Day: Be Wary of SELECT COUNT(*)


Recently, I’ve encountered this sort of query all over the place at a customer site:
 
 
 
 
 
 
 
 
 
 

DECLARE
 v_var NUMBER(10);
BEGIN
 SELECT COUNT(*)
 INTO v_var
 FROM table1
 JOIN table2 ON table1.t1_id = table2.t1_id
 JOIN table3 ON table2.t2_id = table3.t2_id
 ...
 WHERE some_predicate;

 IF (v_var = 1) THEN
 do_something
 ELSE
 do_something_else
 END IF;
END;

Unfortunately, COUNT(*) is often the first solution that comes to mind when we want to check our relations for some predicate. But COUNT() is expensive, especially if all we’re doing is checking our relations for existence. Does the word ring a bell? Yes, we should use the EXISTS predicate, because if we don’t care about the exact number of records that return true for a given predicate, we shouldn’t go through the complete data set to actually count the exact number. The above PL/SQL block can be rewritten trivially to this one:

DECLARE
 v_var NUMBER(10);
BEGIN
 SELECT CASE WHEN EXISTS (
 SELECT 1
 FROM table1
 JOIN table2 ON table1.t1_id = table2.t1_id
 JOIN table3 ON table2.t2_id = table3.t2_id
 ...
 WHERE some_predicate
 ) THEN 1 ELSE 0 END
 INTO v_var
 FROM dual;

 IF (v_var = 1) THEN
 do_something
 ELSE
 do_something_else
 END IF;
END;

Let’s measure!

Query 1 yields this execution plan:

-----------------------------------------------
| Id | Operation | E-Rows | A-Rows |
-----------------------------------------------
| 0 | SELECT STATEMENT | | 1 |
| 1 | SORT AGGREGATE | 1 | 1 |
|* 2 | HASH JOIN | 4 | 4 |
|* 3 | TABLE ACCESS FULL| 2 | 2 |
|* 4 | TABLE ACCESS FULL| 6 | 6 |
-----------------------------------------------

Query 2 yields this execution plan:

----------------------------------------------
| Id | Operation | E-Rows | A-Rows |
----------------------------------------------
| 0 | SELECT STATEMENT | | 1 |
| 1 | NESTED LOOPS | 4 | 1 |
|* 2 | TABLE ACCESS FULL| 2 | 1 |
|* 3 | TABLE ACCESS FULL| 2 | 1 |
| 4 | FAST DUAL | 1 | 1 |
----------------------------------------------

You can ignore the TABLE ACCESS FULL operations, the actual query was executed on a trivial database with no indexes.

What’s essential, however, are the much improved E-Rows values (E = Estimated) and even more importantly the optimal A-Rows values (A = Actual). As you can see, the EXISTS predicate could be aborted early, as soon as the first record that matches the predicate is encountered – in this case immediately.

See this post about more details of how to collect Oracle Execution plans

Conclusion

Whenever you encounter a COUNT(*) operation, you should ask yourself if it is really needed. Do you really need to know the exact number of records that match a predicate? Or are you already happy knowing that any record matches the predicate?

Answer: It’s probably the latter.

Do you want to know how to develop your skillset to become a Java Rockstar?
Subscribe to our newsletter to start Rocking right now!
To get you started we give you our best selling eBooks for FREE!
1. JPA Mini Book
2. JVM Troubleshooting Guide
3. JUnit Tutorial for Unit Testing
4. Java Annotations Tutorial
5. Java Interview Questions
6. Spring Interview Questions
7. Android UI Design
and many more ....
I agree to the Terms and Privacy Policy

Thank you!

We will contact you soon.

👁 Photo of Lukas Eder
Lukas Eder
August 11th, 2014Last Updated: August 11th, 2014
4 110 2 minutes read

Lukas Eder

Lukas is a Java and SQL enthusiast developer. He created the Data Geekery GmbH. He is the creator of jOOQ, a comprehensive SQL library for Java, and he is blogging mostly about these three topics: Java, SQL and jOOQ.
Subscribe

This site uses Akismet to reduce spam. Learn how your comment data is processed.

4 Comments
Oldest
Newest Most Voted

The first pl/sql can be simply changed by restricting the number of rows to 1 using rownum or limit clauses as shown below.

SELECT 1
INTO v_var
FROM table1
JOIN table2 ON table1.t1_id = table2.t1_id
JOIN table3 ON table2.t2_id = table3.t2_id
….
WHERE some_predicate LIMIT 1;

0
Reply
11 years ago

The reason why COUNT(*) was chosen in the first place was to avoid catching NO_DATA_FOUND exceptions – which was perceived to be verbose. Otherwise, you’re right, of course.

0
Reply
thymusvulgaris
11 years ago

I would still prefer the EXISTS solution. It is more explicit in the first place and thereby communicates the intention of the query better. Furthermore LIMIT is not supported by various DBMS.

0
Reply
11 years ago
Reply to  thymusvulgaris

Limit (or an equivalent thereof) is supported by pretty much every database. For details see this link here:

http://www.jooq.org/doc/latest/manual/sql-building/sql-statements/select-statement/limit-clause

But of course, EXISTS better communicates the intent of this particular use-case than both COUNT(*) and LIMIT

0
Reply
Back to top button
Close
wpDiscuz