问答详情
源自:4-1 选择合适的数据类型

时间戳统计问题

老师,   表字段, 存的是时间戳    现在要根据时间 来分别统计 年 月 日的数据 ,这个该怎么优化呢,因为索引字段只要用到函数 就会失效。。。  

提问者:金哆啦A梦 2018-11-16 16:06

个回答

  • K8sCat
    2019-06-22 14:49:28
    已采纳

    select count(time_column) from your_table group by year(from_unixtime(time_column))或者by month(from_unixtime(time_column))或者dayofyear(from_unixtime(time_column))


    from_unixtime: 时间戳转时间

    unix_timestamp: 时间转时间戳