二种sql分页查询语句分享
程序员文章站
2023-10-20 11:22:55
根据题意理解:
本质就是写分页查询:
每页条数:10条;
当前页码:4页;
复制代码 代码如下://第一种:select * from (select r...
根据题意理解:
本质就是写分页查询:
每页条数: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