一:group_concat函數詳解
1.語法如下:
group_concat([DISTINCT] 要連接的字段 [Order BY ASC/DESC 排序字段] [Separator '分隔符'])
2.基本查詢:
select * from aa;
結果:
+------+------+ | id| name | +------+------+ |1 | 10| |1 | 20| |1 | 20| |2 | 20| |3 | 200 | |3 | 500 | +------+------+ 6 rows in set (0.00 sec)
3. 以id分組,把name字段的值打印在一行,逗號分隔(默認)
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)
4. 以id分組,把name字段的值打印在一行,分號分隔
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)
5. 以id分組,把去冗余的name字段的值打印在一行
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)
6. 以id分組,把name字段的值打印在一行,逗號分隔,以name排倒序
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)
二:group_concat函數與find_in_set()
1.直接看例子明了,首先看表的內容
2.選出name='yhb'的記錄
select name,group_concat(id) id from test where name='yhb';
結果為:
3.使用find_in_set篩選出name='yhb'的記錄,當然這只是為了演示函數有什么效果
select a.* from test a join ( select name,group_concat(id) id from test where name='yhb') b on find_in_set(a.id,b.id) order by a.id;
結果為:
4.使用!find_in_set篩選出name!='yhb'的記錄
select a.* from test a join ( select name,group_concat(id) id from test where name='yhb') b on !find_in_set(a.id,b.id) order by a.id;
結果為: