下为一perl编写的脚本处理数据库,请教这个中间的sql语句在干什么?
发布网友
发布时间:2022-04-14 13:48
我来回答
共1个回答
热心网友
时间:2022-04-14 15:17
select
concat(left(starttime,2),':00:00') --取时间的前2位,就是小时, 如09:11:01就变成09:00:00
as d
from cellopt.hw_sector_hourly_0
where startdate = '$d' --条件为开始日期 由参数传入
group by hour(starttime)";--按开始时间的小时进行分组