博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
数据库分页语句(ms sqlserver)
阅读量:4182 次
发布时间:2019-05-26

本文共 3280 字,大约阅读时间需要 10 分钟。

第一种方法:

1:基本语句

select top 页大小 * from table1 where id>       (select max (id) from       (select top ((页码-1)*页大小) id from table1 order by id) as T        )       order by id

2:相应存储过程

CREATE PROCEDURE pagination3 @tblName   varchar(255),       -- 表名 @strGetFields varchar(1000) = '*',  -- 需要返回的列 @fldName varchar(255)='',      -- 排序的字段名 @PageSize   int = 10,          -- 页尺寸 @PageIndex  int = 1,           -- 页码 @doCount  bit = 0,   -- 返回记录总数, 非 0 值则返回 @OrderType bit = 0,  -- 设置排序类型, 非 0 值则降序 @strWhere  varchar(1500) = ''  -- 查询条件 (注意: 不要加 where) AS declare @strSQL   varchar(5000)       -- 主语句 declare @strTmp   varchar(110)        -- 临时变量 declare @strOrder varchar(400)        -- 排序类型 if @doCount != 0   begin     if @strWhere !=''     set @strSQL = "select count(*) as Total from [" + @tblName + "] where "     else     set @strSQL = "select count(*) as Total from [" + @tblName + "]" end  --以上代码的意思是如果@doCount传递过来的不是0,就执行总数统计。以下的所有代码都是@doCount为0的情况 else begin if @OrderType != 0 begin     set @strTmp = "<(select min" set @strOrder = " order by [" + @fldName +"] desc" --如果@OrderType不是0,就执行降序,这句很重要! end else begin     set @strTmp = ">(select max"     set @strOrder = " order by [" + @fldName +"] asc" end if @PageIndex = 1 begin     if @strWhere != ''       set @strSQL = "select top " + str(@PageSize) +" "+ "  from [" + @tblName + "] where " + @strWhere + " " + @strOrder      else      set @strSQL = "select top " + str(@PageSize) +" "+ "  from ["+ @tblName + "] "+ @strOrder --如果是第一页就执行以上代码,这样会加快执行速度 end else begin --以下代码赋予了@strSQL以真正执行的SQL代码 set @strSQL = "select top " + str(@PageSize) +" "+ "  from ["     + @tblName + "] where [" + @fldName + "]" + @strTmp + "(["+ @fldName + "]) from (select top " + str((@PageIndex-1)*@PageSize) + " ["+ @fldName + "] from [" + @tblName + "]" + @strOrder + ") as tblTmp)"+ @strOrder if @strWhere != ''     set @strSQL = "select top " + str(@PageSize) +" "+ "  from ["         + @tblName + "] where [" + @fldName + "]" + @strTmp + "(["         + @fldName + "]) from (select top " + str((@PageIndex-1)*@PageSize) + " ["         + @fldName + "] from [" + @tblName + "] where " + @strWhere + " "         + @strOrder + ") as tblTmp) and " + @strWhere + " " + @strOrder end end   exec (@strSQL) GO

第二种方法

2:存储过程

CREATE procedure pagination1 (@pagesize int,  --页面大小,如每页存储20条记录 @pageindex int   --当前页码 ) as set nocount on begin declare @indextable table(id int identity(1,1),nid int)  --定义表变量 declare @PageLowerBound int  --定义此页的底码 declare @PageUpperBound int  --定义此页的顶码 set @PageLowerBound=(@pageindex-1)*@pagesize set @PageUpperBound=@PageLowerBound+@pagesize set rowcount @PageUpperBound insert into @indextable(nid) select gid from TGongwen where fariqi >dateadd(day,-365,getdate()) order by fariqi desc select O.gid,O.mid,O.title,O.fadanwei,O.fariqi from TGongwen O,@indextable t where O.gid=t.nid and t.id>@PageLowerBound and t.id< order by t.id end set nocount off

第三种方法:

1:

SELECT TOP 页大小 * FROM Table1 WHERE (ID NOT IN           (SELECT TOP 页大小*页数 id          FROM 表          ORDER BY id)) ORDER BY ID

2:存储过程

CREATE PROCEDURE pagination2 (  @SQL nVARCHAR(4000),    --不带排序语句的SQL语句  @Page int,              --页码  @RecsPerPage int,       --每页容纳的记录数  @ID VARCHAR(255),       --需要排序的不重复的ID号  @Sort VARCHAR(255)      --排序字段及规则 ) AS DECLARE @Str nVARCHAR(4000) SET @Str='SELECT   TOP '+CAST(@RecsPerPage AS VARCHAR(20))+' * FROM () T WHERE IN (SELECT   TOP '+CAST((@RecsPerPage*(@Page-1)) AS VARCHAR(20))+' FROM () T9 ORDER BY ) ORDER BY PRINT @Str EXEC sp_ExecuteSql @Str GO

在数据量大的情况下,第一种方法的效率是最好的。

摘自:

转载地址:http://uiwoi.baihongyu.com/

你可能感兴趣的文章
分布式文件系统FastDFS详解
查看>>
centos7上rabbitmq搭建
查看>>
rabbitmq集成spring的xml配置和java代码
查看>>
RabbitMQ消息确认(发送确认,接收确认)
查看>>
一篇笔记整理JVM工作原理
查看>>
activemq、rabbitmq、kafka原理和比较
查看>>
秒杀系统设计思路和实现方法
查看>>
Redis常见面试题
查看>>
JDK重要包和Java学习方法论
查看>>
网络通讯中的三次握手与四次挥手原理详解
查看>>
GitHub 开源神器:图片秒变文件
查看>>
openstack ice resize 详解(三)
查看>>
事务与锁(转)
查看>>
Namenode HA原理详解(脑裂)
查看>>
Differences between VMware FT and HA(转)
查看>>
Cloud Prizefight: OpenStack vs. VMware(转)
查看>>
亚马逊Auto Scaling
查看>>
openstack-instance-high-availability-Evacuate
查看>>
evacuate-instance-automatically
查看>>
pycharm常用设置(keymap设置及eclipse常用快捷键总结)
查看>>