• 博客园logo
  • 会员
  • 众包
  • 新闻
  • 博问
  • 闪存
  • 赞助商
  • HarmonyOS
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
wenyue
博客园    首页    新随笔    联系   管理    订阅  订阅

分页 存储过程 sql语句

//select * from (Select ROW_NUMBER() over(order by PAddTime desc) as num,*from Person) as t
//where num between 1 and 5
//order by PAddTime desc

//select * from (Select ROW_NUMBER() over(order by PAddTime desc) as num,*from Person) as t
//where num between 6  and 10
//order by PAddTime desc

 //select ceiling(7/6.0)


if Exists(select * from sys.objects where name='usp_Fye')
drop proc usp_Fye
go
create proc usp_Fye
@pagSize int,--每一个页面显示几条数据
@PagIndex int,--当前页码
@count int output
as
select * from (Select ROW_NUMBER() over(order by PAddTime desc) as num,*from Person) as t
where num between (@pagSize*(@PagIndex-1)+1)  and @pagSize*@PagIndex
order by PAddTime desc
 
 select @count=ceiling(COUNT(*)/CONVERT(float,@pagSize)) from Person
 
 declare @count int
 exec usp_Fye 5,4,@count output
 print @count

posted @ 2011-09-22 00:21  wenyue  阅读(198)  评论(0)    收藏  举报
刷新页面返回顶部
博客园  ©  2004-2025
浙公网安备 33010602011771号 浙ICP备2021040463号-3