A brief discussion on the implementation of fuzzy query using wildcards in MySQL

A brief discussion on the implementation of fuzzy query using wildcards in MySQL

In the MySQL database, when we need fuzzy query, we will use wildcards.

First, let's understand two concepts, one is the operator and the other is the wildcard.

Operators

Like is an operator in SQL statements. Its function is to indicate that the search pattern following the SQL statement is to be compared using wildcards instead of direct equality matching.

Note: If you use the like operator without wildcards, the effect is the same as the equal sign.

SELECT id,title FROM table WHERE title like '张三';

This way of writing can only match Zhang San's record, but not records like Zhang San is a good person.

Wildcards

% (percent sign) and _ (underscore) are wildcards. % means any character can appear any number of times (can be 0 times), and _ means a single character. The user is as follows:

1 SELECT id,title FROM table WHERE title like '张三%';
2 SELECT id,title FROM table WHERE title like '%张三';
3 SELECT id,title FROM table WHERE title like '%张三%';

1 means matching records that start with Zhang San, 2 means matching records that end with Zhang San, and 3 means matching records that contain Zhang San.

1 SELECT id,title FROM table WHERE title like '张三_';
2 SELECT id,title FROM table WHERE title like '__张三';

1 means matching records like Hello Zhangsan, and 2 means matching records like Hello Zhangsan.

Usage Notes

Pay attention to case. When using fuzzy matching, that is, matching text, MySQL may be case-sensitive or insensitive. The result depends on how the user configures MySQL.

Note the trailing space.

Note that NULL and % can match any character, but cannot match NULL.

Fair Use

MySQL wildcards are very useful, but this functionality comes at a price. Wildcard searches generally take longer to process than the other searches discussed earlier. Here are some tips to remember when using wildcards.

Do not overuse wildcards; use other operators if they can achieve the same purpose.

When you do need to use wildcards, do not use them at the beginning of the search pattern unless absolutely necessary. Placing wildcards at the beginning of the search pattern makes the search slowest.

Pay careful attention to the placement of the wildcard characters; if they are misplaced, the expected number may not be returned.

This is the end of this article about MySQL wildcard fuzzy query. For more information about MySQL wildcard fuzzy query, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • MySQL fuzzy query usage (regular, wildcard, built-in function)
  • Summary of MySQL database like statement wildcard fuzzy query
  • Mysql | Detailed explanation of fuzzy query using wildcards (like,%,_)
  • A brief discussion on wildcard escape in MySQL fuzzy query
  • MYSQL Must-know Reading Notes Chapter 8: Using Wildcards for Filtering
  • Things to note when using wildcards in MySQL
  • Detailed introduction to the use of MySql like fuzzy query wildcards
  • mysql regular expression LIKE wildcard
  • mysql wildcard (sql advanced filtering)

<<:  Tomcat9 download, installation and configuration + detailed tutorial on integrating into eclipse

>>:  JS realizes video barrage effect

Recommend

Summary of new usage examples of computed in Vue3

The use of computed in vue3. Since vue3 is compat...

Summary of JavaScript JSON.stringify() usage

Table of contents 1. Usage 1. Basic usage 2. The ...

docker logs - view the implementation of docker container logs

You can view the container logs through the docke...

CSS performance optimization - detailed explanation of will-change usage

will-change tells the browser what changes will h...

Determine whether MySQL update will lock the table through examples

Two cases: 1. With index 2. Without index Prerequ...

Semanticization of HTML tags (including H5)

introduce HTML provides the contextual structure ...

MySQL 5.7.17 latest installation tutorial with pictures and text

mysql-5.7.17-winx64 is the latest version of MySQ...

This article will help you understand JavaScript variables and data types

Table of contents Preface: Kind tips: variable 1....

6 solutions for network failure in Docker container

6 solutions for network failure in Docker contain...

An article to help you thoroughly understand position calculation in js

Table of contents introduction scroll Element.scr...

Analysis of Difficulties in Hot Standby of MySQL Database

I have previously introduced to you the configura...

JS uses canvas technology to imitate echarts bar chart

Canvas is a new tag in HTML5. You can use js to o...

MySQL trigger trigger add, delete, modify and query operation example

This article uses examples to describe the add, d...

Mysql Chinese sorting rules description

When using MySQL, we often sort and query a field...