二种sql分页查询语句分享

网络编程 2021-07-05 13:42www.168986.cn编程入门
写出一条sql语句输出表UserInfo表中31到40记录(数据库为SQL Server,以自动增长的ID作为主键,注意ID可能不是连续的,这个就是写分页查询,狼蚁网站SEO优化给出二种写法

根据题意理解:

本质就是写分页查询:

每页条数: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 10 * from UserInfo
where Id not in
(select (10*3) id from UserInfo order by Id)
order by Id

Copyright © 2016-2025 www.168986.cn 狼蚁网络 版权所有 Power by