QSL--Server2008
创建分页查询的存储过程
if exists(select * fron sysobjects where name='Proc_pages')
drop proc proc_pages
go
create proc proc_ages
@oneCounts int, --每页条数
@wantPages int --想要到的页数
as
declare @sum int
set @sum = (@wantPages-1)*@oneCounts
select top(@oneCounts)* from MessagesInfo where MId not in (select top(@sum) MID from MessageInfo)
go
exec proc_pages 3,5 --每页三条 第五页
SQL 分页查询 存储过程
最新推荐文章于 2019-08-15 14:05:53 发布