文章列表
Sql server:
--前10行
select top 10 * from table
--31到40行,这里ID是主键,必须得有主键,才能使用这种方法分页
select top 10* from table where(id not in(select top 30 id from table order by id))order by id
oracle:
--前10行
select * from table where rownum <= 10;
--第5到10行
select * from table where rownum<10
minus ...