|
2 |
edited tags
|
||
|
1 |
|
||
How To Create a SQL Index to Import ORDER BY performanceHi, I have some SQL similar to the following, which joins four tables and then orders the results by the "status" column of the first:
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". All four tables have the PRIMARY KEYs set on the "id" column. 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? I've tried to ask this in a general SQL sense but, if it's important, the target is SQLite for use with Gears. Thanks in advance, Jake (noob)
|
||||
