gpt4 book ai didi

mysql - 按结果获取分组数

转载 作者:太空宇宙 更新时间:2023-11-03 10:58:31 25 4
gpt4 key购买 nike

我正在使用 group by 计算某些列。它返回表单的结果,

col1 计数

日期 1

日期 2

我想进一步计算这个结果,以便它返回 3

我将如何实现这一点?

SELECT t.p_date
,count(t.p_date) AS saturday
FROM t_p_booking t
WHERE t.p_id IN (
220
,221
)
AND dayofweek(t.p_date) = 7
AND date_format(t.p_date, '%Y%m') = : ccyymm
GROUP BY t.p_date

最佳答案

WITH ROLLUP 添加到 GROUP BY 子句的末尾

关于mysql - 按结果获取分组数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18084403/

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