使用: order by 字段 desc/asc offset 开始行数 rows fetch next 显示行数 rows only 查询第几行到第几行的数据
使用:order by 字段 offset ((第几页 – 1)* 每页数量) rows fetch next 每页数量 rows only 查询分页
--order by 字段 desc/asc offset 开始行数 rows fetch next 显示行数 rows only
--查询第11行到25行数据
SELECT * FROM [employeesss] order by EmployeeId offset 10 rows fetch next 15 rows only
--order by 字段 offset ((第几页 - 1)* 每页数量) rows fetch next 每页数量 rows only
--例:第二页,每页5条数据
select * from employeesss order by EmployeeId offset (2 -1) * 5 rows fetch next 5 rows only
--例:第三页,每页5条数据
select * from employeesss order by EmployeeId offset (3 -1) * 5 rows fetch next 5 rows only
结果显示:
原创文章,作者:奋斗,如若转载,请注明出处:https://blog.ytso.com/4212.html