Explanation of the concept and usage of Like in MySQL

Explanation of the concept and usage of Like in MySQL

Like means "like" in Chinese, but when applied to MySQL database, Like is a statement used for fuzzy query, mainly for character fields, to retrieve the corresponding substring in a character field column. This article introduces the Like statement in MySQL.

1. What does Like mean?

1. Like is considered a predicate in MySQL, and its application is similar to the usage of symbols such as is, =, >, and <.

2. In the SQL structured query language, the like statement plays a vital role.

3. In a sense, Like can be seen as a streamlined regular expression function.

2. Like function

The syntax of the like statement is

select * from table name where field name like corresponding value (substring)

Function: Mainly for character fields, to search for corresponding substrings in a character field column.

3. Like Support Types

Like mainly supports two wildcard characters, "_" and "%".

1. "_" represents matching one arbitrary character and is often used as a placeholder;

2. "%" means matching 0 or more arbitrary characters.

4. Two usage scenarios of Like

1. The field values ​​stored in the database are more accurate, and the parameters are fuzzy values ​​(this is usually the case);

2. The field values ​​stored in the database are fuzzy values, and the parameters are more precise values.

Knowledge point expansion:

In MySQL, the SQL mode is case-insensitive by default. Some examples are shown below. Note that when you use SQL mode, you cannot use = or ! =; use the LIKE or NOT LIKE comparison operator.

SELECT field FROM table WHERE a field Like condition

Regarding conditions, SQL provides four matching modes:

%: represents any one or more characters. Matches characters of any type and length.

for example

SELECT * FROM [user] WHERE u_name LIKE '%三%'

This is the end of this article about the concept and usage of Like in MySQL. For more information about what Like means in MySQL, please search 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:
  • Implementation of fuzzy query like%% in MySQL
  • Detailed analysis of MySQL optimization of like and = performance
  • Tutorial on using the LIKE clause in MySQL
  • Table replication in MySQL: create table like and create table as select
  • Summary of MySQL fuzzy query like and regexp

<<:  Detailed explanation of several ways to remove the gap between inline-block elements in CSS

>>:  Vue computed properties

Recommend

Solution for Docker Swarm external verification load balancing not taking effect

Problem Description I created three virtual machi...

MySQL 8.0.20 installation and configuration method graphic tutorial

MySQL download and installation (version 8.0.20) ...

The whole process of developing a Google plug-in with vue+element

Simple function: Click the plug-in icon in the up...

Detailed basic operations on data tables in MySQL database

Table of contents 1. View the tables in the curre...

Detailed explanation of routes configuration of Vue-Router

Table of contents introduce Object attributes in ...

Example of using CSS to achieve floating effect when mouse moves over card

principle Set a shadow on the element when hoveri...

React Hooks Common Use Scenarios (Summary)

Table of contents 1. State Hook 1. Basic usage 2....

A brief discussion on the lazy loading attribute pattern in JavaScript

Table of contents 1. Introduction 2. On-demand at...

Summary of Vue's cross-domain problem handling and solutions

When you send a network request, the following sa...

Summary of clipboard.js usage

Table of contents (1) Introduction: (2) The ways ...

Example of using swiper plugin to implement carousel in Vue

Table of contents vue - Use swiper plugin to impl...

Example code for implementing anti-shake in Vue

Anti-shake: Prevent repeated clicks from triggeri...

Vue method to verify whether the username is available

This article example shares the specific code of ...