The day before yesterday, I encountered a problem in the production environment: the data selected using the Then I thought of the familiar number 1024. Could it be that the C++ framework was processed when receiving the data transmitted by MySQL through the socket? So I manually printed this field in the log and found that even if the data length exceeds 1024 bytes, it can still be displayed completely. 1. Find the cause At this point, we can only start from SQL statements. I searched online for questions about GROUP_CONCAT data truncation, and the answers all pointed to the group_concat_max_len parameter, whose default value is exactly 1024. You can view this default value directly in the database using the following command: mysql> show variables like 'group_concat_max_len'; +----------------------+-------+ | Variable_name | Value | +----------------------+-------+ | group_concat_max_len | 1024 | +----------------------+-------+ 1 row in set (0.00 sec) mysql> The MySQL official manual defines it as The maximum permitted result length in bytes for the 2. Problem Solving Just adjust Since BZ's test virtual machine MySQL5.7.19 is 64-bit, group_concat_max_len can be configured to the maximum value by the following two methods: #### Method 1: Modify the MySQL configuration file my.cnf and add group_concat_max_len = 18446744073709551615 in the [mysqld] node #### Method 2: Directly set the console to take effect immediately -- [Required operation] Change the global configuration---- SET GLOBAL group_concat_max_len=18446744073709551615; -- [Optional operation] Make the configuration take effect immediately in the current session. Other logged-in session terminals need to be restarted for the configuration to take effect. SET SESSION group_concat_max_len=18446744073709551615; 3 Test results The second method is used here. By executing Summarize The above is the perfect solution to the problem of data truncation when using the group concat function in Mysql5.7. I hope it will be helpful to you. If you have any questions, please leave me a message and I will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website! You may also be interested in:
|
<<: Some details about semicolons in JavaScript
>>: Apache Spark 2.0 jobs take a long time to finish when they are finished
Mac uses Shell (Terminal) SSH to connect to the r...
To be honest, this question involves a lot of cor...
Table of contents Effect demonstration:Main JS co...
There is such a requirement: an import button, cl...
When the resolution of the login interface is par...
The command line mysqld –skip-grant-tables cannot...
environment Hostname ip address Serve Jenkins 192...
The position property The position property speci...
The recommended code for playing background music ...
The BGCOLOR attribute can be used to set the back...
Why learn vim Linux has a large number of configu...
When making a web page, you sometimes use a dividi...
[LeetCode] 177.Nth Highest Salary Write a SQL que...
There are four main MySQL string interception fun...
Table of contents Introduction to utf8mb4 UTF8 by...