gpt4 book ai didi

php - SQL查询每天汇总数据

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

我使用以下 SQL 查询从 MySQL 数据库中获取数据。

select
classid,start,
count(case when classid='Handball' then 1 end) as handball_count
from signature where classid='Handball'
group by start

日期例如 2016.12.01。 10:51:58 格式。

它应该以每天为基础,例如 2016.12.01。 10:51:582016.12.01。 15:51:58 不应是此查询中的不同条目。我应该如何按天分组?我想总结每天每项事件的参与者,并且不按参与者签名的日期分隔。

最佳答案

你可以试试这个

SELECT count(case when classid='Handball' then 1 end) as handball_count,
classid,DATE(start) DateOnly
FROM signature where classid='Handball'
GROUP BY DateOnly;

关于php - SQL查询每天汇总数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40925251/

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