In the previous article, I wrote a cross-table update. When I saw the SQL I wrote, I felt like a fool and wrote about cross-table updates. A year passed quickly, and the two employees New demands are coming, coming quietly! ! ! The leader wants to see who is under each performance, and at the same time requires that the names of these people be concatenated into a string with commas, that is, to get the following result: How do you concatenate strings for a specified column in the result set? The protagonist shines brightly✨ GROUP_CONCAT(expr) In the official MySQL documentation, this function is placed in the aggregate function section. If you want to group and concatenate by a specified field, you must use it with the keyword definition The function returns a string result that is the concatenation of GROUP_CONCAT([DISTINCT] expr [,expr ...] [ORDER BY {unsigned_integer | col_name | expr} [ASC | DESC] [,col_name ...]] [SEPARATOR str_val]) What? This syntax looks too complicated. Don’t worry. I will use examples to explain and verify it one by one. Use Cases First complete the requirements at the beginning of the article: SELECT performance, GROUP_CONCAT(employee_name) AS employees FROM employees GROUP BY performance; Zou is the result: At this point, the requirements given by the leader have been completed😜 Sir, please stay, the dishes you ordered have not been served yet... We are an international team, our hometowns are all over the world The leader wants to care about his employees and wants to check where the hometowns of all the employees in the company are. Employees may come from the same place, so to remove duplicates from the result set, the SELECT GROUP_CONCAT(DISTINCT home_town) FROM employees; Let’s look at the results: The care of leaders is everywhere... The copywriting needs to be changed. The leader's care is SELECT GROUP_CONCAT(DISTINCT home_town ORDER BY home_town DESC) AS 'Leadership Care Area' FROM employees; -- No one uses variables like me, and it's Chinese. I think you are crazy. Here you can see that the default separator for the The default separator between grouped values is a comma (,). To specify the delimiter explicitly, use the SELECT GROUP_CONCAT(DISTINCT home_town ORDER BY home_town DESC SEPARATOR '!') AS 'Leadership Care Region' FROM employees; SELECT GROUP_CONCAT(DISTINCT home_town SEPARATOR '') AS 'Leadership Care Area' FROM employees; This is quite caring, right? Think about it carefully! ! ! The leader's caring ability is also limited. The default maximum length of the concatenated string is 1024 characters. You can view the current limit through the following statement: show variables like 'group_concat_max_len'; The ability of a leader is volatile, so we can set this value flexibly. SET [GLOBAL | SESSION] group_concat_max_len = val; SESSION: effective in the current session GLOBAL: effective globally After this statement is executed, it will take effect until MySQL is restarted. Once MySQL is restarted, the default value will be restored. Sometimes Separate the consumer's first and last name with a comma, and then with a SELECT GROUP_CONCAT( CONCAT_WS(', ', contactLastName, contactFirstName) SEPARATOR ';') FROM customers; Here is the CONCAT_WS() function usage, it is very simple, please check it out for yourself... Note ⚠️ The GROUP_CONCAT() function returns a single string, not a list of values. This means that we cannot use the result of the GROUP_CONCAT() function in an IN operator, for example, in a subquery, like this: SELECT id, name FROM table_name WHERE id IN GROUP_CONCAT(id); Summarize In many cases, we can use the GROUP_CONCAT() function to produce useful results, and we can also combine it with other functions to achieve greater power. You may also be interested in:
|
<<: Linux general java program startup script code example
>>: Tutorial on installing Ubuntu 20.04 and NVIDIA drivers
Table of contents Preliminary preparation Impleme...
Table of contents 1. Introduction 2. Detailed exp...
Table of contents 1. Basic environment configurat...
Operation effectCode Implementation html <div ...
1. Packetdrill compilation and installation Sourc...
Search online to delete duplicate data and keep t...
The significance of writing order Reduce browser ...
You can manage and deploy Docker containers in a ...
This status code provides information about the s...
Preface Using css to generate dotted lines is a p...
Cause of the problem: At first, the default yum s...
When we use the like % wildcard, we often encount...
Preface: In MySQL, views are probably one of the ...
<br />Not long ago, due to business needs, I...
This article is mysql database Question 1 Import ...