2024-11-05 10:48:46
我在这个列上建了b*tree索引,但是执行计划里面并不会去使用这个索引,有什么方法可以使查询用到这个索引?
select /*+ index (a 索引名)*/ * from big_table where note_type=1;
select note_type,count(*) from big_table group by note_type;
你看一下note_type=1这个值有多少,超过总行5%以上,全表扫描比索引好
2024-11-05 01:30:36