I have worked with Sql Server in past and used it’s very nice feature called Sql Full Text Search. Now i have to work with MySql. Can anybody tell me what is equivalent of Full Text Search in MySql? I am using free edition of MySql and not a commercial one. If not, then what else can we do to mimic Full Text Search and get over the limitations of LIKE operator?
Thanks in advance 🙂
See the documentation on the full-text search support in mysql:
http://dev.mysql.com/doc/refman/5.1/en/fulltext-search.html
You will want to apply full text indexes to columns in order to support full text search on those columns. Note that mysql only supports full-text indexing on MyISAM tables.
As an example, and just in case the above link goes dead at some point, see a full example, from the documentation:
Ref http://dev.mysql.com/doc/refman/5.1/en/fulltext-natural-language.html