Full-Text Search using MySQL: Full-Text Search Capabilities

mysql-full-text-searchHave you ever thought how does the search functionality is implemented in all the websites! Most of the internet blogs and websites are powered by MySQL database. MySQL provides a wonderful way (Full-text Search) of implementing a little search engine in your website. All you have to do is to have MySQL 4.x and above. MySQL provides full text search capabilities that we can use to implement search functionality. First let us setup a sample table for our example. We will create a table called Article.
CREATE TABLE articles ( id INT UNSIGNED AUTO_INCREMENT NOT NULL PRIMARY KEY, title VARCHAR(200), body TEXT, FULLTEXT (title,body) );
Code language: SQL (Structured Query Language) (sql)
Also add some sample data in this table. Execute following insert query.
INSERT INTO articles (title,body) VALUES ('MySQL Tutorial','DBMS stands for DataBase ...'), ('How To Use MySQL Well','After you went through a ...'), ('Optimizing MySQL','In this tutorial we will show ...'), ('1001 MySQL Tricks','1. Never run mysqld as root. 2. ...'), ('MySQL vs. YourSQL','In the following database comparison ...'), ('MySQL Security','When configured properly, MySQL ...');
Code language: SQL (Structured Query Language) (sql)
Once the sample data is ready in our table, we can start with our full-text search functionality.

Natural Language Full-Text Searches

Try to execute following Select query on our sample table.
SELECT * FROM articles WHERE MATCH (title,body) AGAINST ('database');
Code language: SQL (Structured Query Language) (sql)
You will be able to see following result:
  5        MySQL vs. YourSQL        In the following database comparison ...    
  1        MySQL Tutorial               DBMS stands for DataBase ...                   
In above sql query we used MATCH (title,body) AGAINST (‘database’) to select all the records by performing a full text search on columns title and body. You can modify this query and create your own version to perform full-text search in your own database.

Boolean Full-Text Searches

It may happen that you want to specify certain keywords in your search criteria. Also you may want to ignore certain keywords. Boolean Full-Text Search can used to perform a full text search for such requirements. Check the following Select query.
SELECT * FROM articles WHERE MATCH (title,body) AGAINST ('+MySQL -YourSQL' IN BOOLEAN MODE);
Code language: SQL (Structured Query Language) (sql)
If you notice the above Select query, we have added IN BOOLEAN MODE in against(). This query will fetch all the records which has MySQL keyword but not YourSQL keyword. Notice the + and – that we have specified before the keywords! In implementing this feature, MySQL uses what is sometimes referred to as implied Boolean logic, in which: + stands for AND stands for NOT [no operator] implies OR Following are few examples for the boolean search criteria. ‘apple banana’ Find rows that contain at least one of the two words. ‘+apple +juice’ Find rows that contain both words. ‘+apple macintosh’ Find rows that contain the word “apple”, but rank rows higher if they also contain “macintosh”. ‘+apple -macintosh’ Find rows that contain the word “apple” but not “macintosh”. ‘+apple ~macintosh’ Find rows that contain the word “apple”, but if the row also contains the word “macintosh”, rate it lower than if row does not. This is “softer” than a search for ‘+apple -macintosh’, for which the presence of “macintosh” causes the row not to be returned at all. ‘+apple +(>turnover <strudel)’ Find rows that contain the words “apple” and “turnover”, or “apple” and “strudel” (in any order), but rank “apple turnover” higher than “apple strudel”.

Restrictions

The Full-text searches are supported for MyISAM tables only. As of MySQL 4.1, the use of multiple character sets within a single table is supported. However, all columns in a FULLTEXT index must use the same character set and collation. The MATCH() column list must match exactly the column list in some FULLTEXT index definition for the table, unless this MATCH() is IN BOOLEAN MODE. Boolean-mode searches can be done on non-indexed columns, although they are likely to be slow.
Get our Articles via Email. Enter your email address.

You may also like...

25 Comments

  1. Thanks a lot. I was looking for this.
    But having small problem I am using innoDB tables for making use of commit.
    I think cannot have both these features (FULLTEXT and COMMIT)
    Is any way to do both?
    I mean any alternative?

  2. yourfriendship says:

    thanks!I was looking for this
    I use have to do is to have MySQL 5.04 but i have a error
    MYSQL no support “FULLTEXT ”
    can you help me!

    • Ashutosh says:

      which mysql server version r u using?

      CREATE TABLE `articles` (
        `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
        `title` varchar(200) DEFAULT NULL,
        `body` text,
        PRIMARY KEY (`id`),
        FULLTEXT KEY `title` (`title`,`body`)
      ) ENGINE=MyISAM AUTO_INCREMENT=7 DEFAULT CHARSET=latin1
      

  3. MySQL fulltext doesn’t work with InnoDB which is an important issue. I think implementing an external solution is a better idea.

  4. Jess says:

    Thanks much for this. As a newbie with limited experience in programming, I learned some useful stuff. One small frustration
    I added a few very long records to the table, then ran a SELECT* —
    Every record displayed perfectly when I used RUN (cmd), but with Workbench the text just runs off the page, ignoring the newlines. Had to use INTO OUTFILE to see it all.
    Question: Can you suggest a way to force Workbench to keep records on screen?
    …~jess

  5. Great piece of information …….

  6. Best article about MATCH

  7. Thanks a lot

  8. Piotr Sobczyk says:

    Thanks for very accessible article about fulltext search. Good job!

  9. shashi says:

    For enabling Full Text search with InnoDB, we can use sphinx ( http://sphinxsearch.com )

  10. plgeda says:

    Thanks a lot.

    can please upload the functionality for hibernate full text search ..

  11. Fuad says:

    Good sharing :)

  12. Keshav says:

    It is really very good post.
    Thanks for it.

  13. very helpful post thank you very much

  14. Paul Redmond says:

    Great list, thanks!

  15. Ram Gurung says:

    Thank you bro. This is short but descriptive.

  16. Ashish Saxena says:

    i need to search “mistake of my life” and when i use (match against) query and search keyword(‘m’) means not full word, then “No Result Found”.

  17. Micheal says:

    Thank you

  18. Edward says:

    Thanks!I was looking for this
    I use have to do is to have MySQL 5.04 but i have a error
    MYSQL no support “FULLTEXT ”
    can you help me!

  19. پیامک صوتی says:

    very nice article, thanks

  20. طراحی سایت says:

    thank you for shairing this post.

  21. Thank you, that’s great

  22. ratin says:

    thanks

  23. Gourav says:

    Very Useful and well explained thanks for this.

  24. کد تخفیف نت افراز says:

    thanks it works like a hell

Leave a Reply

Your email address will not be published. Required fields are marked *