码迷,mamicode.com
首页 > 数据库 > 详细

oracle中避免sort操作

时间:2016-03-01 12:33:06      阅读:197      评论:0      收藏:0      [点我收藏+]

标签:

1、升序排列

create index ix_table1 on table1 (column1,column2);

select column1,column2 from table1 order by column1,column2;

2、降序排列

create index ix_table1 on table1 (column1 desc,column2);

select column1,column2 from table1 order by column1 desc,column2;

oracle中避免sort操作

标签:

原文地址:http://www.cnblogs.com/nizuimeiabc1/p/5230361.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!