课程
/数据库
/MySQL
/性能优化之MySQL优化
老师, 表字段, 存的是时间戳 现在要根据时间 来分别统计 年 月 日的数据 ,这个该怎么优化呢,因为索引字段只要用到函数 就会失效。。。
2018-11-16
源自:性能优化之MySQL优化 4-1
正在回答
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数据库优化的方法和技巧,在课程中共同探讨一起学习吧
1 回答类型存储不就是时间戳么???
3 回答为啥要设计一张中间表?
2 回答int存储日期时间有必要吗?
1 回答如果是时间金额这种字段如何处理
1 回答执行计划在mysql中