Detailed explanation of how to query fields containing '%' in MySQL like (ESCAPE usage)

Detailed explanation of how to query fields containing '%' in MySQL like (ESCAPE usage)

In the SQL like statement, for example

SELECT * FROM user WHERE username LIKE '%luchi%'
SELECT * FROM user WHERE username LIKE '_luchi_',
  • % as a wildcard to match multiple
  • _ as a wildcard

But when the field to be queried by like contains %, how do we check:

At this time, you need to specify that the '%' in the field is not used as a wildcard;
Here we need to use ESCAPE escape

test:

Here we use this table

lc

Before escaping:

SELECT * FROM user WHERE username LIKE '%%%'; 


Here you will find that the three % signs are all treated as wildcards;

After escaping:

SELECT * FROM user WHERE username LIKE '%1%%' ESCAPE '1'; 


Query successful

Note:

  • ESCAPE is followed by a character, and what is written inside is the escape character;
  • Then just like the escape characters in C language, such as '\n', '\t', write this character before the % sign you need to escape;

Tips and Suggestions:

MySQL wildcards are very useful. This functionality comes at a cost, however: wildcard searches generally take longer to process than the other searches discussed previously. Here are some tips to remember when using wildcards.

  • Don't overuse wildcards. If other operators can achieve the same purpose, you should use other operators.
  • When you do need to use wildcards, don't use them at the beginning of a search pattern unless absolutely necessary. Placing the wildcard at the beginning of the search pattern is the slowest search.
  • Note carefully the placement of the wildcard characters. If placed in the wrong place, it may not return the expected number.

This is the end of this article on how to use MySQL like to query fields containing '%' (ESCAPE usage). For more information about MySQL like 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:
  • Detailed explanation of the usage of the ESCAPE keyword in MySQL
  • Analysis of mysql_escape_string() Function Usage
  • Detailed use cases of MySql escape

<<:  Native JS to achieve blinds special effects

>>:  Solution to Nginx SSL certificate configuration error

Recommend

CentOS 7 cannot access the Internet after modifying the network card

Ping www.baidu.com unknown domain name Modify the...

Web design dimensions and rules for advertising design on web pages

1. Under 800*600, if the width of the web page is...

How to install binary MySQL on Linux and crack MySQL password

1. Make sure the system has the required libaio s...

Docker dynamically exposes ports to containers

View the IP address of the Container docker inspe...

Operate on two columns of data as new columns in sql

As shown below: select a1,a2,a1+a2 a,a1*a2 b,a1*1...

Detailed installation and configuration tutorial of mysql5.7 on CentOS

Install Make sure your user has permission to ins...

Apache Bench stress testing tool implementation principle and usage analysis

1: Throughput (Requests per second) A quantitativ...

XHTML 1.0 Reference

Arrange by functionNN : Indicates which earlier ve...

Detailed explanation of basic syntax and data types of JavaScript

Table of contents Importing JavaScript 1. Interna...

Understanding the MySQL query optimization process

Table of contents Parsers and preprocessors Query...

Mysql 8.0.18 hash join test (recommended)

Hash Join Hash Join does not require any indexes ...

How to implement batch deletion of large amounts of data in MySQL large tables

The question is referenced from: https://www.zhih...