How does MySQL index in select

Source: Internet
Author: User
Tags mysql index
How MySQL is indexed in select
To the column (named: column_a, the vegetarian in the table is: table_a) defines an index (named: index_a);

I use the general method when I search for column column_a

Select Column_a from table_a where conditional expression;

What should I do with the index index_a?

------Solution--------------------
Without understanding the index, the purpose of creating the index is to query performance for large data volumes,

When used, it is generally the case that the query condition with column_a is a lot faster than searching without creating an index, which can be seen when a certain amount of data is available.
------Solution--------------------
Explain your SQL, you can see whether the index is used in the key field
------Solution--------------------
See what your where condition is, can
Explain select column_a from table_a where conditional expression;
See if the index is used.
  • 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.