- 浏览: 26694 次
- 性别:
- 来自: 沈阳
最新评论
-
YTT1121:
有网络拓扑发现的源代码么?科研用。或者您会编写么?这个没办法运 ...
基于下行端口地址完整性的网络拓扑发现算法JAVA实现 -
飘零羽:
jianchen 写道研究什么方向的论文?当年写毕业设计论文还 ...
2011-08-09 -
jianchen:
研究什么方向的论文?当年写毕业设计论文还是蛮头痛的。
2011-08-09
文章列表
http://edu.codepub.com/2010/0107/19492.php
http://blog.csdn.net/yzsind/archive/2010/12/06/6059209.aspx
原sql:
select * from (
select a.*,rownum rn from
(select * from product a where company_id=? order by status) a
where rownum<=20)
where rn>10;
优化:
优化原理是通过纯索引找出分页记录的ROWID,再通过ROWID回表返回数据,要求内层查询和排序字段全在索引里。
create index myindex on product(company_id,status);
se ...