有没有人发现限制 group_concat 行的(简单)方法?
Posted
技术标签:
【中文标题】有没有人发现限制 group_concat 行的(简单)方法?【英文标题】:Has anybody discovered a (simple) way to limit group_concat rows? 【发布时间】:2011-09-01 05:31:35 【问题描述】:我有一个很大的查询要从每个国家/地区提取有关报告的信息,而现在,我可以限制它的唯一方法是在末尾输入Limit 10
或某个数字,这将限制国家/地区。但是,我想要做的是将 group_concat
限制为每个国家/地区 10 个结果,在我的情况下,这会以某种方式将每个单词 group_concat
的实例限制为 10 个。
我目前的查询是:
SELECT country,
GROUP_CONCAT(docID),
GROUP_CONCAT(analyst),
GROUP_CONCAT(region),
GROUP_CONCAT(report),
GROUP_CONCAT(topic),
MAX((date)) AS date,
MAX((docID)) AS docID,
GROUP_CONCAT(date) AS dates,
GROUP_CONCAT(event) AS events,
GROUP_CONCAT(province) AS provinces
FROM reports GROUP BY country
ORDER BY date DESC, docID DESC
我看到有人问过这个问题,但我还没有看到任何真正好的答案。我知道该功能没有内置在 mysql 中,因为您只能根据字符进行限制。以前有人解决过这个问题吗?
【问题讨论】:
我认为您必须执行“每组前 N 个”查询并将 group_concat 应用于其结果。 哇,这可能需要编写很多额外的代码。会弄乱它一秒钟。 嘎...不要使用重复的字符串连接。使查询难以阅读。请改用heredoc (php.net/heredoc),这样您就可以拥有被一些PHP 包围的“纯”sql。 【参考方案1】:解决方法
一种选择是用 空格#
填充您的值。所以 group_concat 中的每个项目都是相同的长度。
让我们假设没有超过 20 个字符的项目。
那么您的查询将是:
SET group_concat_max_len = 10*20+9; /*execute this first.*/
/*10 items, 20 bytes each + 9 bytes for the separator*/
SELECT country,
REPLACE(GROUP_CONCAT(RIGHT(CONCAT(repeat('#',20),docID),20)),'#','') AS docIDs,
REPLACE(GROUP_CONCAT(RIGHT(CONCAT(repeat('#',20),analyst),20)),'#','') AS analysts,
REPLACE(GROUP_CONCAT(RIGHT(CONCAT(repeat('#',20),region,20)),'#','') AS regions,
REPLACE(GROUP_CONCAT(RIGHT(CONCAT(repeat('#',20),report,20)),'#','') AS reports,
REPLACE(GROUP_CONCAT(RIGHT(CONCAT(repeat('#',20),topic,20)),'#','') AS topics,
MAX((date)) AS `date`, /* LATEST DATE*/
MAX((docID)) AS docID, /* LATEST DOC*/
REPLACE(GROUP_CONCAT(RIGHT(CONCAT(repeat('#',20),date,20)),'#','') AS dates,
REPLACE(GROUP_CONCAT(RIGHT(CONCAT(repeat('#',20),event,20)),'#','') AS events,
REPLACE(GROUP_CONCAT(RIGHT(CONCAT(repeat('#',20),province,20)),'#','') AS provinces
FROM reports
GROUP BY country ORDER BY `date` DESC, docID DESC
回顾一下:
x= CONCAT(repeat('#',20),docID) adds 20 x #################### in front of docID
y= RIGHT(X,20) Takes the rightmost 20 chars of that
z= GROUP_CONCAT(y) strings these together up to max_len
result = REPLACE(z,'#','') removes the `#` so the result looks normal.
或编写您自己的 group_concat 版本 您可以使用自己的 group_concat UDF。 网上流传着几个例子。
例如:http://www.codeproject.com/KB/database/mygroupconcat.aspx?display=Mobile
【讨论】:
@RVWard,因为您没有显示group_concat
的所有 值,您可以考虑将语句更改为group_concat(x order by
date` desc, docID desc) 或者您可能会得到意想不到的结果。 Group_concat
需要你看到它自己的 order 子句。【参考方案2】:
这是我限制每个用户发帖的示例之一
select user_id,SUBSTRING_INDEX(group_concat(posts.id order by rand()),',',3) from posts inner join users on users.id = posts.user_id group by posts.user_id;
【讨论】:
以上是关于有没有人发现限制 group_concat 行的(简单)方法?的主要内容,如果未能解决你的问题,请参考以下文章
MYSQL中group_concat有长度限制!默认1024