How to optimize the slow Like fuzzy query in MySQL

How to optimize the slow Like fuzzy query in MySQL

1. Introduction:

I built a "Student Management System" in which there is a student table and four tables (group table, class table, tag table, city table) for joint fuzzy query, the efficiency is very low, so I thought about how to improve the efficiency of like fuzzy query

Note: Before reading this blog, please check: How to view the execution time of SQL statements in MySQL

2. The first idea is to build an index

1. The like %keyword index is invalid, so a full table scan is used.

2. Like keyword% index is valid.

3. Like %keyword% index is invalid, use full table scan.

Tested using explain:

Original table (Note: the case uses the student table as an example)

-- User table create table t_users(
                        id int primary key auto_increment,
-- Username varchar(20),
-- Password password varchar(20),
-- Real name real_name varchar(50),
-- Gender 1 means male 0 means female sex int,
--birth date,
-- Mobile phone number mobile varchar(11),
-- The uploaded avatar path head_pic varchar(200)
);

Create an index

#create index index name on table name (column name);                 
create index username on t_users(username);

Like %keyword% index is invalid, use full table scan

explain select id,username,password,real_name,sex,birth,mobile,head_pic 
 from t_users where username like '%h%';

like keyword% index is valid.

 explain select id,username,password,real_name,sex,birth,mobile,head_pic 
 from t_users where username like 'wh%';

Like %keyword index is invalid, and full table scan is used.

3. INSTR

I had never heard of this at first, but after looking up some information today, I learned about this precious thing.

instr(str,substr) : Returns the position of the first occurrence of substr in string str. If the string is not found, it returns 0, otherwise it returns the position (starting from 1)

#instr(str,substr) method select id,username,password,real_name,sex,birth,mobile,head_pic 
      from t_users  
      where instr(username,'wh')>0 #0.00081900
#Fuzzy query select id,username,password,real_name,sex,birth,mobile,head_pic 
        from t_users 
        where username like 'whj'; # 0.00094650

The main reason why the efficiency difference between the two is not big is that the data is small. It is best to prepare more original data for testing for the best effect.

P.S. Does Like use index?

1. The like %keyword index is invalid, so a full table scan is used. But you can use flip function + fuzzy query before like + create flip function index = use flip function index instead of full table scan.

2. Like keyword% index is valid.

3. The like %keyword% index is invalid and the reverse index cannot be used.

Summarize

This is the end of this article about how to optimize the slow Like fuzzy query in MySQL. For more information about optimizing the slow Like fuzzy query in MySQL, please search for previous articles on 123WORDPRESS.COM or continue to browse the related articles below. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Detailed introduction to the use of MySql like fuzzy query wildcards
  • How to solve the slow speed of MySQL Like fuzzy query
  • Implementation of fuzzy query like%% in MySQL
  • Some summary of MySQL's fuzzy query like

<<:  Install .NET 6.0 in CentOS system using cloud server

>>:  Quick understanding of Vue routing navigation guard

Recommend

About the problem of offline installation of Docker package on CentOS 8.4

The virtual machine used is CentOS 8.4, which sim...

JS version of the picture magnifying glass effect

This article shares the specific code of JS to ac...

jQuery canvas generates a poster with a QR code

This article shares the specific code for using j...

Spring Boot layered packaging Docker image practice and analysis (recommended)

Table of contents 1. Prepare the springboot proje...

Install zip and unzip command functions under Linux and CentOS (server)

Install zip decompression function under Linux Th...

How to create https using nginx and Tencent Cloud free certificate

I have been studying how to get https. Recently I...

JavaScript to achieve floor effect

This article shares the specific code of JavaScri...

Detailed analysis of classic JavaScript recursion case questions

Table of contents What is recursion and how does ...

IE8 provides a good experience: Activities

Today I had a sneak peek at IE8 beta 1 (hereafter...

How to implement Docker volume mounting

The creation of the simplest hello world output i...

How to use react-color to implement the front-end color picker

background We can use react-color to implement th...

JavaScript canvas to achieve scratch lottery example

This article shares the specific code of JavaScri...

Example to explain the size of MySQL statistics table

Counting the size of each table in each database ...