根据题意理解:本质就是写分页查询:每页条数:10条;当前页码:4页;复制代码代码如下://第一种:select*from (selectROW_NUMBER()over(orderbyIdasc)asnum,*fromUserInfo)asu whereu.num between 10*(4-1)+1 and 10*4//第二种:selecttop10*fromUserInfowhereIdnotin(selecttop(10*3)idfromUserInfoorderbyId)orderbyId
根据题意理解:
每页条数: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
声明:本文内容来源自网络,文字、图片等素材版权属于原作者,平台转载素材出于传递更多信息,文章内容仅供参考与学习,切勿作为商业目的使用。如果侵害了您的合法权益,请您及时与我们联系,我们会在第一时间进行处理!我们尊重版权,也致力于保护版权,站搜网感谢您的分享!