這篇文章主要介紹了PHP實作資料庫統計時間戳按天分組輸出資料的方法,涉及php基於時間的運算與資料庫查詢相關操作技巧,需要的朋友可以參考下
本文實例講述了PHP實作資料庫統計時間戳按天分組輸出資料的方法。分享給大家供大家參考,具體如下:
例如統計每天用戶註冊數,資料庫表存了一張用戶註冊記錄表:
create table table_name(id int primary key,register_time int(10));
register_time記錄的是時間戳,以前的做法是,接收查詢開始時間、查詢結束時間,然後循環查詢每天的註冊數量,代碼:
/* 查询2015-12-01 至 2015-12-14 */ // 开始的时间戳 $startUnix = 1448899200; // 2015-12-01 00:00:00 // 结束的时间戳 $endUnix = 1450108800; // 2015-12-15 00:00:00 for($i = $startUnix; $i < $endUnix; $i += 86400){ // 86400为1天的秒数 // 查询 $sql = 'select count(*) from table_name where register_time>= '.$i.' and register_time < '.$i + 86400; // 执行查询 }
這種方法的弊端就是,查詢開始於結束的日期相差多少天就查詢檢索資料庫多少次。
優化方法:
/* 查询2015-12-01 至 2015-12-14 */ // 开始的时间戳 $startUnix = 1448899200; // 2015-12-01 00:00:00 // 结束的时间戳 $endUnix = 1450108800; // 2015-12-15 00:00:00 $sql = 'select count(id) as register_count, FROM_UNIXTIME(register_time, '%Y-%m-%d') as datetime from table_name where register_time>= '.$startUnix.' and register_time < '.$endUnix group by datetime; // 执行查询 ...
以上是php資料庫統計時間戳按天分組輸出資料的實作方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!