mysql 以天爲單位 統計訂單數量

SELECT count(*) as num,mysql

    date_format(FROM_UNIXTIME(createDate/1000),'%y-%m-%d') sdate 
from carorder c
GROUP BY  sdate
web


注意:若是咱們存放的字段createDate 是精確到毫秒的,那麼在轉化成mysql中時間值的時候須要除以1000sql

相關文章
相關標籤/搜索