gpt4 book ai didi

sql - 如何按日期创建 SQL 多次计数计数查询?

转载 作者:行者123 更新时间:2023-11-29 13:19:25 25 4
gpt4 key购买 nike

我有一个按部门选择计数组的查询。

select department, count(*) group by department

这将返回两列数据结果。我想知道是否选择 cout,按今天计数和按本月计数相同的查询。

Department  Total  Today  ThisMonth
AAA 40 8 23
BBB 20 6 11

最佳答案

试试这个

select department,count(*),
sum(case when datecolumn= GETDATE() then 1 else 0 end) as Today,
sum(case when month(datecolumn) =month(GETDATE() and year(datecolumn) =year(GETDATE()) then 1 else 0 end) as ThisMonth
from YourTable
group by department

关于sql - 如何按日期创建 SQL 多次计数计数查询?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44404539/

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