Detailed explanation of the usage of the ESCAPE keyword in MySQL

Detailed explanation of the usage of the ESCAPE keyword in MySQL

MySQL escape

Escape means the original semantics of the escape character. The purpose of an escape character is to start a character sequence so that the character sequence starting with the escape character has different semantics than when the character sequence appears alone.

In MySQL, the escape character starts with "\". The escape characters commonly used in programming are all valid in MySQL and will not be described or discussed here. Here, the role of the ESCAPE keyword is mainly explained through "%" and "_".

%: Matches any number of characters.

_: Matches a single character.

If we want to match "%" or "_", we must use "\" to escape, as follows:

### Query users whose names contain the character "明"> SELECT * FROM user WHERE name LIKE CONCAT("%", "明", "%")
 
### Query users whose names contain the % character> SELECT * FROM user WHERE name LIKE CONCAT("%", "\%", "%")

Usage of ESCAPE

The main function of the ESCAPE keyword is to specify a character to replace the "\".

### Query users whose names contain the "%" character> SELECT * FROM user WHERE name LIKE CONCAT("%", "$%", "%") ESCAPE "$"
 
### Query users whose names contain the "_" character> SELECT * FROM user WHERE name LIKE CONCAT("%", "a_", "%") ESCAPE "a"

It should be noted that all characters indicated by ESCAPE in the query conditions will replace the function of "\".

### Assume there are two users named %a and %_> SELECT * FROM user WHERE name LIKE "a%_" ESCAPE "a" ### %a %_ 
> SELECT * FROM user WHERE name LIKE "a%a" ESCAPE "a" ### %a 
> SELECT * FROM user WHERE name LIKE "a%a_" ESCAPE "a" ### %_

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

<<:  Detailed explanation of the implementation process of Nginx enabling Brotli compression algorithm

>>:  HTML table markup tutorial (6): dark border color attribute BORDERCOLORDARK

Recommend

React introduces antd-mobile+postcss to build mobile terminal

Install antd-mobile Global import npm install ant...

MySQL 8.0 DDL atomicity feature and implementation principle

1. Overview of DDL Atomicity Before 8.0, there wa...

A brief analysis of MySQL's WriteSet parallel replication

【Historical Background】 I have been working as a ...

Detailed explanation of MySQL three-value logic and NULL

Table of contents What is NULL Two kinds of NULL ...

Detailed tutorial on installing MySQL offline on CentOS7

1. Delete the original mariadb, otherwise mysql c...

Example code for implementing raindrop animation effect with CSS

Glass Windows What we are going to achieve today ...

MySQL date processing function example analysis

This article mainly introduces the example analys...

Detailed explanation of how to use the mysql backup script mysqldump

This article shares the MySQL backup script for y...

Using MySQL database with Python 3.4 under Windows 7

The detailed process of using MySQL database with...

Detailed explanation of Vue element plus multi-language switching

Table of contents Preface How to switch between m...

How to understand the difference between computed and watch in Vue

Table of contents Overview computed watch monitor...

Detailed explanation of tcpdump command examples in Linux

Preface To put it simply, tcpdump is a packet ana...

How to enable the slow query log function in MySQL

The MySQL slow query log is very useful for track...

How to run Python script on Docker

First create a specific project directory for you...