I am really interested on how MySQL indexes work that it could not scan the whole table to give us results? It's off-topic, I know, but if there is someone who could explain me that picturesquely I would be very very thankful.
|
Basically an index on a table works like an index in a book (that's where the name came from): Let's say you have a book about databases and you want to find some information about, say, storage. Without an index (assuming no other aid, such as a table of contents) you'd have to go through the pages one by one, until you found the topic (that's a Of course, how useful the index will be, depends on many things - a few examples, using the simile above:
|
||||
|
|
|
The first thing you must know is that indexes are a way to avoid scanning the full table to obtain the result that you're looking for. There are different kinds of indexes and they're implemented in the storage layer, so there's no standard between them and they also depend on the storage engine that you're using. InnoDB and the B+Tree indexFor InnoDB, the most common index type is the B+Tree based index, that stores the elements in a sorted order. Also, you don't have to access the real table to get the indexed values, which makes your query return way faster. The "problem" about this index type is that you have to query for the leftmost value to use the index. So, if your index has two columns, say last_name and first_name, the order that you query these fields matters a lot. So, given the following table:
This query would take advantage of the index:
But the following one would not
Because you're querying the This last example is even worse:
Because now, you're comparing the rightmost part of the rightmost field in the index. The hash indexThis is a different index type that unfortunately, only the memory backend supports. It's lightning fast but only useful for full lookups, which means that you can't use it for operations like Since it only works for the memory backend, you probably won't use it very often. The main case I can think of right now is the one that you create a temporary table in the memory with a set of results from another select and perform a lot of other selects in this temporary table using hash indexes. If you have a big
The problem with the above example is that since the
It's still worth to hash things even if the collision number is high cause you'll only perform the second comparison (the string one) against the repeated hashes. Unfortunately, using this technique, you still need to hit the table to compare the Wrap upSome facts that you may consider every time you want to talk about optimization:
MySQL has other indexes too, but I think the B+Tree one is the most used ever and the hash one is a good thing to know, but you can find the other ones in the MySQL documentation. I highly recommend you to read the "High Performance MySQL" book, the answer above was definitely based its chapter about indexes. |
||||
|
|
|
Basically an index is a map of all your keys that is sorted in order. With a list in order, then instead of checking every key, it can do something like this: 1: Go to middle of list - is higher or lower than what I'm looking for? 2: If higher, go to halfway point between middle and bottom, if lower, middle and top 3: Is higher or lower? Jump to middle point again, etc. Using that logic, you can find an element in a sorted list in about 7 steps, instead of checking every item. Obviously there are complexities, but that gives you the basic idea. |
|||||
|
|
Take a look at this link: http://dev.mysql.com/doc/refman/5.0/en/mysql-indexes.html How they work is too broad of a subject to cover in one SO post. Here is one of the best explanations of indexes I have seen. Unfortunately it is for SQL Server and not MySQL. I'm not sure how similar the two are... |
|||||
|
SELECT * FROM members WHERE id = '1'- so why with index it works faster? What that index does here? – evening Aug 25 '10 at 16:17