Subqueries vs joins - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T10:35:35Z http://stackoverflow.com/feeds/question/141278 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/141278/subqueries-vs-joins 24 Subqueries vs joins palmsey 2008-09-26T18:58:53Z 2008-10-21T00:33:22Z <p>I refactored a slow section of an application we inherited from another company to use an inner join instead of a subquery like</p> <pre><code>where id in (select id from ... ) </code></pre> <p><strong>The refactored query runs about 100x faster.</strong> (~50 seconds to ~0.3) I expected an improvement, but can anyone explain why it was so drastic? The columns used in the where clause were all indexed. Does SQL execute the query in the where clause once per row or something?</p> <p><strong>Update</strong> - Explain results:</p> <p>The difference is in the second part of the "where id in ()" query - </p> <pre><code>2 DEPENDENT SUBQUERY submission_tags ref st_tag_id st_tag_id 4 const 2966 Using where </code></pre> <p>vs 1 indexed row with the join:</p> <pre><code> SIMPLE s eq_ref PRIMARY PRIMARY 4 newsladder_production.st.submission_id 1 Using index </code></pre> <p>Thanks everyone!</p> http://stackoverflow.com/questions/141278/subqueries-vs-joins/141283#141283 4 Answer by scotta for Subqueries vs joins scotta 2008-09-26T19:00:10Z 2008-09-26T19:00:10Z <p>Run the explain-plan on each version, it will tell you why.</p> http://stackoverflow.com/questions/141278/subqueries-vs-joins/141290#141290 -1 Answer by David B for Subqueries vs joins David B 2008-09-26T19:01:05Z 2008-09-26T19:01:05Z <p>Look at the query plan for each query.</p> <p><em>Where in</em> and <em>Join</em> can <strong>typically</strong> be implemented using the same execution plan, so <strong>typically</strong> there is zero speed-up from changing between them.</p> http://stackoverflow.com/questions/141278/subqueries-vs-joins/141292#141292 13 Answer by Sklivvz for Subqueries vs joins Sklivvz 2008-09-26T19:01:12Z 2008-09-26T19:01:12Z <p>You are running the subquery <strong>once for every row</strong> whereas the join happens on indexes.</p> http://stackoverflow.com/questions/141278/subqueries-vs-joins/141294#141294 1 Answer by Cade Roux for Subqueries vs joins Cade Roux 2008-09-26T19:01:34Z 2008-09-26T19:01:34Z <p>Optimizer didn't do a very good job. Usually they can be transformed without any difference and the optimizer can do this.</p> http://stackoverflow.com/questions/141278/subqueries-vs-joins/141299#141299 1 Answer by Joel Coehoorn for Subqueries vs joins Joel Coehoorn 2008-09-26T19:02:04Z 2008-09-26T19:02:04Z <p>With a subquery, you have to re-execute the 2nd SELECT for each result, and each execution typically returns 1 row. </p> <p>With a join, the 2nd SELECT returns a lot more rows, but you only have to execute it once. The advantage is that now you can join on the results, and joining relations is what a database is supposed to be good at. For example, maybe the optimizer can spot how to take better advantage of an index now.</p> http://stackoverflow.com/questions/141278/subqueries-vs-joins/141305#141305 2 Answer by dacracot for Subqueries vs joins dacracot 2008-09-26T19:02:52Z 2008-09-26T19:02:52Z <p>It isn't so much the subquery as the IN clause, although joins are at the foundation of at least Oracle's SQL engine and run extremely quickly.</p> http://stackoverflow.com/questions/141278/subqueries-vs-joins/141306#141306 2 Answer by igelkott for Subqueries vs joins igelkott 2008-09-26T19:02:58Z 2008-09-26T19:02:58Z <p>The subquery was probably executing a "full table scan". In other words, not using the index and returning way too many rows that the Where from the main query were needing to filter out.</p> <p>Just a guess without details of course but that's the common situation.</p> http://stackoverflow.com/questions/141278/subqueries-vs-joins/141308#141308 2 Answer by Mark Roddy for Subqueries vs joins Mark Roddy 2008-09-26T19:03:02Z 2008-09-26T19:03:02Z <p>Usually its the result of the optimizer not being able to figure out that the subquery can be executed as a join in which case it executes the subquery for each record in the table rather then join the table in the subquery against the table you are querying. Some of the more "enterprisey" database are better at this, but they still miss it sometimes.</p> http://stackoverflow.com/questions/141278/subqueries-vs-joins/141310#141310 28 Answer by Jeffrey L Whitledge for Subqueries vs joins Jeffrey L Whitledge 2008-09-26T19:03:42Z 2008-09-26T19:03:42Z <p>A "correlated subquery" (i.e., one in which the where condition depends on values obtained from the rows of the containing query) will execute once for each row. A non-correlated subquery (one in which the where condition is independent of the containing query) will execute once at the beginning. The SQL engine makes this distinction automatically.</p> <p>But, yeah, explain-plan will give you the dirty details.</p> http://stackoverflow.com/questions/141278/subqueries-vs-joins/141321#141321 1 Answer by Pete Karl II for Subqueries vs joins Pete Karl II 2008-09-26T19:05:45Z 2008-09-26T19:05:45Z <p>This question is somewhat general, so here's a general answer:</p> <p>Basically, queries take longer when MySQL has tons of rows to sort through.</p> <p>Do this:</p> <p>Run an EXPLAIN on each of the queries (the JOIN'ed one, then the Subqueried one), and post the results here.</p> <p>I think seeing the difference in MySQL's interpretation of those queries would be a learning experience for everyone.</p> http://stackoverflow.com/questions/141278/subqueries-vs-joins/141325#141325 3 Answer by pfranza for Subqueries vs joins pfranza 2008-09-26T19:06:24Z 2008-09-26T19:06:24Z <p>before the queries are run against the dataset they are put through a query optimizer, the optimizer attempts to organize the query in such a fashion that it can remove as many tuples (rows) from the result set as quickly as it can. Often when you use subqueries (especially bad ones) the tuples can't be pruned out of the result set until the outer query starts to run. </p> <p>With out seeing the the query its hard to say what was so bad about the original, but my guess would be it was something that the optimizer just couldn't make much better. Running 'explain' will show you the optimizers method for retrieving the data. </p> http://stackoverflow.com/questions/141278/subqueries-vs-joins/141382#141382 2 Answer by Shawn Simon for Subqueries vs joins Shawn Simon 2008-09-26T19:18:32Z 2008-09-26T19:18:32Z <p>The where subquery has to run 1 query for each returned row. The inner join just has to run 1 query.</p> http://stackoverflow.com/questions/141278/subqueries-vs-joins/143461#143461 0 Answer by Andrei Rinea for Subqueries vs joins Andrei Rinea 2008-09-27T11:38:05Z 2008-09-27T11:38:05Z <p>I agree on all saying that the subquery has to be run for each row whereas the inner join will be run once. But still I have seen situation in real-life where the optimizer will convert a subquery to an inner join.. Why didn't it do it in this case?</p> http://stackoverflow.com/questions/141278/subqueries-vs-joins/145411#145411 1 Answer by Giuseppe Maxia for Subqueries vs joins Giuseppe Maxia 2008-09-28T07:19:08Z 2008-09-28T07:19:08Z <p>Here's an example of how <a href="http://datacharmer.blogspot.com/2008/09/drizzling-mysql.html" rel="nofollow">subqueries are evaluated in MySQL 6.0</a>.</p> <p>The new optimizer will convert this kind of subqueries into joins.</p> http://stackoverflow.com/questions/141278/subqueries-vs-joins/152042#152042 0 Answer by Andrew from NZSG for Subqueries vs joins Andrew from NZSG 2008-09-30T07:08:02Z 2008-09-30T07:08:02Z <p>Sorry to be a MySQL basher and not being able to offer any constructive advice, but the query optimizer looks like total s*** if it can't handle simple joins/subqueries. Truly, Oracle had similar issues in 8i, but this was fixed almost 10 years ago.</p>