查询语句如下:
select top 100 u.*, row_number() over(order by u.CreatedTime DESC ) n from MpUsers as u
where AccountId ='28C64BCC-48A2-48BD-855A-AD2434E40000'
其中AccountId 是索引列,整个表120万条数据。
奇怪的是:
1、如果CreatedTime 字段不加索引,查询在1秒内返回;
2、如果CreatedTime 字段加了索引,查询在4分钟左右;
3、如果加AccountId和CreatedTime 组合索引,查询在1秒内返回。
哪位那牛能解释下为什么吗?