MySQL Variables group_concat_max_len 数据库 参数变量解释及正确配置使用

本站中文解释

MySQL参数group_concat_max_len是一个整型参数,用于控制GROUP_CONCAT函数的计算结果字符的最大长度。 若为0,则表示没有最大限制,无限制;若为非0,则表示返回值最大长度为此值。

要设置MySQL参数group_concat_max_len,需要以下步骤:
1. 在MySQL客户端进行连接;
2. 输入以下SQL语句:
SET GLOBAL group_concat_max_len=1024;
3. 执行上述语句,完成设置。

官方英文解释

group_concat_max_len

Command-Line Format --group-concat-max-len=#
System Variable group_concat_max_len
Scope Global, Session
Dynamic Yes
Type Integer
Default Value 1024
Minimum Value 4
Maximum Value (64-bit platforms) 18446744073709551615
Maximum Value (32-bit platforms) 4294967295

The maximum permitted result length in bytes for the
GROUP_CONCAT() function. The
default is 1024.


数据运维技术 » MySQL Variables group_concat_max_len 数据库 参数变量解释及正确配置使用