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
Every time after installing the system, I have to...
In the past, I used to directly order by rand() t...
Table of contents 1. Simple mounting of persisten...
Table of contents 1. Pull the image 2. Create a l...
background CVE-2021-21972 An unauthenticated comm...
Install FFmpeg flac eric@ray:~$ sudo apt install ...
Monitoring method in Vue watch Notice Name: You s...
The Docker container provides services and listen...
There is no data directory, my-default.ini and my...
This article example shares the specific code of ...
Generally, the colspan attribute of the <td>...
I don't know if you have ever encountered suc...
This article originated from my complaints about ...
First of all, the blogger is playing the communit...
MongoDB installation process and problem records ...