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

MySql获取某一天每个小时的数据,第1张

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)

select * from 表 where date_format(日期,'%Y-%m-%d')='2014-04-01' 日期

select * from 表 where date_format(日期,'%Y-%m')='2014-04' 月份

select * from 表 where date_format(日期,'%Y')='2014' 年

就是date_format(日期,'%Y-%m-%d') 这里的参数长短


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/7341817.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-04
下一篇 2023-04-04

发表评论

登录后才能评论

评论列表(0条)

保存