MySQL Forums
Forum List  »  Performance

Re: multi-part index and when it is used?
Posted by: Peter Halliday
Date: January 13, 2005 07:18AM

The only query you listed that might not use the index is SELECT * FROM phonebook; The reason that one might not is because it retrieves too much data. The only way it would use an index would be if the index was a covering index (ie. * was all part of the same index.

What do you mean by that statement? Especially the comment about the covering index.

Also if you did SELECT * FROM phonebook ORDER BY lastName, firstName, middleInitial that would use the index I've created on that? Or would it do whichever it deems as the most optimal?

Options: ReplyQuote


Subject
Views
Written By
Posted
Re: multi-part index and when it is used?
2095
January 13, 2005 07:18AM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.