发布:2022/12/19 14:12:40作者:管理员 来源:本站 浏览次数:513
第一种:SQL分页的方法
第页 :3条 显示第4页
-- 越过多少条(4-1)*3 取多少条 3
select top 3 * from UserInfo where id not in
(
select top ((4-1)*3) id from UserInfo order by UserId
)
order by id
第二种:分页sql 每页3条, 第5页
select * from (
select *,ROW_NUMBER() over(order by id) as num from UserInfo
) as T
where T.num between ((5-1)*3+1) and (5*3)
© Copyright 2014 - 2024 柏港建站平台 ejk5.com. 渝ICP备16000791号-4