Detailed explanation of concat related functions in MySQL

Detailed explanation of concat related functions in MySQL

1. concat() function

Function: Concatenate multiple strings into one string

Syntax: concat(str1,str2,…) The string can be either a data table field or a specified string.

The return result is a string generated by the connection parameters. If any parameter is null, the return value of the record is null.

2. concat_ws() function

Function: Like concat(), it concatenates multiple strings into one string, but you can specify the separator at one time (concat_ws is concat with separator)

Syntax: concat_ws(separator,str1,str2,…)

Note: The first parameter specifies the separator. It should be noted that the separator cannot be null. If it is null, all returned results will be null.

3. group_concat() function

Let’s look at this requirement first:

Where user_id is the user id, fee is the consumption amount, and time is the consumption timestamp.

In the consumption record table, you need to find out the details of all consumption amounts for each user.

Obviously, a single group by is not enough to meet this requirement:

select max(time),fee from consumption group by user_id

The relationship between the fields after group by is staggered. We can only filter a certain field, but cannot guarantee that they belong to the same record.

At this time, the group_concat() function is used:

select user_id,GROUP_CONCAT(time,':',fee) from consumption group by user_id

The following results are obtained:

By processing the results, we can easily display the desired effect on the page.

Summarize

The above is the concat related functions 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 the concat function in mysql
  • A brief discussion on the concat function in MySQL. How to add a string before or after a field in MySQL
  • Detailed explanation of the usage of the concat function in MySQL (connecting strings)
  • Summary of mysql group_concat() function usage
  • Analysis of traps in using the MySQL statistical function GROUP_CONCAT
  • CONCAT Function Usage Tutorial in MySQL
  • Mysql database uses concat function to execute SQL injection query
  • In-depth understanding of group_concat function in MySQL
  • How to use the Mysql GROUP_CONCAT() function

<<:  Install Ubuntu 18 without USB drive under Windows 10 using EasyUEFI

>>:  Records of using ssh commands on Windows 8

Recommend

Pure CSS to achieve the water drop animation button in Material Design

Preface You should often see this kind of special...

A brief discussion of four commonly used storage engines in MySQL

Introduction to four commonly used MySQL engines ...

JavaScript Html to implement the mobile red envelope rain function page

This article example shares the specific code of ...

Understand CSS3 Grid layout in 10 minutes

Basic Introduction In the previous article, we in...

Some methods to optimize query speed when MySQL processes massive data

In the actual projects I participated in, I found...

Detailed steps for installing JDK and Tomcat on Linux cloud server (recommended)

Download and install JDK Step 1: First download t...

How to elegantly back up MySQL account information

Preface: I recently encountered the problem of in...

Solve the problem that IN subquery in MySQL will cause the index to be unusable

Today I saw a case study on MySQL IN subquery opt...

Summary of basic knowledge points of MySql database

Table of contents Basic database operations 2) Vi...

Encapsulation method of Vue breadcrumbs component

Vue encapsulates the breadcrumb component for you...

Tutorial on using the frameset tag in HTML

Frameset pages are somewhat different from ordina...

4 ways to view processes in LINUX (summary)

A process is a program code that runs in the CPU ...

Implementing license plate input function in WeChat applet

Table of contents Preface background Big guess Fi...

Forever+nginx deployment method example of Node site

I recently bought the cheapest Tencent cloud serv...