select count(*) as 總條數 from 表 where 時間字段 between 起始時間 and 終止時間
統計每壹用戶指定時間段內發送的總條數
select 用戶,count(*) as 用戶發送條數 from 表 where 時間字段 between 起始時間 and 終止時間 group by 用戶