发布网友 发布时间:2022-04-22 04:31
共1个回答
热心网友 时间:2023-07-14 04:41
一般查询的话应该有常用的语句的。
比如常见查询为:
select*fromfactdatawhereuser='a'andmole='b'anddtimebetween'2012-11-0100:10:00'and'2012-11-0100:11:10';
那么你这时候需要在factdata表上建立(user,mole,dtime)的联合索引。
altertablefactdataaddindexi_merge(`user`,`mole`,`dtime`);
你可以执行
explainselect*fromfactdatawhereuser='a'andmole='b'anddtimebetween'2012-11-0100:10:00'and'2012-11-0100:11:10';
查看建立索引前面的返回的结果。
假如没有索引的话,explain会显示返回查询全表的数据自然会很慢了。
假如用到了索引的话,可以快速的找到需要查询的区间里的数据,往往需要查询的数据量是全表的1/100,1/1000,那么这时候花费的时间就是1/100,1/1000了。