A brief discussion on several situations where adding indexes to MySQL does not take effect

A brief discussion on several situations where adding indexes to MySQL does not take effect

Adding indexes can improve query efficiency.

Adding an index means adding an index file, which stores the address of the data, similar to the directory of our document. During the search process, you do not need to search from the contents of the book, but can directly search according to the page number corresponding to the directory. Indexes are searched based on addresses.
Create an index. There are many data structures used by the index. Common ones are B-tree, hash, etc. The default database index used by MySQL is innerDB, and the index structure of innerDB is B-tree.
But in what situations will adding indexes fail to achieve the expected results during use? Here are some common situations:
Assume that name age address have been indexed. The index names are index_name, index_age, and index_address.

Use explain to view the SQL execution plan

Execution plan type

Indicates the way MySQL finds the required row in the table, also known as the "access type". Common types are as follows:

ALL, index, range, ref, eq_ref, const, system, NULL
ALL: Full Table Scan, MySQL will traverse the entire table to find matching rows
index: Full Index Scan. The difference between index and ALL is that the index type only traverses the index tree.
range: Index range scan, the scan of the index starts at a certain point and returns the rows that match the value range. The obvious index range scan is a query with a between or where clause with <, >. When MySQL uses an index to find a range of values, such as IN() and OR lists, it will also display a range scan, of course, there are differences in performance.
ref: Use a non-unique index scan or a prefix scan of a unique index to return rows that match a single value
eq_ref: Similar to ref, the difference is that the index used is a unique index. For each index key value, there is only one matching record in the table. In simple terms, the primary key or unique key is used as the join condition in multi-table joins.

1. Use or to query multiple columns, type=all

insert image description here

2. Use fuzzy query, type=all

insert image description here

3. Operations on indexed fields

insert image description here

4. If the column type is a string, it needs to be quoted. The name field is a string type

Without quotes type=all

insert image description here

There are quotation marks tye=ref

insert image description here

First of all, MySQL has a type conversion rule that converts "characters to numbers". The above SQL contains operations:
explain SELECT name,age,address FROM user where cast(name as signed)= 10;

5. Reverse query distinction

(not, not in, not like, <>, !=, !>, !<) Use index effects

insert image description here

insert image description here

insert image description here

insert image description here

insert image description here

insert image description here

Other situations

1. The associated fields in the joint index do not use the same character set;
2. The first index field is not used in the joint index query, that is, the leftmost principle is not met;
3. The amount of data itself is small, and MySQL will determine whether an index is needed;

This concludes this article on several situations in which adding an index to MySQL does not work. For more information about adding an index to MySQL not working, please search for previous articles on 123WORDPRESS.COM or continue browsing the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • MySql cache query principle and cache monitoring and index monitoring introduction
  • MySQL series 9 MySQL query cache and index
  • Rules for using mysql joint indexes
  • MySQL sorting using index scan
  • What is a MySQL index? Ask if you don't understand

<<:  Detailed explanation of Vue life cycle functions

>>:  Better looking CSS custom styles (title h1 h2 h3)

Recommend

Detailed explanation of various ways to merge javascript objects

Table of contents Various ways to merge objects (...

Three ways to share component logic in React

Without further ado, these three methods are: ren...

Linux system MySQL8.0.19 quick installation and configuration tutorial diagram

Table of contents 1. Environment Introduction 2. ...

MySQL 8.0.18 installation and configuration method graphic tutorial under MacOS

This article records the installation of MySQL 8....

MYSQL subquery and nested query optimization example analysis

Check the top 100 highest scores in game history ...

Detailed explanation of Nginx status monitoring and log analysis

1. Nginx status monitoring Nginx provides a built...

SQL-based query statements

Table of contents 1. Basic SELECT statement 1. Qu...

vue-router history mode server-side configuration process record

history route History mode refers to the mode of ...

How to implement the paging function of MyBatis interceptor

How to implement the paging function of MyBatis i...

Mini Program Recording Function Implementation

Preface In the process of developing a mini progr...

How to set up remote access to a server by specifying an IP address in Windows

We have many servers that are often interfered wi...

Vue uses dynamic components to achieve TAB switching effect

Table of contents Problem Description What is Vue...

How to use MySQL stress testing tools

1. MySQL's own stress testing tool - Mysqlsla...