美文网首页
MySql获取某一天每个小时的数据

MySql获取某一天每个小时的数据

作者: 猫的树 | 来源:发表于2021-09-07 10:37 被阅读0次

    select hour(create_time) AS saleHour, count(id) AS saleCount
    from tableName where date_format(create_time, ‘%Y-%m-%d’ ) = ‘2021-09-07’
    group by hour(create_time);

    相关文章

      网友评论

          本文标题:MySql获取某一天每个小时的数据

          本文链接:https://www.haomeiwen.com/subject/vabuwltx.html