暂无图片
返回数说广场
ljf1991
2024-12-05
C 对于下面的查询SQL,以下哪个索引创建方法对于改善该SQL的性能有最大的帮助? select * from (select * from t1 where type='10' order by create_time desc) where rownum<=10; 补充说明:表T1约有10万行记录,TYPE列上有15个唯一值,CREATE_TIME列上有约10万个唯一值。 A create index ind_t1_test on t1(create_time); B create index ind_t1_test on t1(create_time,type); C create index ind_t1_test on t1(type,create_time); D create index ind_t1_test on t1(type);
0
暂无图片 0
84
分享

评论

热门数说