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<=10

你可能感兴趣的:(MsSql)