Detailed analysis of MySQL optimization of like and = performance

Detailed analysis of MySQL optimization of like and = performance

introduction

Most people who have used databases know the similarities and differences between the like and = signs in terms of function. Let me briefly summarize them here:

1. Differences: Like can be used for fuzzy query, while '=' does not support this function; as in the following example, query the data in the info table whose first letter of the field id is 1:

select * from info where id like '1%';

2. Similarities: Both like and "=" can be used for precise search.

For example, the following examples all query the results of the info table where the field id is equal to '12345':

select * from info where id like '12345';

The above are the similarities and differences between like and '=' in the returned results. Then curious friends may ask, what about the execution process? Is the execution process of MySQL the same whether it encounters like or '='?

That's right, things can't just be judged by their appearance. If you study carefully, you will find that like and the equal sign '=' are not that simple. Below we will analyze the real difference between the two in detail~~~

text

First, let's introduce the explain keyword in MySQL; explain means the execution plan, that is, use this command to see how this SQL is executed.
The usage is also very simple, that is, explain + sql statement, for example:

explain select * from info where id like '12345';

Then let's use explain to test the query under like and =. First, let's test the indexed fields:

EXPLAIN SELECT
 * 
FROM
 crms_customer 
WHERE
 id = '7cf79d7c8a3a4f94b5373b3ec392e32d';

Now let's replace "=" with like and try it:

EXPLAIN SELECT
 * 
FROM
 crms_customer 
WHERE
 id LIKE '7cf79d7c8a3a4f94b5373b3ec392e32d';

By comparing, you can see that the data in the type field and Extra field of the two returned results are different. Why are they different and what do they mean?

Type field

The type field is an optional value, and the values ​​are sorted from lowest to highest performance as follows:

type illustrate
SYSTEM System, table has only one row (= system table). This is a special case of the const join type.
CONST Constants. The table has at most one matching row. Since there is only one row, the column values ​​in this row can be considered constants by the rest of the optimizer. Const tables are fast because they are read only once.
EQ_REF Use primary key or unique type when searching
REF Find one or more values ​​by index
INDEX_MERGE Merge indexes to search using multiple single-column indexes
RANGE Searching the index column range
index Full index table scan
ALL Full table scan

It can be clearly seen from the table that const is a constant search, and RANGE is a range search on the index column, so the performance is clearly reflected.

So what does the Extra field represent when using a like query? What does Using where in the Extra field mean?

Extra Field

1. The Extra field is also a very important column in the Explain output, which represents important supplementary information of the query plan during the query execution process of the MySQL query optimizer.

2. Using where in the Extra field means that the MySQL server will filter after the storage engine retrieves the row. Therefore, compared to using '=', there is one more step in the search process.

Obviously, through the above summary we can conclude that when we use index fields for conditional queries, the performance of '=' is faster than that of like.

Do you think this is the end?

However, there is no

Some friends may ask, what about non-index fields?

Yes, let's continue testing non-indexed fields.

EXPLAIN SELECT
 * 
FROM
 crms_customer 
WHERE
 customer_name = 'Zhang Fei';
-----------------------------------
 
EXPLAIN SELECT
 * 
FROM
 crms_customer 
WHERE
 customer_name LIKE '张飞';

Let's run the same two statements except for "=" and like:
"=":

like:

It can be seen that when it is a non-index field, like and "=" are the same, and there is no difference in performance.

(Of course, there are many other fields in explain, and I will explain them one by one later.)

in conclusion

Through our unremitting efforts, we can draw the conclusion that when like and "=" are queried using non-indexed fields, their performance is the same; when using indexed fields, since "=" directly hits the index and is only read once, while like requires a range query, "=" has better performance than like. ~~~~

This is the end of this article about MySQL optimization of like and = performance. For more relevant MySQL like and = performance content, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Implementation of fuzzy query like%% in MySQL
  • Tutorial on using the LIKE clause in MySQL
  • Table replication in MySQL: create table like and create table as select
  • Summary of MySQL fuzzy query like and regexp
  • Explanation of the concept and usage of Like in MySQL

<<:  Use of Linux ipcs command

>>:  Details on how to write react in a vue project

Recommend

A brief discussion on CSS blocking merging and other effects

Non-orthogonal margins When margin is used, it wi...

Docker build PHP environment tutorial detailed explanation

Docker installation Use the official installation...

VUE+SpringBoot implements paging function

This article mainly introduces how to implement a...

Summary of Mysql-connector-java driver version issues

Mysql-connector-java driver version problem Since...

Sample code for displaying a scroll bar after the HTML page is zoomed out

Here is a record of how to make a scroll bar appe...

A simple method to regularly delete expired data records in MySQL

1. After connecting and logging in to MySQL, firs...

About the problem of running git programs in jenkins deployed by docker

1. First, an error message is reported when assoc...

A brief discussion on the understanding of TypeScript index signatures

Table of contents 1. What is an index signature? ...

Examples of new selectors in CSS3

Structural (position) pseudo-class selector (CSS3...

Example code for using @media in CSS3 to achieve web page adaptation

Nowadays, the screen resolution of computer monit...

How to create a virtual environment using virtualenv under Windows (two ways)

Operating system: windowns10_x64 Python version: ...

Solution to the problem that docker nginx cannot be accessed after running

## 1 I'm learning docker deployment recently,...

Vue implements a simple marquee effect

This article shares the specific code of Vue to a...