如何优化我们的MySQL选择/更新性能?

时间:2014-06-10 10:57:43

标签: mysql

我们有一个非常大的表(20,000,000多行)包括这两列:create_dateid

我已经为它们创建了索引,现在我想为这个表创建分区。

最常用的SQL是:

select sum(x) from ttt group by create_time;
update ttt set x = 123 where id = 'ididid';

分区的最佳方法是什么?

0 个答案:

没有答案