数据我们已经有了,但是如何把这批数据按照全天24小时制,每一个小时一个小时的格式展示出来呢?
比如说:0点-1点:5
   1点-2点:0
   2点=3点:6
   这个样子去展示。。。
   
                            
                                    Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
亲,你自己读一下,你觉得别人能看懂吗。
自己查mysql的手册吧,只要使用时间格式化函数就行了,我懒得去找了。
打比方说 formatTime('Y-m-d h', '2006-11-23 18:00:05')能得到结果 2006-11-23 18的话
select *, formatTime('h',
time) ashfrom yourTable where formatTime('Y-m-d',time) = '2016-02-30' order byh