MySQL Forums
Forum List  »  Full-Text Search

exact match search without boolean mode
Posted by: peerspong pong
Date: August 31, 2012 01:28AM

hi, is there a way to search a specific sequence of words using fulltext without the boolean mode? boolean mode is pretty good but in my specific case is extremely slow...

this works:
SELECT * FROM tab WHERE MATCH(aaaa) AGAINST('"sequence of words"' IN BOOLEAN MODE)

this ignores " " then uses OR
SELECT * FROM tab WHERE MATCH(aaaa) AGAINST('"sequence of words"')

Options: ReplyQuote


Subject
Views
Written By
Posted
exact match search without boolean mode
3849
August 31, 2012 01:28AM


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.