Mysql中關於 group_concat函數詳解

來源:互聯網
上載者:User

標籤:des   style   http   color   java   art   ar   代碼   

group_concat()主要功能:能將相同的行組合起來

 

完整的文法如下:


group_concat([DISTINCT] 要串連的欄位 [Order BY ASC/DESC 排序欄位] [Separator ‘分隔字元‘])

 

基本查詢

 

Sql代碼  
  1. select * from aa;  


+------+------+
| id| name |
+------+------+
|1 | 10|
|1 | 20|
|1 | 20|
|2 | 20|
|3 | 200 |
|3 | 500 |
+------+------+
6 rows in set (0.00 sec)

 

以id分組,把name欄位的值列印在一行,逗號分隔(預設)

 

Sql代碼  
  1. select id,group_concat(name) from aa group by id;  


+------+--------------------+
| id| group_concat(name) |
+------+--------------------+
|1 | 10,20,20|
|2 | 20 |
|3 | 200,500|
+------+--------------------+
3 rows in set (0.00 sec)

 

以id分組,把name欄位的值列印在一行,分號分隔

 

Java代碼  
  1. select id,group_concat(name separator ‘;‘) from aa group by id;  


+------+----------------------------------+
| id| group_concat(name separator ‘;‘) |
+------+----------------------------------+
|1 | 10;20;20 |
|2 | 20|
|3 | 200;500 |
+------+----------------------------------+
3 rows in set (0.00 sec)

 

以id分組,把去冗餘的name欄位的值列印在一行,


逗號分隔

 

Sql代碼  
  1. select id,group_concat(distinct name) from aa group by id;  


+------+-----------------------------+
| id| group_concat(distinct name) |
+------+-----------------------------+
|1 | 10,20|
|2 | 20 |
|3 | 200,500 |
+------+-----------------------------+
3 rows in set (0.00 sec)

 

以id分組,把name欄位的值列印在一行,逗號分隔,以name排倒序

 

Sql代碼  
  1. select id,group_concat(name order by name desc) from aa group by id;  


+------+---------------------------------------+
| id| group_concat(name order by name desc) |
+------+---------------------------------------+
|1 | 20,20,10 |
|2 | 20|
|3 | 500,200|
+------+---------------------------------------+
3 rows in set (0.00 sec)

 

測試sql,項目中用到的。

Sql代碼  
    1. SELECT  
    2.         EMPLOYEES.EMPID  
    3.         ,EMPLOYEES.EMPNAME  
    4.         ,DEPARTMENTS.DEPARTMENTNAME  
    5.         ,EMPLOYEES.DEPTID  
    6.         ,EMPLOYEES.EMPPWD  
    7.         ,EMPLOYEES.INSIDEEMAIL  
    8.         ,EMPLOYEES.OUTSIDEEMAIL  
    9.         ,EMPLOYEES.DELEFLAG  
    10.         ,EMPLOYEES.EMPCLASS  
    11.         ,(CONCAT(‘[‘, <span style="color: #ff0000;">GROUP_CONCAT</span>  
    12. (ROLE.Role_Name SEPARATOR ‘],[‘), ‘]‘)) AS ROLENAME  
    13.         ,(concat( ‘[‘, (  
    14.             SELECT  
    15.                     <span style="color: #ff0000;">GROUP_CONCAT</span>  
    16. (DEPARTMENTS.DEPARTMENTNAME separator ‘],[‘)  
    17.                 FROM  
    18.                     EMP_ROLE_DEPT  
    19.                         LEFT JOIN DEPARTMENTS  
    20.                             ON (  
    21.                                 DEPARTMENTS.DEPARTMENTID = EMP_ROLE_DEPT.DEPTID  
    22.                                 AND DEPARTMENTS.DELEFLAG = 0  
    23.                             )  
    24.                 GROUP BY  
    25.                     EMP_ROLE_DEPT.EMPID  
    26.                 HAVING  
    27.                     EMP_ROLE_DEPT.EMPID = EMPLOYEES.EMPID  
    28.         ),‘]‘)) AS DEPARTMENTRIGHT  
    29.     FROM  
    30.         EMPLOYEES  
    31.             LEFT JOIN DEPARTMENTS  
    32.                 ON (  
    33.                     DEPARTMENTS.DEPARTMENTID = EMPLOYEES.DEPTID  
    34.                     AND DEPARTMENTS.DELEFLAG = 0  
    35.                 )  
    36.             LEFT JOIN ROLE_EMP  
    37.                 ON (ROLE_EMP.EMP_ID = EMPLOYEES.EMPID)  
    38.             LEFT JOIN ROLE  
    39.                 ON (ROLE_EMP.ROLE_ID = ROLE.ROLE_ID)  
    40. <span style="color: #ff0000;">    GROUP BY  
    41.         EMPLOYEES.EMPID</span>  
    42.   
    43.     HAVING  
    44.         EMPLOYEES.EMPID LIKE ‘%%‘  
    45.         AND EMPLOYEES.EMPNAME LIKE ‘%%‘  
    46.         AND EMPLOYEES.DELEFLAG = 0  
    47.         AND (  
    48.             EMPLOYEES.EMPCLASS = ‘1‘  
    49.             OR EMPLOYEES.EMPCLASS = ‘2‘  
    50.         )  
    51.         AND EMPLOYEES.DEPTID = ‘001‘ LIMIT 0  
    52.         ,16   
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.