How to extract string elements from non-fixed positions in MySQL

How to extract string elements from non-fixed positions in MySQL

Preface

Note: The test database version is MySQL 8.0

Test data:

create table zqs(id int,str varchar(1000));

insert into zqs(id,str) values ​​(1,'【JD.com】abc【China Telecom】');
insert into zqs(id,str) values ​​(1,'【JD.com】abc【China Telecom】def');
insert into zqs(id,str) values ​​(1,'****【JD.com】abc【China Telecom】def');
insert into zqs(id,str) values ​​(1,'****【JD.com】abc');
insert into zqs(id,str) values ​​(1,'【JD.com】abc【China Telecom】【China Unicom】');

1. Demand

We often encounter similar requirements as SMS, and need to extract SMS tag information, but there may be multiple SMS tags.

This example assumes that there are at most 3 tags and needs to be output as follows:

mysql> select * from zqs;
±-----±----------------------------------------------------+
| id | str |
±-----±----------------------------------------------------+
| 1 | 【JD.com】abc【China Telecom】 |
| 1 | 【JD.com】abc【China Telecom】def |
| 1 | ****【JD.com】abc【China Telecom】def |
| 1 | ****【JD.com】abc |
| 1 | 【JD.com】abc【China Telecom】【China Unicom】 |
±-----±----------------------------------------------------+

The required output is as follows:

±-------------±-------------------±-------------------+
| first_val | first_va2 | first_va3 |
±-------------±-------------------±-------------------+
| 【JD.com】 | 【China Telecom】 | |
| 【JD.com】 | 【China Telecom】 | |
| 【JD.com】 | 【China Telecom】 | |
| 【JD.com】 | | |
| 【JD.com】 | 【China Telecom】 | 【China Unicom】 |
±-------------±-------------------±-------------------+

2. Solution

Oracle string interception functions substr and instr can be used together, but MySQL's instr function is weaker than Oracle's instr function.

At this time, you need to use the MySQL regular expression regexp_instr function and substr function

select substr(str,
   regexp_instr(str,'【',1,1),
   regexp_instr(str,'】',1,1) - regexp_instr(str,'【',1,1) + 1 ) first_val, 
  substr(str,
   regexp_instr(str,'【',1,2),
   regexp_instr(str,'】',1,2) - regexp_instr(str,'【',1,2) + 1) first_va2, 
  substr(str,
   regexp_instr(str,'【',1,3),
   regexp_instr(str,'】',1,3) - regexp_instr(str,'【',1,3) + 1) first_va3
 from zqs;

Testing Log:

mysql> select substr(str,
 -> regexp_instr(str,'【',1,1),
 -> regexp_instr(str,'】',1,1) - regexp_instr(str,'【',1,1) + 1 ) first_val,
 -> substr(str,
 -> regexp_instr(str,'【',1,2),
 -> regexp_instr(str,'】',1,2) - regexp_instr(str,'【',1,2) + 1) first_va2,
 -> substr(str,
 -> regexp_instr(str,'【',1,3),
 -> regexp_instr(str,'】',1,3) - regexp_instr(str,'【',1,3) + 1) first_va3
 -> from zqs;
+--------------+--------------------+--------------------+
| first_val | first_va2 | first_va3 |
+--------------+--------------------+--------------------+
| 【JD.com】 | 【China Telecom】 | |
| 【JD.com】 | 【China Telecom】 | |
| 【JD.com】 | 【China Telecom】 | |
| 【JD.com】 | | |
| 【JD.com】 | 【China Telecom】 | 【China Unicom】 |
+--------------+--------------------+--------------------+
5 rows in set (0.00 sec)

Summarize

This is the end of this article about how to extract string elements from non-fixed positions in MySQL. For more information about extracting string elements from MySQL, 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!

<<:  Vue implements a simple marquee effect

>>:  Example code for implementing ellipse trajectory rotation using CSS3

Recommend

Solution to the problem of insufficient storage resource pool of Docker server

Table of contents 1. Problem Description 2. Probl...

JavaScript to implement dynamic digital clock

This article shares the specific code for impleme...

MySQL 5.7.18 Archive compressed version installation tutorial

This article shares the specific method of instal...

How to explain TypeScript generics in a simple way

Table of contents Overview What are Generics Buil...

CentOS7 installation zabbix 4.0 tutorial (illustration and text)

Disable SeLinux setenforce 0 Permanently closed: ...

JavaScript to show and hide the drop-down menu

This article shares the specific code for JavaScr...

Hyperlink icon specifications: improve article readability

1. What is the hyperlink icon specification ?<...

Implementing the preview function of multiple image uploads based on HTML

I recently wrote a script for uploading multiple ...

TypeScript problem with iterating over object properties

Table of contents 1. Problem 2. Solution 1. Decla...

Solution to changing the data storage location of the database in MySQL 5.7

As the data stored in the MySQL database graduall...

A brief discussion on Python's function knowledge

Table of contents Two major categories of functio...

HTML table tag tutorial (13): internal border style attributes RULES

RULES can be used to control the style of the int...

Analysis of the event loop mechanism of js

Preface As we all know, JavaScript is single-thre...

Implementation of Docker private library

Installing and deploying a private Docker Registr...