如下是一个倒序分页,通过改变6和0的值来实现你想要的效果其中6和0的关系是(页数-1)*页面大小select top 6 * from 表 where 条件 and 编号 not in (select top 0 编号 from 表 where 条件 order by 编号 desc) order by 编号 desc
select top 6 字段名 from 表名 where 条件 order by 要排序字段名 DESC order by 排序,如果不加DESC或者使用ACS 则是正序,DESC是倒序
select xx from xx where rownum<7 desc