Mysql full-text search index fields improve search efficiency

Source: Internet
Author: User

Although this method is feasible, the LIKE statement in a SELECT query is an extremely inefficient method for full-text search, especially when processing a large amount of data.

Developers only need to simply Mark Fields that require full-text search, and then use special MySQL methods to run search on those fields, this not only improves the performance and efficiency (because MySQL indexes these fields to optimize the search), but also achieves higher quality search, because MySQL uses natural language to intelligently rate the results to remove irrelevant items.

Table creation:

ALTERTABLE table name ADDFULLTEXTINDEX (Table field );

Run the SHOWINDEXES command to check whether the index has been added.

With data and indexes, you can use MySQL full-text search. The simplest full-text search method is the SELECT query with the MATCH... AGAINST statement:

SELECT Table field FROM table name WHEREMATCH (full-text search table field) AGAINST ('search string ');

Last show result

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.