金哆啦A梦
2018-11-16 16:06
老师, 表字段, 存的是时间戳 现在要根据时间 来分别统计 年 月 日的数据 ,这个该怎么优化呢,因为索引字段只要用到函数 就会失效。。。
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: 时间转时间戳
性能优化之MySQL优化
101664 学习 · 221 问题
相似问题