MySQL 补全24小时缺失数据为0

一共两个版本, 一是补全的, 二是不补全的
使用时只需改把 report_time 改成你的数据库时间字段, city_task表也更改下即可

        select a.times,ifnull(b.count,0) as num

        from (

        SELECT "00:00" as times

        union all

        SELECT "01:00" as times

        union all

        SELECT "02:00" as times

        union all

        SELECT "03:00" as times

        union all

        SELECT "04:00" as times

        union all

        SELECT "05:00" as times

        union all

        SELECT "06:00" as times

        union all

        SELECT "07:00" as times

        union all

        SELECT "08:00" as times

        union all

        SELECT "09:00" as times

        union all

        SELECT "10:00" as times

        union all

        SELECT "11:00" as times

        union all

        SELECT "12:00" as times

        union all

        SELECT "13:00" as times

        union all

        SELECT "14:00" as times

        union all

        SELECT "15:00" as times

        union all

        SELECT "16:00" as times

        union all

        SELECT "17:00" as times

        union all

        SELECT "18:00" as times

        union all

        SELECT "19:00" as times

        union all

        SELECT "20:00" as times

        union all

        SELECT "21:00" as times

        union all

        SELECT "22:00" as times

        union all

        SELECT "23:00" as times

        ) a left join (

        SELECT

        DATE_FORMAT(report_time, '%H:00') AS hours,

        count(*)  AS count

        FROM

        city_task

        WHERE
        ! ISNULL(report_time)
        <if test="dto.startTime != null">
            AND create_time &gt; #{dto.startTime}
        </if>
        <if test="dto.endTime != null">
            AND create_time &lt; #{dto.endTime}
        </if>

        GROUP BY

        hours

        ) b on a.times = b.hours

        ORDER BY a.times
        ;
       	SELECT
        DATE_FORMAT(report_time, '%H:00') times,
        count(*) num
        FROM
        city_task
        WHERE
        ! ISNULL(report_time)
        <if test="dto.startTime != null">
            AND create_time &gt; #{dto.startTime}
        </if>
        <if test="dto.endTime != null">
            AND create_time &lt; #{dto.endTime}
        </if>

        GROUP BY times
  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值