時間區間 timestamp
由於要撈取MySQL資料,做時間區間的撈取
會用到一些技巧,為了成長駭客,撈取數據是必要的。
就會使用如下的一些語法,以下是指取七月資料
select substring(from_unixtime(c_time),1,7) as cdate ,count(id) from table_name where c_time >= unix_timestamp('2016-07-01') and c_time <= unix_timestamp('2016-08-01') group by cdate
這樣就可以撈到每日的數量統計。