sql分頁查詢幾種寫法
關(guān)于SQL語句分頁,網(wǎng)上也有很多,我貼一部分過來,并且總結(jié)自己已知的分頁到下面,方便日后查閱
1.創(chuàng)建測試環(huán)境,(插入100萬條數(shù)據(jù)大概耗時5分鐘)。
create database DBTest use DBTest --創(chuàng)建測試表 create table pagetest ( id int identity(1,1) not null, col01 int null, col02 nvarchar(50) null, col03 datetime null ) --1萬記錄集 declare @i int set @i=0 while(@i<10000) begin insert into pagetest select cast(floor(rand()*10000) as int),left(newid(),10),getdate() set @i=@i+1 end
2.幾種典型的分頁sql,下面例子是每頁50條,198*50=9900,取第199頁數(shù)據(jù)。
--寫法1,not in/top
select top 50 * from pagetest where id not in (select top 9900 id from pagetest order by id) order by id
--寫法2,not exists
select top 50 * from pagetest where not exists (select 1 from (select top 9900 id from pagetest order by id)a where a.id=pagetest.id) order by id
--寫法3,max/top
select top 50 * from pagetest where id>(select max(id) from (select top 9900 id from pagetest order by id)a) order by id
--寫法4,row_number()
select top 50 * from (select row_number()over(order by id)rownumber,* from pagetest)a where rownumber>9900 select * from (select row_number()over(order by id)rownumber,* from pagetest)a where rownumber>9900 and rownumber<9951 select * from (select row_number()over(order by id)rownumber,* from pagetest)a where rownumber between 9901 and 9950
--寫法5,在csdn上一帖子看到的,row_number() 變體,不基于已有字段產(chǎn)生記錄序號,先按條件篩選以及排好序,再在結(jié)果集上給一常量列用于產(chǎn)生記錄序號
select * from ( select row_number()over(order by tempColumn)rownumber,* from (select top 9950 tempColumn=0,* from pagetest where 1=1 order by id)a )b where rownumber>9900
3.分別在1萬,10萬(取1990頁),100(取19900頁)記錄集下測試。
測試sql:
declare @begin_date datetime declare @end_date datetime select @begin_date = getdate() <.....YOUR CODE.....> select @end_date = getdate() select datediff(ms,@begin_date,@end_date) as '毫秒'
1萬:基本感覺不到差異。
10萬:

