数据库|Mysql的group_concat函数长度限制

Mysql版本 mysql5.7
MySQL5.7及以上版本有GROUP_CONCAT函数,
其作用是返回一个组合所有值的字符串。
使用演示
select group_concat(xxx order by aaasc/descreparator-) from table;

GROUP_CONCAT其他语法
GROUP_CONCAT还可以对字段属性进行排序、去重、自定义拼接分隔符。
去重、降序、使用逗号分割查询
select name group_concat(distinct xxx order by aaasc/descreparator-) from table groupby name;


去重、升序、使用&符号分割查询
select name,GROUP_CONCAT(DISTINCT age order by age asc SEPARATOR '&') from t1 GROUP BY name;

GROUP_CONCAT超长截断问题

GROUP_CONCAT拼接的最大长度默认为1024字节,超过这个长度则会被截断,可以通过SET [GLOBAL | SESSION] group_concat_max_len = val; 进行修改。
比如修改GROUP_CONCAT长度为1个字节。
【数据库|Mysql的group_concat函数长度限制】SET SESSION group_concat_max_len = 1;

当再查询时,拼接的结果被截断
select name group_concat(distinct xxx order by aaasc/descreparator-) from table groupby name;
注意:
不过最终的长度还是受到max_allowed_packet的限制,其大小默认为4M,最大为1G。

    推荐阅读