MySQL Forums
Forum List  »  Newbie

Multi column indexing question
Posted by: Yu-Hwei Chou
Date: January 25, 2010 03:16PM

Hi everyone,
I am building a database of songs with various attributes to each song. Originally had all attributes attached to the songName in one big table. Then realized that all my select queries would not be indexable because of this rather inconvenient Prefix problem:

It says in the documentation that multi column indexes will only work if your select statement involves the leftmost prefixes in your table. How can that possibly be done? Here's my take on it:

1) Normally the first column of any table is the Primary key (it has to be) and it's usually a unique auto increment int. Any select statement construed will never be concerned with such a column since it is not useful. I don't ever want to write "SELECT songName FROM table WHERE col1 BETWEEN 1 AND 65;" for example. What I would like to do is say "SELECT songName where bandname='Nora Jones" or something like that. So how do I write a SELECT that can use a multicolumn index while bypassing the useless column for Primary key? the only thing I thought up was something like :
"SELECT songName FROM table WHERE col1 IS NOT NULL AND col2='Nora Jones AND col3='piano';. (Assuming I have a 3 column "Multi index" of col1, col2 and col3).

But my question is" Am I nullifying the efficiency of my index by selecting for all non null rows for col1?"

Thanks for your advice.

Options: ReplyQuote


Subject
Written By
Posted
Multi column indexing question
January 25, 2010 03:16PM


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.