4.結(jié)論:
1.max/top,ROW_NUMBER()都是比較不錯的分頁方法。相比ROW_NUMBER()只支持sql2005及以上版本,max/top有更好的可移植性,能同時適用于sql2000,access。
2.not exists感覺是要比not in效率高一點(diǎn)點(diǎn)。
3.ROW_NUMBER()的3種不同寫法效率看起來差不多。
4.ROW_NUMBER() 的變體基于我這個測試效率實在不好。原帖在這里 http://topic.csdn.net/u/20100617/04/80d1bd99-2e1c-4083-ad87-72bf706cb536.html
PS.上面的分頁排序都是基于自增字段id。測試環(huán)境還提供了int,nvarchar,datetime類型字段,也可以試試。不過對于非主鍵沒索引的大數(shù)據(jù)量排序效率應(yīng)該是很不理想的。
5.簡單將ROWNUMBER,max/top的方式封裝到存儲過程。
ROWNUMBER():
ALTER PROCEDURE [dbo].[Proc_SqlPageByRownumber]
(
@tbName VARCHAR(255), --表名
@tbGetFields VARCHAR(1000)= '*',--返回字段
@OrderfldName VARCHAR(255), --排序的字段名
@PageSize INT=20, --頁尺寸
@PageIndex INT=1, --頁碼
@OrderType bit = 0, --0升序,非0降序
@strWhere VARCHAR(1000)='', --查詢條件
--@TotalCount INT OUTPUT --返回總記錄數(shù)
)
AS
-- =============================================
-- Author: allen (liyuxin)
-- Create date: 2012-03-30
-- Description: 分頁存儲過程(支持多表連接查詢)
-- Modify [1]: 2012-03-30
-- =============================================
BEGIN
DECLARE @strSql VARCHAR(5000) --主語句
DECLARE @strSqlCount NVARCHAR(500)--查詢記錄總數(shù)主語句
DECLARE @strOrder VARCHAR(300) -- 排序類型
--------------總記錄數(shù)---------------
IF ISNULL(@strWhere,'') <>''
SET @strSqlCount='Select @TotalCout=count(*) from ' + @tbName + ' where 1=1 '+ @strWhere
ELSE SET @strSqlCount='Select @TotalCout=count(*) from ' + @tbName
--exec sp_executesql @strSqlCount,N'@TotalCout int output',@TotalCount output
--------------分頁------------
IF @PageIndex <= 0 SET @PageIndex = 1
IF(@OrderType<>0) SET @strOrder=' ORDER BY '+@OrderfldName+' DESC '
ELSE SET @strOrder=' ORDER BY '+@OrderfldName+' ASC '
SET @strSql='SELECT * FROM
(SELECT ROW_NUMBER() OVER('+@strOrder+') RowNo,'+ @tbGetFields+' FROM ' + @tbName + ' WHERE 1=1 ' + @strWhere+' ) tb
WHERE tb.RowNo BETWEEN '+str((@PageIndex-1)*@PageSize+1)+' AND ' +str(@PageIndex*@PageSize)
exec(@strSql)
SELECT @TotalCount
END
public static SqlParameter MakeInParam(string ParamName, SqlDbType DbType, Int32 Size, object Value)
{
return MakeParam(ParamName, DbType,Size, ParameterDirection.Input, Value);
}
public static SqlParameter MakeOutParam(string ParamName, SqlDbType DbType)
{
return MakeParam(ParamName, DbType, 0, ParameterDirection.Output, null);
}
public static SqlParameter MakeParam(string ParamName, SqlDbType DbType, Int32 Size, ParameterDirection Direction, object Value)
{
SqlParameter param;
if (Size > 0)
param = new SqlParameter(ParamName, DbType, Size);
else
param = new SqlParameter(ParamName, DbType);
param.Direction = Direction;
if (!(Direction == ParameterDirection.Output && Value == null))
param.Value = Value;
return param;
}
/// <summary>
/// 分頁獲取數(shù)據(jù)列表及總行數(shù)
/// </summary>
/// <param name="tbName">表名</param>
/// <param name="tbGetFields">返回字段</param>
/// <param name="OrderFldName">排序的字段名</param>
/// <param name="PageSize">頁尺寸</param>
/// <param name="PageIndex">頁碼</param>
/// <param name="OrderType">false升序,true降序</param>
/// <param name="strWhere">查詢條件</param>
public static DataSet GetPageList(string tbName, string tbGetFields, string OrderFldName, int PageSize, int PageIndex, string strWhere)
{
SqlParameter[] parameters = {
MakeInParam("@tbName",SqlDbType.VarChar,255,tbName),
MakeInParam("@tbGetFields",SqlDbType.VarChar,1000,tbGetFields),
MakeInParam("@OrderfldName",SqlDbType.VarChar,255,OrderFldName),
MakeInParam("@PageSize",SqlDbType.Int,0,PageSize),
MakeInParam("@PageIndex",SqlDbType.Int,0,PageIndex),
MakeInParam("@OrderType",SqlDbType.Bit,0,OrderType),
MakeInParam("@strWhere",SqlDbType.VarChar,1000,strWhere),
// MakeOutParam("@TotalCount",SqlDbType.Int)
};
return RunProcedure("Proc_SqlPageByRownumber", parameters, "ds");
}
調(diào)用:
public DataTable GetList(string tbName, string tbGetFields, string OrderFldName, int PageSize, int PageIndex, string strWhere, ref int TotalCount)
{
DataSet ds = dal.GetList(tbName, tbGetFields, OrderFldName, PageSize, PageIndex, strWhere);
TotalCount = Convert.ToInt32(ds.Tables[1].Rows[0][0]);
return ds.Tables[0];
}
注意:多表連接時需注意的地方
1.必填項:tbName,OrderfldName,tbGetFields
2.實例:
tbName =“UserInfo u INNER JOIN Department d ON u.DepID=d.ID” tbGetFields=“u.ID AS UserID,u.Name,u.Sex,d.ID AS DepID,d.DefName” OrderfldName=“u.ID,ASC|u.Name,DESC” (格式:Name,ASC|ID,DESC) strWhere:每個條件前必須添加 AND (例如:AND UserInfo.DepID=1 )
Max/top:(簡單寫了下,需要滿足主鍵字段名稱就是"id")
create proc [dbo].[spSqlPageByMaxTop] @tbName varchar(255), --表名 @tbFields varchar(1000), --返回字段 @PageSize int, --頁尺寸 @PageIndex int, --頁碼 @strWhere varchar(1000), --查詢條件 @StrOrder varchar(255), --排序條件 @Total int output --返回總記錄數(shù) as declare @strSql varchar(5000) --主語句 declare @strSqlCount nvarchar(500)--查詢記錄總數(shù)主語句 --------------總記錄數(shù)--------------- if @strWhere !='' begin set @strSqlCount='Select @TotalCout=count(*) from ' + @tbName + ' where '+ @strWhere end else begin set @strSqlCount='Select @TotalCout=count(*) from ' + @tbName end --------------分頁------------ if @PageIndex <= 0 begin set @PageIndex = 1 end set @strSql='select top '+str(@PageSize)+' * from ' + @tbName + ' where id>(select max(id) from (select top '+str((@PageIndex-1)*@PageSize)+' id from ' + @tbName + ''+@strOrder+')a) '+@strOrder+'' exec sp_executesql @strSqlCount,N'@TotalCout int output',@Total output exec(@strSql)
園子里搜到Max/top這么一個版本,看起來很強(qiáng)大,http://www.cnblogs.com/hertcloud/archive/2005/12/21/301327.html
調(diào)用:
declare @count int --exec [dbo].[spSqlPageByRownumber]'pagetest','*',50,20,'','order by id asc',@count output exec [dbo].[spSqlPageByMaxTop]'pagetest','*',50,20,'','order by id asc',@count output select @count
以上就是本文針對sql分頁查詢幾種寫法的全部內(nèi)容,希望大家喜歡。
相關(guān)文章
SQLServer 2012中設(shè)置AlwaysOn解決網(wǎng)絡(luò)抖動導(dǎo)致的提交延遲問題
這篇文章主要介紹了SQLServer 2012中設(shè)置AlwaysOn解決網(wǎng)絡(luò)抖動導(dǎo)致的提交延遲問題,需要的朋友可以參考下2015-02-02
SQL SERVER數(shù)據(jù)庫開發(fā)之存儲過程應(yīng)用
SQL SERVER數(shù)據(jù)庫開發(fā)之存儲過程應(yīng)用...2006-09-09
列出SQL Server中具有默認(rèn)值的所有字段的語句
上個星期我在對一個供應(yīng)商開發(fā)的數(shù)據(jù)庫按規(guī)定進(jìn)行故障排除的時候,我們需要對他們數(shù)據(jù)庫中50個表的每一個都進(jìn)行查看,以確保所有期望是默認(rèn)值的字段都被分配了默認(rèn)值。你可以想象這是一個多么令人畏懼的工作,而我立即提出了這個問題。有沒有一個比在SQL Server管理套件中打開每一個表來查看這個schema的更好方法嗎?2008-10-10
SQLSERVER Pager store procedure分頁存儲過程
SQL SERVER(2005)以上版本可用,相對應(yīng)的頁面邏輯中寫的對應(yīng)調(diào)用該存儲過程的方法2010-06-06
Sql注入工具_(dá)動力節(jié)點(diǎn)Java學(xué)院整理
這篇文章主要為大家詳細(xì)介紹了Sql注入工具的相關(guān)資料,具有一定的參考價值,感興趣的小伙伴們可以參考一下2017-08-08
SQL Server并行操作優(yōu)化避免并行操作被抑制而影響SQL的執(zhí)行效率
這篇文章主要介紹了SQL Server并行操作優(yōu)化避免并行操作被抑制而影響SQL的執(zhí)行效率 的相關(guān)資料,需要的朋友可以參考下2016-07-07
SQL Server 總結(jié)復(fù)習(xí)(一)
寫這篇文章,主要是總結(jié)最近學(xué)到的一些新知識,這些特性不一定是SQLSERVER最新版才有,大多數(shù)是2008新特性,有些甚至是更早。如果有不懂的地方,建議大家去百度谷歌搜搜,本文不做詳細(xì)闡述,有錯誤的地方,歡迎大家批評指正2012-08-08

