码迷,mamicode.com
首页 > 其他好文 > 详细

分页存储过程

时间:2018-06-01 00:17:45      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:set   number   table   roc   order by   tput   and   sele   int   

create proc Usp_getDatabyPage
@PageSize int,
@PageIndex int,
@PageCount int output
as
begin
select * from
(
select
*,
Rn=row_number() over(order by Tid asc)
from MyTable1
)as TblMyTable1
where TblMyTable1.Rn between (@PageIndex-1)*@PageSize+1 and @PageIndex*@PageSize

declare @rdCount int
select @rdCount=count(*) from MyTable1
set @PageCount =ceiling(@rdCount/(@PageSize*1.0))
end

分页存储过程

标签:set   number   table   roc   order by   tput   and   sele   int   

原文地址:https://www.cnblogs.com/liuhonghui/p/9119652.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!