MySQL GROUP_CONCAT limitation solution

MySQL GROUP_CONCAT limitation solution

effect:

The GROUP_CONCAT function can concatenate a field value into a string. The default separator is a comma, i.e., ",

If you need a custom separator, you can use SEPARATOR

like:

SELECT GROUP_CONCAT(name SEPARATOR '_') FROM user

limit:

The default length of the string concatenated by GROUP_CONCAT is 1024 bytes. If it exceeds this length, it will be truncated.

Query the default length:

Order

SHOW VARIABLES LIKE 'group_concat_max_len'

Operation method: (as shown in the picture)

Adjust the length setting method:

(1) Add the following to the MySQL configuration file:

File: my.ini

Additional settings:

group_concat_max_len = 102400

(2) SQL statement:

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

Note: The disadvantage of this method is that the settings will become invalid after restarting the service

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • How to modify the length limit of group_concat in Mysql
  • Perfect solution to the problem of data being truncated when using the group concat function in Mysql5.7
  • A brief discussion on the sorting method of the group_concat() function in MySQL
  • Summary of mysql group_concat() function usage
  • Analysis of traps in using the MySQL statistical function GROUP_CONCAT
  • MySql uses GROUP_CONCAT to merge multiple data displays
  • mysql uses group_concat() to merge multiple rows of data into one row
  • MySQL group_concat function usage examples
  • In-depth understanding of group_concat function in MySQL
  • How to use the Mysql GROUP_CONCAT() function

<<:  Vue keeps the user logged in (various token storage methods)

>>:  How to change password and set password complexity policy in Ubuntu

Recommend

The difference and usage of datetime and timestamp in MySQL

1. How to represent the current time in MySQL? In...

Docker FAQ

Docker only maps ports to IPv6 but not to IPv4 St...

Eight common SQL usage examples in MySQL

Preface MySQL continued to maintain its strong gr...

Comparative Analysis of IN and Exists in MySQL Statements

Background Recently, when writing SQL statements,...

How to solve the problem of forgetting the root password of Mysql on Mac

I haven't used mysql on my computer for a lon...

CSS complete parallax scrolling effect

1. What is Parallax scrolling refers to the movem...

Three ways to check whether a port is open in a remote Linux system

This is a very important topic, not only for Linu...

Using CSS3 to achieve transition and animation effects

Why should we use CSS animation to replace JS ani...

Improvement experience and sharing of 163 mailbox login box interactive design

I saw in the LOFTER competition that it was mentio...

Example analysis of the usage of the new json field type in mysql5.7

This article uses an example to illustrate the us...

Detailed explanation of how to use join to optimize SQL in MySQL

0. Prepare relevant tables for the following test...

MySQL 8.0.22 winx64 installation and configuration method graphic tutorial

The database installation tutorial of MySQL-8.0.2...

CSS3 achieves flippable hover effect

CSS3 implements a flippable hover effect. The spe...

How to check if a table exists in MySQL and then delete it in batches

1. I searched for a long time on the Internet but...

Solution to Vue's inability to watch array changes

Table of contents 1. Vue listener array 2. Situat...