封装成存储过程,但是有点小问题,如果有弄好了的朋友可留言,谢谢了,我只提供了一个模版哈(也是我想实现的功能) create procedure paging_procedure ( @pageIndex int, -- 第几页 @pageSize int, -- 每页包含的记录数 @moreTable text,--查询哪个表(支持多表链接查询) ),--排序的字段 )-- asc还是desc排序 ) as begin select top (select @pageSize) * from (…