Detailed explanation of the problem of matching even when there is a space at the end of the string in the Mysql query condition

Detailed explanation of the problem of matching even when there is a space at the end of the string in the Mysql query condition

1. Table structure

TABLE person

id name
1 you
2 You (a space)
3 You (two spaces)

2. Query and Results

select * from person where `name` = ?

regardless? = "you + a few spaces", all three results will be retrieved.

3. Reasons

MySQL's collation rules are PADSPACE, which ignores trailing spaces.

It is aimed at text data types such as varchar char text...

This is SQL standardized behavior. No settings are required and cannot be changed.

4. What if you want to make an accurate query?

Method 1: like

select * from person where `name` like ?

Method 2: BINARY

select * from person where `name` = BINARY ?

BINARY is not a function, but a type conversion operator. It is used to force the string behind it to be a binary string, which can be understood as an exact match.

The above are all the relevant knowledge points introduced this time. If you have any additions, please contact the editor of 123WORDPRESS.COM.

You may also be interested in:
  • MySQL retrieves data based on the JSON field content as a query condition (including JSON arrays)
  • The difference and reasons between the MySQL query conditions not in and in
  • Detailed explanation of common usage of MySQL query conditions
  • Will the index be used in the MySQL query condition?
  • Analysis of the difference between placing on and where in MySQL query conditions
  • MySQL explains how to optimize query conditions

<<:  JavaScript using Ckeditor + Ckfinder file upload case detailed explanation

>>:  Using jQuery to implement the carousel effect

Recommend

HTML form tag tutorial (1):

Forms are a major external form for implementing ...

Complete steps to install FFmpeg in CentOS server

Preface The server system environment is: CentOS ...

What you need to know about creating MySQL indexes

Table of contents Preface: 1. Create index method...

Detailed explanation of fuser command usage in Linux

describe: fuser can show which program is current...

JavaScript design pattern chain of responsibility pattern

Table of contents Overview Code Implementation Pa...

Detailed tutorial on installation and configuration of MySql 5.7.17 winx64

1. Download the software 1. Go to the MySQL offic...

How to let DOSBox automatically execute commands after startup

Using DOSBox, you can simulate DOS under Windows ...

Ubuntu 19.04 installation tutorial (picture and text steps)

1. Preparation 1.1 Download and install VMware 15...

React Router V6 Updates

Table of contents ReactRouterV6 Changes 1. <Sw...

JavaScript code to implement Weibo batch unfollow function

A cool JavaScript code to unfollow Weibo users in...

Implementation of building Kubernetes cluster with VirtualBox+Ubuntu16

Table of contents About Kubernetes Basic environm...