网络编程
位置:首页>> 网络编程>> 数据库>> 二种sql分页查询语句分享

二种sql分页查询语句分享

  发布时间:2024-01-15 10:29:04 

标签:sql,分页查询

根据题意理解:

本质就是写分页查询:

每页条数: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

0
投稿

猜你喜欢

手机版 网络编程 asp之家 www.aspxhome.com