MySQL database optimization How to choose the right column to index

Source: Internet
Author: User

1. In the WHERE clause, GROUP BY clause, ORDER BY clause, the column appearing on the clause;

2. The smaller the index field, the better;

3. The columns with large dispersion are placed in front of the federated Index, for example:

SELECT * FROM payment where staff_id = 2 and customer_id = 236;

is index (sftaff_id, customer_id) good for the query above? Or is index (customer_id, staff_id) good?

Because the customer_id is more discrete, so use the back more appropriate!!

So here's the problem. How to determine the degree of dispersion, you can use SELECT COUNT (Distinct customer_id), COUNT (distinct staff_id) from table name

Whose value is large indicates that some of these columns are more discrete!

MySQL database optimization How to choose the right column to index

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.