In SQL, How does using DISTINCT affect performance? - Stack Overflow most recent 30 from stackoverflow.com2009-12-17T12:17:42Zhttp://stackoverflow.com/feeds/question/521055http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/521055/in-sql-how-does-using-distinct-affect-performance2In SQL, How does using DISTINCT affect performance?Curtis Inderwiesche2009-02-06T16:42:34Z2009-02-25T21:22:56Z
<p>I am attempting to select a distinct list where duplicates are created over several fields. For example, </p>
<pre><code>SELECT tablename.field1Date,
tablename.field2Number,
tablename.field3Text
FROM tablename;
</code></pre>
<p>Would select duplicating records over the date, number and text fields respectively.</p>
<p>Now, when I select distinct records to provide what I am looking for, the performance seems to decrease dramatically. </p>
<pre><code>SELECT DISTINCT tablename.field1Date,
tablename.field2Number,
tablename.field3Text
FROM tablename;
</code></pre>
<p>Is there any known reasons for this? I must admit I am using MS Access 2003 which may be the issue. </p>
http://stackoverflow.com/questions/521055/in-sql-how-does-using-distinct-affect-performance/521066#5210668Answer by CodeSlave for In SQL, How does using DISTINCT affect performance?CodeSlave2009-02-06T16:44:44Z2009-02-25T21:22:56Z<p>Yes, basically it has to sort the results and then re-processed to eliminate the duplicates. This cull could also be being done during the sort, but we can only speculate as to how exactly the code works in the background. You could try and improve the performance by creating an index composed of all three (3) fields.</p>
http://stackoverflow.com/questions/521055/in-sql-how-does-using-distinct-affect-performance/521076#5210761Answer by Diodeus for In SQL, How does using DISTINCT affect performance?Diodeus2009-02-06T16:47:21Z2009-02-06T16:47:21Z<p>Yes, the application needs to compare every record to the "distinct" records cache as it goes. You can improve performance by using an index, particularly on the numeric and date fields.</p>
http://stackoverflow.com/questions/521055/in-sql-how-does-using-distinct-affect-performance/521122#5211224Answer by Erik Nedwidek for In SQL, How does using DISTINCT affect performance?Erik Nedwidek2009-02-06T16:57:35Z2009-02-06T16:57:35Z<p>This page has tips on improving your query performance and also some information on using the performance analyzer. It will tell you what if any indexes are needed.</p>
<p><a href="http://support.microsoft.com/kb/209126" rel="nofollow">http://support.microsoft.com/kb/209126</a></p>