MySQL 和 GROUP_CONCAT() 最大长度
我在 MySQL 查询中使用 GROUP_CONCAT()
将多行转换为单个字符串。 但是,此函数结果的最大长度为 1024
个字符。
我非常清楚我可以更改参数group_concat_max_len
来增加此限制:
SET SESSION group_concat_max_len = 1000000;
但是,在我正在使用的服务器上,我无法更改任何参数。不是通过使用前面的查询,也不是通过编辑任何配置文件。
所以我的问题是: 有没有其他方法可以将多行查询的输出转换为单个字符串?
I'm using GROUP_CONCAT()
in a MySQL query to convert multiple rows into a single string.
However, the maximum length of the result of this function is 1024
characters.
I'm very well aware that I can change the param group_concat_max_len
to increase this limit:
SET SESSION group_concat_max_len = 1000000;
However, on the server I'm using, I can't change any param. Not by using the preceding query and not by editing any configuration file.
So my question is:
Is there any other way to get the output of a multiple row query into a single string?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(7)
是一个临时的、会话范围的设置。它仅适用于当前会话您应该像这样使用它。
即使在共享主机中也可以执行此操作,但是当您使用其他会话时,您需要重复
SET SESSION
命令。is a temporary, session-scope, setting. It only applies to the current session You should use it like this.
You can do this even in sharing hosting, but when you use an other session, you need to repeat the
SET SESSION
command.设置最大长度的正确参数是:
value_numeric
必须 > 1024;默认情况下,group_concat_max_len
值为 1024。The correct parameter to set the maximum length is:
value_numeric
must be > 1024; by default thegroup_concat_max_len
value is 1024.将此设置包含在 xampp my.ini 配置文件中:
然后重新启动 xampp mysql
Include this setting in xampp my.ini configuration file:
Then restart xampp mysql
你可以试试这个
You can try this
正确的语法是 mysql>
SET @@global.group_concat_max_len = 整数;
如果您没有权限在数据库所在的服务器上执行此操作,请使用如下查询:
mySQL=
"SET @@session.group_concat_max_len = 10000;"
或其他值。下一行:
SET objRS = objConn.Execute(mySQL)
您的变量可能不同。那么
mySQL="SELECT GROUP_CONCAT(......);"
等我使用最后一个版本,因为我没有全局更改默认值 1024 的权限(使用 cPanel)。
希望这有帮助。
The correct syntax is mysql>
SET @@global.group_concat_max_len = integer;
If you do not have the privileges to do this on the server where your database resides then use a query like:
mySQL=
"SET @@session.group_concat_max_len = 10000;"
or a different value.Next line:
SET objRS = objConn.Execute(mySQL)
your variables may be different.then
mySQL="SELECT GROUP_CONCAT(......);"
etcI use the last version since I do not have the privileges to change the default value of 1024 globally (using cPanel).
Hope this helps.
简短的回答:需要在建立与 MySQL 服务器的连接时设置该设置。例如,如果使用 MYSQLi / PHP,它将看起来像这样:
因此,如果您使用自制框架,那么,您需要在建立连接时在代码中查找位置并提供一个合理的值。
2020年我还在使用Codeigniter 3,所以在这个框架中,要添加的代码在application/system/database/drivers/mysqli/mysqli_driver.php中,函数名为db_connect();
The short answer: the setting needs to be setup when the connection to the MySQL server is established. For example, if using MYSQLi / PHP, it will look something like this:
Therefore, if you are using a home-brewed framework, well, you need to look for the place in the code when the connection is establish and provide a sensible value.
I am still using Codeigniter 3 on 2020, so in this framework, the code to add is in the application/system/database/drivers/mysqli/mysqli_driver.php, the function is named db_connect();
这个查询有点奇怪,但它不需要另一个查询来初始化变量;并且它可以嵌入到更复杂的查询中。
它返回所有由分号分隔的“field2”。
This query is a bit strange but it does not need another query to initialize the variable; and it can be embedded in a more complex query.
It returns all the 'field2's separated by a semicolon.