create table table_test(a int,b varchar2(100));
declare
begin
for i in 1..100000 loop
insert into table_test values(i,to_char(sysdate));
end loop;
end;
/
explain select * from table_test order by b desc limit 3000,10;
1 #NSET2: [11, 10, 60]
2 #PRJT2: [11, 10, 60];exp_num(3), is_atom(FALSE)
3 #SORT3: [11, 10,60]; key_num(1), is_distinct(FALSE), top_flag(1)
4 #CSCN2:[11, 100000, 60]; INDEX33558148(TABLE_TEST)
create index "INDEX_1" on "TABLE_TEST"("B" DESC);
explain select * from table_test where a like '%888%' order by b desc limit 3000,10 ;
1 #NSET2: [12, 10, 60]
2 #PRJT2: [12, 10, 60];exp_num(3), is_atom(FALSE)
3 #SORT3: [12, 10,60]; key_num(1), is_distinct(FALSE), top_flag(1)
4 #SLCT2:[12, 5000, 60]; exp_cast(TABLE_TEST.A) LIKE %%888%%
5 #CSCN2: [12, 100000, 60]; INDEX33558148(TABLE_TEST)
explain select /*+TOP_ORDER_OPT_FLAG(1)*/ top 10 * from table_test where a like '%888%' order by b desc ;
1 #NSET2: [1, 10, 60]
2 #PRJT2: [1, 10, 60];exp_num(3), is_atom(FALSE)
3 #TOPN2: [1, 10,60]; top_num(10)
4 #SLCT2: [1,100, 60]; exp_cast(TABLE_TEST.A) LIKE %%888%%
5 #BLKUP2: [1, 100, 60]; INDEX_1(TABLE_TEST)
6 #SSCN: [1, 100, 60]; INDEX_1(TABLE_TEST)
文章
阅读量
获赞