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
You can try this
SET GLOBAL group_concat_max_len = 1000000;