1. 程式人生 > >php資料庫統計時間戳按照天分組輸出

php資料庫統計時間戳按照天分組輸出

原文連結

/* 查詢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; // 執行查詢 ...