DB2的分页查询语句
来源:网络 责任编辑:栏目编辑 发表时间:2013-07-01 20:04 点击:次
DB2的分页查询语句
利用rownumber() over()这种方式实现,例如
Java代码
select * from (select a.*,rownumber() over() as rowid from (select * from tbl_net_order) a) tmp where tmp.rowid >=#{startIndex} and -www.2cto.com- tmp.rowid <= #{endIndex};
根据计算出来的行数,由外部传来起始行和结束行进行分页。
摘自 老田的博客
相关新闻>>
最新推荐更多>>>
- 发表评论
-
- 最新评论 更多>>