(1) 如果你一次只统计、显示一个时间段的,上面的
select count(*) from 表 where 时间 between 时间1 and 时间2
(2)如果你是统计多个时间段的。则需要用(union)方法:
<font color=red>select count(*) from 表 where 时间 between 时间1 and 时间2
UNION
select count(*) from 表 where 时间 between 时间2 and 时间3
UNION
。。。。。。。。。)</font>