MySQL Truncating of result when using Group_Concat and Concat

后端 未结 2 1567
后悔当初
后悔当初 2020-12-18 03:13

I have the following SQL (I have removed some of the selesct fi:

SELECT node_revisions.title                          AS \'Task\', 
       node_revisions.bod         


        
2条回答
  •  被撕碎了的回忆
    2020-12-18 03:59

    GROUP_CONCAT() is, by default, limited to 1024 bytes.

    To work around this limitation and allow up to 100 KBytes of data, add group_concat_max_len=102400 in my.cnf or query the server using SET GLOBAL group_concat_max_len=102400.

提交回复
热议问题