How To Create a SQL Index to Import ORDER BY performance - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T06:50:30Z http://stackoverflow.com/feeds/question/1011440 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1011440/how-to-create-a-sql-index-to-import-order-by-performance 0 How To Create a SQL Index to Import ORDER BY performance Jake Howlett 2009-06-18T08:23:19Z 2009-07-14T02:06:11Z <p>Hi,</p> <p>I have some SQL similar to the following, which joins four tables and then orders the results by the "status" column of the first:</p> <pre><code>SELECT * FROM a, b, c, d WHERE b.aid=a.id AND c.id=a.cid AND a.did=d.id AND a.did='XXX' ORDER BY a.status </code></pre> <p>It works. However, it's slow. I've worked out this is because of the ORDER BY clause and the lack of any index on table "a".</p> <p>All four tables have the PRIMARY KEYs set on the "id" column.</p> <p>So, I know I need to add an index to table a which includes the "status" column but what else does it need to include? Should "bid", "cid" and "did" be in there too?</p> <p>I've tried to ask this in a general SQL sense but, if it's important, the target is SQLite for use with Gears.</p> <p>Thanks in advance,</p> <p>Jake (noob)</p> http://stackoverflow.com/questions/1011440/how-to-create-a-sql-index-to-import-order-by-performance/1011473#1011473 0 Answer by Curt Sampson for How To Create a SQL Index to Import ORDER BY performance Curt Sampson 2009-06-18T08:30:40Z 2009-06-18T08:30:40Z <p>I'd be curious as to how you worked out that the problem is 'the ORDER BY clause and the lack of any index on table "a".' I find this a little suspicious because there is an index on table a, on the primary key, you later say.</p> <p>Looking at the nature of the query and what I can guess about the nature of the data, I would think that this query would generally produce relatively few results compared to the size of the tables it's using, and that thus the ORDER BY would be extremely cheap. Of course, this is just a guess.</p> <p>Whether an index will even help at all is dependent on the data in the table. What indices your query optimizer will use when doing a query is dependent on a lot of different factors, one of the big ones being the expected number of results produced from a lookup.</p> <p>One thing that would help a lot is if you would post the output of EXPLAINing your query.</p> http://stackoverflow.com/questions/1011440/how-to-create-a-sql-index-to-import-order-by-performance/1011554#1011554 2 Answer by Sam for How To Create a SQL Index to Import ORDER BY performance Sam 2009-06-18T08:49:48Z 2009-06-18T08:49:48Z <p>I would say it's slow because the engine is doing scans all over the place instead of seeks. Did you mean to do SELECT a.* instead? That would be faster as well, SELECT * here is equivalent to a.*, b.*, c.*, d.*.</p> <p>You will probably get better results if you put a separate index on each of these columns:</p> <ul> <li>a.did (so that a.did = 'XXX' is a seek instead of a scan, also helps a.did = d.id)</li> <li>a.cid (for a.cid = c.id)</li> <li>b.aid (for a.id = b.aid)</li> </ul> <p>You could try adding Status to the first and second indexes with ASCENDING order, for additional performance - it doesn't hurt.</p> http://stackoverflow.com/questions/1011440/how-to-create-a-sql-index-to-import-order-by-performance/1011559#1011559 0 Answer by jan for How To Create a SQL Index to Import ORDER BY performance jan 2009-06-18T08:50:24Z 2009-06-18T08:50:24Z <p>have you tried joins?</p> <p>select * from a inner join b on a.id = b.aid inner join c on a.cid = c.id inner join d on a.did=d.id where a.did='XXX' ORDER BY a.status</p> <p>the correct use of joins (left, richt, inner, outer) depends on structure of tables</p> <p>hope this helps</p>