is there a length limit to group_concat or another reason why it would not work on a text field

后端 未结 1 1083
既然无缘
既然无缘 2020-12-03 14:50

First, here is the query:

SELECT GROUP_CONCAT(title) title, GROUP_CONCAT(description) description,
skill_id, count(*)

FROM jobs j
INNER JOIN job_feed_detail         


        
相关标签:
1条回答
  • 2020-12-03 15:23

    The group_concat result length is limited(truncated) to the value of the group_concat_max_len system variable. The default value of this variable is 1024.

    If you want change the value of the variable the syntax is:

    SET [GLOBAL | SESSION] group_concat_max_len = val;
    

    More info Mysql 5 docs

    0 讨论(0)
提交回复
热议问题