MySQLInnoDB automatically adds a primary key to an index _ MySQL

Source: Internet
Author: User
BitsCN.com

About how to automatically add a primary key in the index of MySQL InnoDB

(I) principle:

As long as the index field defined by the user contains the field in the primary key, this field will not be automatically added to the index by InnoDB.

However, if the index field does not fully contain the primary key field, InnoDB adds the remaining primary key fields to the end of the index.

(Ii) example

Example 1:

[SQL]

Create table t (

A char (32) not null primary key,

B char (32) not null,

KEY idx1 (a, B ),

KEY idx2 (B,)

) Engine = InnoDB;

Idx1 and idx2 indexes have the same internal size and no difference.

Example 2:

[SQL]

Create table t (

A char (32) not null,

B char (32) not null,

C char (32) not null,

D char (32) not null,

Primary key (a, B)

KEY idx1 (c, ),

KEY idx2 (d, B)

) Engine = InnoDB;

In this table, InnoDB will automatically complete the primary key Dictionary. idx1 actually stores (c, a, B) internally, and idx2 actually stores (d, B, a) internally)

However, the automatically added field and Server layer are unknown, so the MySQL optimizer does not know the existence of this field. if you have a query:

[SQL]

SELECT * FROM t WHERE d = x1 AND B = x2 ORDER BY;

In fact, the idx2 (d, B, a) in the internal storage can make this query completely indexed, but the Server layer does not know,

Therefore, the MySQL optimizer may select idx2 (d, B) to filter and sort field a, or directly use PK scan to avoid sorting.

If we define the table structure as KEY idx2 (d, B, a), MySQL will know that all the three fields (d, B, a) are indexed,

In addition, InnoDB found that the user-defined index contains all primary key fields, and no more storage space is added.

(Iii) suggestions

Therefore, we sincerely recommend that you add the primary key field and,

There is no loss, but it may surprise you.

BitsCN.com

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.