How to use regular expression query in MySql

How to use regular expression query in MySql

Regular expressions are often used to search and replace text that matches a certain pattern. For example, extracting phone numbers from a text file, finding repeated words in an article, or replacing certain sensitive words entered by the user. MySQL uses the REGEXP keyword to specify a regular expression character matching pattern.

目錄

1. The character '^' searches for records that begin with a specific character or string

SELECT * FROM user WHERE email REGEXP '^a'

The character '^' matches records that begin with a specific character or string. The above statement queries records whose mailboxes begin with a

2. Characters' Query records ending with a specific character or string

SELECT * FROM user WHERE phone REGEXP '0$'

The character '$' matches records ending with a specific character or string. The above statement queries records ending with 0 in the mailbox.

3. Use the symbol "." to replace any character in the string

SELECT * FROM user WHERE email REGEXP 'a.c'

Query the records with a character between mailboxes a and c. '.' is equivalent to a placeholder. If it is written as REGEXP 'a..c', that is, there are two dots between a and c, it means that there must be two characters between a and c in the mailbox.

4. Use "*" to match multiple characters

SELECT * FROM user WHERE email REGEXP 'm*'

Query all mailboxes containing m.

SELECT * FROM user WHERE email REGEXP '^am*'

Query the mailboxes that start with letter a and are followed by letter m. Where '*' means 0 or more times.

5. Use the character "+" to represent the following character

SELECT * FROM user WHERE email REGEXP 'm+'

Query all mailboxes containing m.

SELECT * FROM user WHERE email REGEXP '^am+'

Query the mailboxes that start with the letter a, followed by the letter m. Where '+' means the character that follows.

6. “|” separates the conditions to match the specified string

SELECT * FROM user WHERE email REGEXP 'qq.com|163.com'

Regular expressions can match specified strings, and strings are separated by "|".

7. “[]” means the set matches any one of the specified strings

SELECT * FROM user WHERE email REGEXP '[az]'

"[]" specifies a set. The above means querying mailboxes with a or z or both. It can also be used to match a set of numbers, for example, [0-9] means all numbers in the set, and [az] means all letters in the set.

8. “[^]” matches any character other than the specified character

SELECT * FROM user WHERE email REGEXP '[^a-d1-3]'

The above matches the records that do not contain a, b, c, d and do not contain 1, 2, 3 in the mailbox.

9. Use {n,} or {n,m} to specify the number of times the string concatenation occurs

SELECT * FROM user WHERE email REGEXP 'b{2}'

Indicates that the letter b appears at least 2 times.

SELECT * FROM user WHERE email REGEXP 'yu{1,3}'

It means that the string ba appears at least once and at most three times.

Summarize

The above is the method of using regular expression query in MySql introduced by the editor. I hope it will be helpful to everyone. If you have any questions, please leave me a message and the editor will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website!

You may also be interested in:
  • How to use regular expression query in mysql
  • mysql regular expression query contains non-digits and characters records
  • Detailed explanation of MySql basic query, join query, subquery, regular expression query
  • Summary of classic examples of MySQL query operations using regular expressions
  • MySql official manual study notes 2 MySql fuzzy query and regular expression
  • MySQL complete collapse query regular matching detailed explanation

<<:  Learn the key knowledge that must be mastered in the Vue framework

>>:  Summary of shell's method for determining whether a variable is empty

Recommend

MySQL 5.7.20 free installation version configuration method graphic tutorial

I have seen many relevant tutorials on the Intern...

WeChat applet implements video player sending bullet screen

This article shares the specific code for WeChat ...

Detailed tutorial on installing nvidia driver + CUDA + cuDNN in Ubuntu 16.04

Preparation 1. Check whether the GPU supports CUD...

Using JS to implement binary tree traversal algorithm example code

Table of contents Preface 1. Binary Tree 1.1. Tra...

Nginx reverse proxy springboot jar package process analysis

The common way to deploy a springboot project to ...

FastDFS and Nginx integration to achieve code analysis

FastDFS & Nginx Integration: The tracker is c...

Notes on upgrading to mysql-connector-java8.0.27

Recently, an online security scan found a vulnera...

JavaScript to implement input box content prompt and hidden function

Sometimes the input box is small, and you want to...

Master-slave synchronous replication configuration of MySQL database under Linux

The advantage of the master-slave synchronization...

Solve the problem of Nginx returning 404 after configuring proxy_pass

Table of contents 1. Troubleshooting and locating...

Tutorial on installing Tomcat server under Windows

1 Download and prepare First, we need to download...

mysql 8.0.16 winx64.zip installation and configuration method graphic tutorial

This article shares the specific code of MySQL 8....

The HTML 5 draft did not become a formal standard

<br />Yesterday I saw at W3C that the new HT...