二种sql分页查询语句分享
二种sql分页查询语句分享
发布时间:2016-12-29 来源:查字典编辑
摘要:根据题意理解:本质就是写分页查询:每页条数:10条;当前页码:4页;复制代码代码如下://第一种:select*from(selectROW...

根据题意理解:

本质就是写分页查询:

每页条数:10条;

当前页码:4页;

复制代码 代码如下:

//第一种:

select * from

(select ROW_NUMBER() over(order by Id asc) as num,* from UserInfo)as u

where u.num

between

10*(4-1)+1

and

10*4

//第二种:

select top 10 * from UserInfo

where Id not in

(select top (10*3) id from UserInfo order by Id)

order by Id

推荐文章
猜你喜欢
附近的人在看
推荐阅读
拓展阅读
相关阅读
网友关注
最新mssql数据库学习
热门mssql数据库学习
编程开发子分类