How to modify the length limit of the Group_conca function in MySQL

Source: Internet
Author: User
Tags mysql in
This article brings the content is about MySQL in the Group_conca function of how to modify its length limit, there is a certain reference value, the need for friends can refer to, I hope to help you.

In MySQL, there is a function called "Group_concat", the usual use may not find the problem, in the processing of big data, you will find that the content is intercepted,
In fact, MySQL internal to this is set, the default is not set the length is 1024, if we need to be larger, we need to manually modify

Detailed description is as follows:

After using Group_concat, the Select has no effect if the limit is used.

There is a length limit for connecting fields with Group_concat, not how many are connected. But you can set it up a bit.

Using the Group_concat_max_len system variable, you can set the maximum allowable length.

The system default delimiter is a comma

How to modify:

SET [SESSION | GLOBAL] Group_concat_max_len = 10240

The parameters that can be modified are as follows
Group_concat adds the value of a field to a specified number of characters, the system default delimiter is a comma, and the character length that can be summed is 1024 bytes.

1. Give a simple example first

Select Group_concat (f_a) from T_one Group by F_b;

Group queries by F_b, accumulating the f_a in each group.

2. Modify the default delimiter

Select Group_concat (f_a  Separator  ' _ ') from T_one Group by F_b;

Separator is a keyword followed by the character to be delimited

3. Sorting

Select Group_concat (f_a order by f_a  Separator  ' _ ') from T_one Group by F_b;

4. Modify the default character size

1) in the MySQL configuration file, add

Group_concat_max_len = 102400 #你要的最大长度

2) can be simple, execute the statement, you can set the scope

SET GLOBAL group_concat_max_len=102400; SET SESSION group_concat_max_len=102400;

5, and Concat use
Group_concat default is to return a blob large object, you can use Concat, return the string, but also in the returned content, in addition to other data.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.