Problems using MySQL FULLTEXT search?

You have to create the fulltext index on all columns you are going to match.

You have to create the fulltext index on all columns you are going to match If you want to match on (col1,col2,col3) you have to create fulltext index on col1,col2 and col3. If you want to match on(col1,col2) you have to implement another fulltext index(on col1 and col2), you can't use that one on col1, col2 and col3.

– user97410 Aug 26 '09 at 13:12 Dude, that's seriously messed up. Once FULLTEXT, always FULLTEXT, surely? Oh well, it's worked - thank you so much :) – user97410 Aug 26 '09 at 13:14.

You have to create one fulltext index with several columns, not one for each.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions