select 创建了索引可是不走索引

create index indexName on A(abc);spa 此时select abc from A 不走索引。。。。code 可用以下方法让搜索走索引blog select distinct(abc)  from A  a where exists (select 1 from A b where a.abc=b.abc)索引 select distinct(abc)  from A
相关文章
相关标签/搜索