I've be told and read it everywhere (but no one dared to explain why) that when composing an index on multiple columns I should put the most selective column first, for performance reasons. Why is that? Is it a myth?
|
According to Tom, column selectivity has no performance impact for queries that use all the columns in the index (it does affect Oracle's ability to compress the index).
However, these considerations should come second when deciding on index column order. More importantly is to ensure that the index can be useful to many queries, so the column order has to reflect the use of those columns (or the lack thereof) in the where clauses of your queries (for the reason illustrated by AndreKR).
All other things being equal, I would still put the most selective column first. It just feels right... Update: Another quote from Tom (thanks to milan for finding it).
|
|||||||
|
|
You can omit columns from right to left when using an index, i.e. when you have an index on Imagine to have a telephone book that is sorted by the first names and then by the last names. At least in Europe and US first names have a much lower selectivity than last names, so looking up the first name wouldn't narrow the result set much, so there would still be many pages to check for the correct last name. |
|||||||||||||
|
|
The ordering of the columns in the index should be determined by your queries and not be any selectivity considerations. If you have an index on (a,b,c), and most of your single column queries are against column c, followed by a, then put them in the order of c,a,b in the index definition for the best efficiency. Oracle prefers to use the leading edge of the index for the query, but can use other columns in the index in a less efficient access path known as skip-scan. |
|||
|
|
|
The more selective is your index, the fastest is the research. Simply imagine a phonebook: you can find someone mostly fast by lastname. But if you have a lot of people with the same lastname, you will last more time on looking for the person by looking at the firstname everytime. So you have to give the most selective columns firstly to avoid as much as possible this problem. Additionally, you should then make sure that your queries are using correctly these "selectivity criterias". |
||||
|