-- =============================================
-- Author: <Author:刘畅>
-- Create date: <Create Date:2014-07-31>
-- Description: <Description:sqlserver 2008 R2 数据库分页存储过程>
-- =============================================
CREATE PROCEDURE pr_pager
(@pageIndex int ,--页数
@pageSize int --每页的行数
) AS
select top (@pageSize) productid,productNumber,name from production.product
where productid not in (select top (@pageSize*(@pageIndex-1)) productid from production.product)
--根据主键来进行查询
pr_pager @pageindex=1,@pageSize=10 --输入想要查询的数据进行查询