--存储过程分页
ALTER proc [dbo].[P_Page]
@PageIndex int, --页数
@PageSize int --页容量
as
select ROW_NUMBER() over(order by ID) as RowsId, --加一个行数
*
into #jjj --存到临时表中
from Test1
select (select count(*) from #jjj) as RowsCount, --获取总行数
*
from #jjj
where RowsId between ((@PageIndex-1)*@PageSize+1) and (@PageIndex*@PageSize)
Sql存储过程分页
最新推荐文章于 2022-05-01 16:52:13 发布