gpt4 book ai didi

mysql 组连接

转载 作者:行者123 更新时间:2023-11-30 23:38:25 25 4
gpt4 key购买 nike

如何分组连接?这是我的查询

select t.date, group_concat(count(*)) from table1 t
group by t.date

但它返回错误“无效使用组函数”

如果我使用这样的查询

select t.date, count(*) from table1 t
group by t.date

然后它返回以下输出,但我想 group_concat 这个输出

2011-01-01  100
2011-01-02 97
2011-01-03 105

最佳答案

SELECT GROUP_CONCAT(`cnt` ORDER BY `date`) 
FROM (
SELECT t.`date`, COUNT(*) AS `cnt`
FROM `table1` t
GROUP BY t.`date`
) d

关于mysql 组连接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5530748/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com