MySQL Forums
Forum List  »  Full-Text Search

Re: Full-text search slower than like
Posted by: Rick James
Date: February 07, 2010 02:04PM

Is this actually the query?
Select * from t1 where match t1.Col1 against ('abc*' in boolean mode);
or is there more going on?

I ask because, when one part of the WHERE is FULLTEXT, that is always done first. In the case of LIKE, it is probably picking another index first (such as AND date > '...', which might be much more restrictive than the FT part.

Options: ReplyQuote


Subject
Views
Written By
Posted
7098
December 11, 2009 12:42PM
Re: Full-text search slower than like
2852
February 07, 2010 02:04PM
2682
February 07, 2010 06:14PM
2817
February 10, 2010 08:26PM


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.