MySQL query not using index aggregation As we all know, adding indexes is an effective way to improve query speed. However, in many cases, even if indexes are added, queries still do not use indexes, which seriously affects performance. Here are a few simple examples of MySQL not using indexes. If MySQL estimates that using an index would be slower than a full table scan, it does not use the index. For example, if the column key is evenly distributed If you use a MEMORY/HEAP table and do not use "=" in the where condition to index the column, the index will not be used. The head table will use the index only when the "=" condition is used. For conditions separated by or, if the column in the condition before or has an index, but the column after it does not, then the indexes involved will not be used. For example: Composite index, if the index column is not the first part of the composite index, the index will not be used (that is, it does not meet the leftmost prefix). For example, if the composite index is (key1, key2), the query If like starts with '%', the index on that column will not be used. For example, If the column is a string, the character constant value must be quoted in the where condition; otherwise, even if an index exists on the column, it will not be used. For example, From the above, we can see that even if we create an index, it may not be used. So how do we know the usage of our index? ? In MySQL, there are two variables, For more information on how to correctly create a MySQL index, please refer to the detailed explanation of how to correctly create a MySQL index. As we all know, table indexes can improve data retrieval efficiency, reduce database IO costs, and reduce database sorting costs. However, indexes are not always effective. For example, the following situations will cause index failure: 1. If there is an or in the condition, the index will not be used even if there is an index in the condition (this is why or is used as little as possible in SQL statements) Note: If you want to use or and make the index effective, you can only add an index to each column in the or condition. 2. For a multi-column index, the index will not be used unless it is the first part that is used. 3. When the like query starts with %, the index will not be used. 4. If the column type is a string, the data must be quoted in the condition, otherwise the index will not be used. 5. If MySQL estimates that a full table scan is faster than an index, the index is not used. In addition, view the usage of the index show status like 'Handler_read%'; Everyone can pay attention to: Summarize The above is the full content of this article. I hope that the content of this article will have certain reference learning value for your study or work. Thank you for your support of 123WORDPRESS.COM. If you want to learn more about this, please check out the following links You may also be interested in:
|
<<: Realizing provincial and municipal linkage effects based on JavaScript
>>: Simple use of Vue vee-validate plug-in
7 ways to implement a two-column layout with fixe...
Zabbix automatically discovers rules to monitor s...
We use the translate parameter to achieve movemen...
undefined In JavaScript, if we want to determine ...
Recently, the business side reported that some us...
1. Inline style, placed in <body></body&g...
Preface I had previously enabled Docker's 237...
Table of contents Problem Description Solution Pr...
When using Navicat to connect to a remote Linux M...
CSS Styles html,body{ width: 100%; height: 100%; ...
Use JS to implement object-oriented methods to ac...
1. Record several methods of centering the box: 1...
The following is some basic sql knowledge I have ...
1. COUNT(*) and COUNT(COL) COUNT(*) usually perfo...
Table of contents 1. Introduction 2. Principle II...