摘要: 索引的设计:1. 索引的设计应根据实际的统计需求而定,主要体现在order by, group by的需求上2. 过多的需求不应导致过多的索引: key base1(...),key base2(...),... 过多的索引会导致insert,update相当费时3. 索引的字段应该为各类order by, group by的字段的公共前缀,而不是过多的索引。如 group by a,b,c,d;group by a,b,c,e 则索引应该为key base(a,b,c). 而不是创建两个索引 key base1(a,b,c,d),key base2(a,b,c,e)4. 用desc/expl 阅读全文
posted @ 2012-09-13 16:04 ForA 阅读(158) 评论(0) 推荐(0) 编辑