一、TOP替代Set RowCount
在SQL Server 2005之前的傳統(tǒng)SQL語句中,top語句是不支持局部變量的。見
https://www.jb51.net/article/27089.htm
此時可以使用Set RowCount,但是在SQL Server 2005/2008中,TOP通常執(zhí)行得更快,所以應(yīng)該用TOP關(guān)鍵字來取代Set RowCount。
復(fù)制代碼 代碼如下:
/***************創(chuàng)建測試表*********************
****************downmoo 3w@live.cn ***************/
IF NOT OBJECT_ID('[Demo_Top]') IS NULL
DROP TABLE [Demo_Top]
GO
Create table [Demo_Top]
(PID int identity(1,1) primary key not null
,PName nvarchar(100) null
,AddTime dateTime null
,PGuid Nvarchar(40)
)
go
truncate table [Demo_Top]
/***************創(chuàng)建1002條測試數(shù)據(jù)*********************
****************downmoo 3w@live.cn ***************/
declare @d datetime
set @d=getdate()
declare @i int
set @i=1
while @i=1002
begin
insert into [Demo_Top]
select cast(datepart(ms,getdate()) as nvarchar(3))+Replicate('A',datepart(ss,getdate()))
,getdate()
,NewID()
set @i=@i+1
end
--注意TOP關(guān)鍵字可以用于Select,Update和Delete語句中
復(fù)制代碼 代碼如下:
Declare @percentage float
set @percentage=1
select Top (@percentage) percent PName from [Demo_Top] order by PName
--注意是11行。(11 row(s) affected)
邀月注:如果只是需要一些樣本,也可以使用TableSample,以下語句返回表Demo_Top的一定百分比的隨機行
復(fù)制代碼 代碼如下:
select PName,AddTime, PGuid from [Demo_Top]
TableSample System(10 percent)
--(77 row(s) affected)
注意這個百分比是表數(shù)據(jù)頁的百分比,而不是記錄數(shù)的百分比,因此記錄數(shù)目是不確定的。
二、TOP分塊修改數(shù)據(jù)
TOP的第二個關(guān)鍵改進(jìn)是支持?jǐn)?shù)據(jù)的分塊操作。換句話說,避免在一個語句中執(zhí)行非常大的操作,而把修改分成多個小塊,這大大改善了大數(shù)據(jù)量、大訪問量的表的并發(fā)性,可以用于大的報表或數(shù)據(jù)倉庫應(yīng)用程序。此外,分塊操作可以避免日志的快速增長,因為前一操作完成后,可能會重用日志空間。如果操作中有事務(wù),已經(jīng)完成的修改數(shù)據(jù)已經(jīng)可以用于查詢,而不必等待所有的修改完成。
仍以上表為例:
復(fù)制代碼 代碼如下:
while (select count(1) from [Demo_Top])>0
begin
delete top (202) from [Demo_Top]
end
/*
(202 row(s) affected)
(202 row(s) affected)
(202 row(s) affected)
(202 row(s) affected)
(194 row(s) affected)
*/
注意是每批刪除202條數(shù)據(jù),TOP也可以用于Select和Update語句,其中后者更為實用。
--Select TOP(100)
--Update TOP(100)
邀月注:本文版權(quán)由邀月和博客園共同所有,轉(zhuǎn)載請注明出處。