select * from
(select a.*,rownum rc from 表名 where rownum<=endrow) a
where >=startrow;
2.DB2数据库分页
Select * from
(select rownumber() over() as rc,a.* from
(select * from 表名 order by 列名) as a)
where rc between startrow and endrow;
Server 2000数据库分页
Select top pagesize * from 表名
where 列名 not in
(select top pagesize*page 列名 from 表名 order by 列名)
order by 列名;
Server 2005数据库分页
Select * from
(select 列名,row_搜索number() over(order by 列名1) as 别名from 表名) as t
where t.列名1>=startrow and t.列名1<=endrow;
数据库分页
Select * from 表名 limit startrow,pagesize; (Pagesize为每页显示的记录条数)
优化写法 Select
a.*
from 表名 a,(
Select id from 表名 order by id limit
startrow,pagesize) b where =;