vlambda博客
学习文章列表

MySQL一列多值拼接函数group_concat

示例

1.单列多行合并单行单列展示

select group_concat(name) as name from student where classId = 1

执行结果如下图:


2.多列拼接,多列多行值合并成单行单列显示

select group_concat(name,sex) as name from student where classId = 1


执行结果如下图:

3. 值排序拼接

 select group_concat(name order by id desc) as name from student where classId = 1


函数相关配置

1.group_concat长度:

group_concat默认最大长度是1024,超过截取前1024长度字符。

2.查询group_concat长度SQL

show variables like 'group_concat_max_len';

3.更改group_concat长度配置

①修改MYSQL的配置文件my.ini(需要重启mysql服务):

group_concat_max_len = 2048;

②执行语句

SET GLOBAL group_concat_max_len=1024000;SET SESSION group_concat_max_len=1024000;