首页 > 数据库 > SQL Server > 正文

SQL Server 存储过程分页

2024-08-31 00:55:54
字体:
来源:转载
供稿:网友
SQL Server 存储过程分页

每每面试,总会有公司问到分页。在下不才,在这里写几种分页,望路过的各位大神尽情拍砖。

先从创建数据库说起。源码如下

一.创建数据库

 1 /********************************************************************** 2                         一.创建数据库DBTest 3                        @author:    Alex Tian 4                        Create Date:    2014-03-19 5 ***********************************************************************/ 6 use master  --这里我们选择master数据库的目的是为了我们可以访问表 7 --判断数据库清单中是否存在数据库DBTest 8 if exists(select * from sysdatabases where name='DBTest') 9 Drop DataBase DBTest   --删除数据库DBTest10 Go11 /*创建数据库的SQL语句,这里我们就创建DBTest数据库*/12 Create Database DBTest13 on PRimary  --默认就是primary文件组,可省略14 (15  /*--数据文件的具体描述--*/16       name='DBTest_data',  -- 主数据文件的逻辑名称17       filename='D:/SQL/DBTest_data.mdf', -- 主数据文件的物理名称18       size=5mb, --主数据文件的初始大小19       maxsize=100mb, -- 主数据文件增长的最大值20       filegrowth=15%--主数据文件的增长率21  )22  log on23  (24  /*--日志文件的具体描述,各参数含义同上--*/25      name='DBTest_log',26      filename='D:/SQL/DBTest_log.ldf',27      size=2mb,28      filegrowth=1mb29  )

二.创建表

 1 /********************************************************************** 2                         二.创建表Users 3 ***********************************************************************/ 4 use DBTest   --选择我们刚刚创建的数据库DBTest 5 Go 6 if Exists (select * from sysobjects where name='Users') 7 Drop Table Users 8 go 9 Create Table Users10 (11     ID int identity(1,1) primary key,  --表示是主键自增,标示种子是1.12     UName nvarchar(20) Not null,         --用户姓名不能为空13     USex  char(2)   --性别14 )

三.插入数据

 1 /********************************************************************** 2                         三.插入数据到表Users 3 ***********************************************************************/ 4 insert into Users 5 select 'yoyo','男' 6 union 7 select 'Alex','男' 8 union  9 select '兰阳','女'10 union11 select '彭伟','男'12 union13 select '张琼','男'14 union15 select '肖小仙','女'16 union17 select '毛毛','男'18 union19 select '田勇','男'20 union21 select '田红','男'22 union23 select '柯丽','女'24 union25 select 'Gross','男'26 union27 select '何军','男'28 union29 select 'Leo','男'30 union31 select '金琼','女'32 union33 select '孙龙','男'34 union35 select '老姚','男'36 union37 select '李聪','女'38 union39 select '王超','男'40 union41 select '孙艳','女'42 union43 select '曹瑞','男'44 union45 select '王琼','女'46 union47 select '沈炎','男'48 union49 select '庄雪月','女'50 union51 select '老丁','男'52 union53 select '景天','男'54 union55 select '雪见','女'56 Go

由于数据量太少,我这里重复插入了上面的测试数据,然后我们查询当前的表Users 上面都是准备工作,废话少说。直接插入主题。

1.下面我们用not in语句去分页,为了方便大家看,直接存储过程附上。

 1 select top 10 * from Users where (ID not in (select top 20 ID from Users order by ID asc) ) 2  order by ID 3   4  create procedure sp_Page_View_with_not_in 5  ( 6      @pageIndex int,--页索引。 7      @PageSize int--页记录数 8  ) 9  as10  begin11     set nocount on12     declare @strSQL varchar(1000)13     set @strSQL='(select top '+str(@PageSize)+' * from Users where (ID not In (select top '+str(@pageIndex*@PageSize)+' ID from Users order by ID asc)) order by ID)'    14     set nocount off15  end16  --drop procedure Page_View_with_not_in   --删除存储过程

2.用Max分页,源码如下

 1 --2.使用select top 和select Max(列键) 2  3 select top 10 * from Users where  4 ID> 5  ( 6      select MAX(ID) from 7      ( 8         select top 20  ID from Users order by ID 9      ) as temp10  )11 order by ID12 13 --创建存储过程14  create procedure sp_Page_View_with_Max15  (16     @PageInde int, -- 当前页索引17     @PageSize int  --每页要显示的条数18  )19  as20  begin21     declare @strSQL nvarchar(1000)22     set @strSQL='select top '+str(@PageSize)+' * from Users where ID>(select MAX(ID) from (select top +'+str(@PageInde*@PageSize)+' ID from Users order by ID) as Temp )23     order by ID'24  end25  26 --drop procedure sp_Page_View_with_Max

3.用ROW_NUMBER()分页(仅支持SQL Server 2005或2005之后的数据库),源码如下

 1 --3.利用Row_number()给数据行加索引(适用于,有很多数据表中没有identity ID的表) 2 --假设我们当前的Users表没有identity 3 select RID,UName,USex from 4 ( 5 select *,ROW_NUMBER() over (order by ID) as RID  6 from Users 7 ) 8 as tempTable 9 where RID>20 and RID<=3010 11 create procedure sp_Page_View_With_ROW_NUMBER12 (13     @pageIndex int, 14     @pageSize int15 )16 as17 begin18     declare @strSQL nvarchar(1000)19     set @strSQL='select RID,UName,USex from (select *,ROW_NUMBER() over (order by ID asc) as RID from Users) as TempTable20 where RID>'+str(@pageIndex*@pageSize)+' and RID<='+str(@pageSize*(@pageIndex+1))+''    21 end

以上是很常用的几种分页,当然还有很多种,比如 用临时表及Row_number ,互联网的大神们用select max方法用2分法等等等。这里由于数据量很小,我没有过多的去考虑性能。在这里我不对性能方面作于评价。仅用于面试之类的孩纸们了解一下。


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表