MySQL and GROUP_CONCAT() maximum length

前端 未结 7 892
难免孤独
难免孤独 2020-11-22 15:24

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

相关标签:
7条回答
  • 2020-11-22 15:51

    You can try this

    SET GLOBAL group_concat_max_len = 1000000;
    
    0 讨论(0)
提交回复
热议问题