Sql Server百万级数据分页分段查询语句

select * from(select *,row_number()over(ORDER BY table.columnName ) as num from table) as t WHERE t.num>=1 and t.num<=10table
相关文章
相关标签/搜索