由于数据比较多,需要对数据进行分页展示,数据库用的是SQL Server,具体的分页方式:
select * from (selec id,ROW_NUMBER() OVER(Order by insertTime desc ) AS RowId from tempa ) t where RowId between 1 and 10 ;
其中 Order by insertTime desc 为分页排序的依据,正序排列esc, 倒序排列desc.
这样查询第一条到第十条数据,效果还不错,记录一下!
标签:分页,查询,RowId,SQL,Server,desc From: https://www.cnblogs.com/yangxk666/p/17083311.html