返回数说广场
1
创建表order_test,内有10行单列数据,其值为随机生成。建表语句如下:
create table order_test as select dbms_random.value(1,100) c1 from dual connect by rownum<=10;。
请问,以下哪种创建索引的方法,会导致
select /*+ index(t ind_c1) */ * from order_test t where c1 is not null;
返回的结果是有序的?
0
1 103
分享
评论
热门数说


