MySQL index type

Source: Internet
Author: User
Tags mysql index

MySQL INDEX Type 1. The only task of a common INDEX (INDEX defined by the KEY or INDEX keyword) is to speed up data access. Therefore, you should create an index only for the data columns that most frequently appear in the query condition (WHEREcolumn =) or sort condition (ORDERBYcolumn. If possible, you should select the most neat and compact data column (such as an integer data column) to create an index. 2. Unique indexes common indexes allow indexed data columns to contain duplicate values. For example, because a person may have the same name, the same name may appear twice or more times in the same "employee profile" data table. If you can determine that a data column will only contain different values, you should use the keyword UNIQUE to define it as a UNIQUE index when creating an index for this data column. The advantage of doing so: First, it simplifies MySQL's management of this index, and this index becomes more efficient. Second, MySQL inserts a data table with a new record, automatically checks whether the value of this field of the new record has already exists in this field of a record; if yes, MySQL rejects the insert of that new record. That is to say, the unique index can ensure the uniqueness of data records. In fact, in many cases, the purpose of creating a unique index is not to speed up access, but to avoid data duplication. 3. The primary index has already been repeatedly stressed: You must create an index for the primary key field. This index is called a "primary index ". The only difference between a PRIMARY index and a UNIQUE index is that the keywords used by the former during definition are PRIMARY rather than UNIQUE. The primary key itself is a unique index for mySQL. 4. If a foreign key index defines a foreign key constraint for a foreign key field, mySQL defines an internal index to help you manage and use foreign key constraints in the most efficient way. 5. Composite INDEX indexes can cover multiple data columns, such as INDEX (columnA, columnB) indexes. This index features that MySQL can selectively use such an index. If you only need to use an INDEX on the columnA data column for the query operation, you can use a composite INDEX (columnA, columnB ). However, this method is only applicable to the combination of data columns in the composite index. For example, INDEX (A, B, C) can be used as an INDEX of A or (A, B), but cannot be used as B, C or (B, C). 6. When the index length is defined for CHAR and VARCHAR data columns, you can limit the index length to a given number of characters (This number must be smaller than the maximum number of characters allowed by this field ). The advantage of this is that you can generate an index file with a relatively small size and fast retrieval speed. In most applications, most of the string data in the database is based on a variety of names, and the index length is set to 10 ~ 15 characters is enough to narrow the search range to a few data records. When creating indexes for BLOB and TEXT data columns, you must limit the index length; mySQL allows a normal index on the text field of the maximum index of the full text index to accelerate the retrieval of the character string (that is, the character starting with the field content) at the beginning of the field content. If a field contains a large text segment consisting of several or even multiple words, the normal index will be useless. This kind of search usually appears in the form of, which is very complicated for MySQL. If the data volume to be processed is large, the response time will be very long. This type of scenario is exactly where full-text indexing (full-textindex) can be used. When an index of this type is generated, MySQL creates a list of all the words that appear in the text, and searches for relevant data records based on the list. Full-text indexes can be created along with the data table. You can also use the following command to add the full-text indexes in ALTERTABLEtablenameADDFULLTEXT (column1, column2) if necessary in the future, you can use the SELECT query command to retrieve data records containing one or more given words. The following is the basic syntax for such query commands: SELECT * FROMtablename WHEREMATCH (column1, column2) AGAINST ('word1 ', 'word2', 'word3 ') the preceding command will query all the data records of word1, word2, and word3 in column1 and column2 fields.

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.