I\'m using GROUP_CONCAT() in a MySQL query to convert multiple rows into a single string. However, the maximum length of the result of this function is 10
GROUP_CONCAT()
10
The correct parameter to set the maximum length is:
SET @@group_concat_max_len = value_numeric;
value_numeric must be > 1024; by default the group_concat_max_len value is 1024.
value_numeric
group_concat_max_len