Detailed use cases of MySql escape

Detailed use cases of MySql escape

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 the SQL LIKE statement, for example

select * from user where username like '%nihao%',select * from user where username like '_nihao',

Among them, % is used as a wildcard to match multiple characters, and _ is used as a wildcard to match only one character.

If you really want to search for usernames that contain % _ , you need to stop using them as wildcards.

Escape % _ in like, take _ as an example,

Before escaping: select * from user where username like '_nihao',

After escaping: select * from user where username like '/_nihao' escape '/', which means that the _ after / is not used as a wildcard

#Case 3: Query the employee names whose second character is _

SELECT
    last_name
FROM
    employees
WHERE
    last_name LIKE '_$_%' ESCAPE '$';

This is the end of this article about the use of MYSQL escape. For more information on the use of MYSQL escape, please search for previous articles on 123WORDPRESS.COM 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 how to query fields containing '%' in MySQL like (ESCAPE usage)
  • Detailed explanation of the usage of the ESCAPE keyword in MySQL
  • Analysis of mysql_escape_string() Function Usage

<<:  Mini Program to implement Token generation and verification

>>:  Detailed explanation of the practical use of HTML table layout

Recommend

Mariadb remote login configuration and problem solving

Preface: The installation process will not be des...

Docker generates images through containers and submits DockerCommit in detail

Table of contents After creating a container loca...

Solve the problems encountered when installing MySQL 8.0 on Win10 system

The problems and solutions encountered when insta...

Solve the error of installing VMware Tools on Ubuntu 18.04

1. According to the online tutorial, the installa...

Detailed tutorial on installing Docker and nvidia-docker on Ubuntu 16.04

Table of contents Docker Installation Nvidia-dock...

A brief analysis of the differences between undo, redo and binlog in MySQL

Table of contents Preface 【undo log】 【redo log】 【...

Summary of event handling in Vue.js front-end framework

1. v-on event monitoring To listen to DOM events,...

How to build svn server in linux

1: Install SVN yum install -y subversion 2. Creat...

Discussion on image path issues in css (same package/different package)

In CSS files, sometimes you need to use background...

Pure CSS3 to create page switching effect example code

The one I wrote before is too complicated, let’s ...

Vue+express+Socket realizes chat function

This article shares the specific code of Vue+expr...