1. concat() function Function: Concatenate multiple strings into one string Syntax: 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: 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:
|
<<: Install Ubuntu 18 without USB drive under Windows 10 using EasyUEFI
>>: Records of using ssh commands on Windows 8
1. Install mysql: udo apt-get install mysql-serve...
Preface You should often see this kind of special...
Introduction to four commonly used MySQL engines ...
This article example shares the specific code of ...
Basic Introduction In the previous article, we in...
In the actual projects I participated in, I found...
Download and install JDK Step 1: First download t...
Preface: I recently encountered the problem of in...
Today I saw a case study on MySQL IN subquery opt...
Table of contents Basic database operations 2) Vi...
Vue encapsulates the breadcrumb component for you...
Frameset pages are somewhat different from ordina...
A process is a program code that runs in the CPU ...
Table of contents Preface background Big guess Fi...
I recently bought the cheapest Tencent cloud serv...