27,580
社区成员
发帖
与我相关
我的任务
分享
select top 100 s_word,count(1) as c from SearchLog where s1=1 and s3=0 group by s_word order by c desc
--s1 是条件

[/quote]
从执行计划上来看,是采用了聚集索引扫描,也就是表扫描,占了55%的开销,这个是导致慢的原因。
可以按照s1 和s3中涉及的字段,以及s_word字段,建立索引,就能加快速度。
结贴就好

