SQL IN Directive Much Faster Than Multiple OR Clauses

Posted July 27, 2006 at 4:21 PM by Ben Nadel

Tags: ColdFusion, SQL

I use the IN directive a lot in SQL, especially in conjunction with ValueList()'s of IDs. I was working on a query today that was dealing with thousands of IDs and I got curious as to how the IN directive compared to a more labor-intensive grouping or OR clauses. To me, the IN directive is elegant, but if it's slow, I wouldn't mind writing out the ORs.

To test this, I queried the page-hit IDs from a web statistics database and then used that list of IDs to basically re-query the database for the same records:

  • <!--- Query for the hit IDs. --->
  • <cfquery name="qIDs" datasource="..." username="..." password="...">
  • SELECT
  • h.id
  • FROM
  • web_stats_hit h
  • </cfquery>
  •  
  •  
  • <!--- Query for the ID records using the IN directive. --->
  • <cfquery name="qInTest" datasource="..." username="..." password="...">
  • SELECT
  • h.id,
  • h.date_created
  • FROM
  • web_stats_hit h
  • WHERE
  • <!---
  • In the ValueList(), I am passing in comments in an attempt
  • to make the amount of SQL larger so that it compares to the
  • next query which physically has more character data.
  • --->
  • h.id IN ( #ValueList( qIDs.id, ", /*..*/" )# )
  • </cfquery>
  •  
  •  
  • <!--- Query for the ID records using an OR clause for every ID. --->
  • <cfquery name="qOrTest" datasource="..." username="..." password="...">
  • SELECT
  • h.id,
  • h.date_created
  • FROM
  • web_stats_hit h
  • WHERE
  • 1 = 1
  • <!---
  • Loop over IDs. I am doing a 'sloppy' loop here to create
  • as little white space as possible so as to not have to push
  • so much darn data to the SQL server.
  • --->
  • <cfloop query="qIDs">OR id=#qIDs.id# </cfloop>
  • </cfquery>

The web stats database returns about 3,500 records. In the first query, I am using the IN directive and am just passing in a comma-delimited list of IDs. I am also throwing some bunk comments into the delimiter list so that the actually, physical size of the first query is comparable to that of the second. Value lists just take up less character data.

It turns out that the IN directive is MUCH faster. For the examples above, the IN test runs on average at just under 1,000 ms where as the OR test runs in just over 6,000 ms. If I take away the comments in the ValueList() call (ex. #ValueList( qIDs.id )#), then the IN test query drops to about 300 ms - a third the parsing and execution time.

So, it seems that raw character data accounts for a little bit of the speed of the query as the removing of the comments (/*..*/) demonstrates, but it looks like IN is just much faster than multiple ORs. This of course, only tests numeric data. I would have to come up with a slightly different test to see about string list data. Still, as I am using ID lists more often, this is very very interesting.



Reader Comments

Jul 27, 2008 at 4:32 PM // reply »
1 Comments

Ben,

The "1=1 OR" in your where cause will return ALL records and probably explains the large difference in the run times.

I'm sure the IN is faster than multiple OR's anyway, but probably not to the degree that your test showed.


Jul 28, 2008 at 8:38 AM // reply »
10,743 Comments

@John,

Good catch! That was supposed to be "1 = 0". I probably just copied it over incorrectly as the tests came back with the same results.


Jul 28, 2008 at 8:38 AM // reply »
10,743 Comments

Oh, but I guess they would have anyway since there was no filtering on the original query.

Hmmm, nice catch.


Dec 9, 2010 at 3:30 AM // reply »
1 Comments

I've been wondering it myself and want to find out about it.
But in my test, the Or clause is faster than the In clause.

The number of records is millions (all data in the table not the result set. the result set should be hundreds to thousands)

But there's only 2 condition. Not many.

I suppose that if the case is few, Or will be better, while if the case is many, In will be better.

But, i'm not in condition to prove it though.
I haven't test it with many cause myself.

PS: i'm not sure there's will be response, since it's already very old.


Mar 23, 2012 at 2:22 PM // reply »
1 Comments

In most RDBMS, IN statements are rewritten at parse time as a list of OR predicates. So there should be no difference in performance.


Post A Comment

Comment Etiquette: Please do not post spam. Please keep the comments on-topic. Please do not post unrelated questions or large chunks of code. And, above all, please be nice to each other - we're trying to have a good conversation here.

Please review the following issues:

Author Name:


Author Email:

Author Website:

Comment:

Supported HTML tags for formatting: <strong>bold</strong>   <em>italic</em>   <code>code</code>







  • Help Wanted - Find Your Next ColdFusion Job
InVision App - Prototyping Made Beautiful With Prototyping Tools Ben Nadel's Company - Epicenter Consulting Recent Blog Comments
May 16, 2012 at 8:18 PM
Best Of ColdFusion 10 Contest Entry - HTML Email Utility
Just found this, looks good! I'm trying to run it on local, it's the 64bit version and I'm experiencing horrible lag. On average the generate.cfm processes the content change in 60-90 seconds. I've ... read »
May 16, 2012 at 6:40 PM
Maintaining Sessions Across Multiple ColdFusion CFHttp Requests
I am trying to integrate this CFHTTPsession into an application that will log into zeekrewards.com to post ads and I am not having any luck. The code works perfectly for logging into other websites, ... read »
May 16, 2012 at 2:44 PM
Creating A Sometimes-Fixed-Position Element With jQuery
Thank you, very useful technique! Worked like a charm. ... read »
May 16, 2012 at 1:58 PM
Movies As A Religious Experience
Acting can, in a way, ruin the movie-goer's experience. I used to be able to get so caught up in movies and their plots, and totally engaged. But lately, I haven't been able to as much with a lot o ... read »
May 16, 2012 at 1:52 PM
The Science Of Optimal Post-Exercise Nutrition
children of this age eat very less vegetables so u can opt for salads they will like it also carrot ,cucumber,onion and as far as pulses are concerned u can boil them ,give him along with mashed rice ... read »
May 16, 2012 at 1:34 PM
Strange ColdFusion JRUN Stack Overflow Error
Hey, Recently I updated my jrun4 using the latest updater 7 and now i am having memory issues :(:(:( any help is appreciated ... read »
May 16, 2012 at 9:56 AM
ColdFusion 10 Beta, Apache Tomcat, And Symbolic Links On Mac OSX
Hi, Now that ColdFusion 10 is out I have stumbled over this as well and I cannot figure out the proper solution. We're running virtual hosts via Apache2; the ColdFusion-applications store their fil ... read »
May 15, 2012 at 6:03 PM
Movies As A Religious Experience
@Ben, I don't know whether you'd consider this a religious observation, but it seems to me, in a sense, movies multiply how many lives we get to have. Each movie is like a little extra life we get ... read »