MySQL Forums
Forum List  »  MySQL Administrator

fulltext indexing
Posted by: kalyan kumar
Date: August 24, 2009 10:49AM

Hi,


One of the interesting features of MySQL is Full-Text indexing.
But Full-Text indexing has Stopwords. How to avoid these stopwards.

I have tried it with BOOLEAN mode but of no use.


mysql> SELECT * FROM im_test WHERE message LIKE '%soon%';
+--------------------------------------+------------+---------------+----------------------+------------------------+
| sessionid | date | UserID | addUserId | message |
+--------------------------------------+------------+---------------+----------------------+------------------------+
| 502fe114-1efd-4b14-9958-361af17c383a | 2009-08-24 | exec@testsaas | saadat@worksmart.com | as soon as you wiil be |
+--------------------------------------+------------+---------------+----------------------+------------------------+


mysql> SELECT * FROM im_test WHERE MATCH (message) AGAINST ('soon' IN BOOLEAN MODE);
Empty set (0.00 sec)


Is there any way to search these words too.

Please help me.


Thanks,
Kalyan.



Edited 1 time(s). Last edit at 08/24/2009 11:05AM by kalyan kumar.

Options: ReplyQuote


Subject
Written By
Posted
fulltext indexing
August 24, 2009 10:49AM
August 27, 2009 09:51PM
August 28, 2009 07:12AM


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.