server 在SQL 2000裡面,使用者可以建立自訂的函數,函數傳回值可以是一個值,也可以是一個表。
可能大家還不是太清楚,自訂函數有什麼作用。以前在最佳化資料庫的貼子中提到過,盡量不要是用遊標,因為這樣會帶來更大的
系統開銷。但是有的時候你必須使用遊標,舉一個例子,比如我希望得到一個內容是一段漢字的欄位的拼音。但是要想把漢字轉化
為拼音,必須通過查表來完成,那麼你就必須先開出一個遊標,然後再對欄位中的每一個字進行查表。
但是現在我們可以使用自訂函數來完成同樣的操作,就大大的節省了系統開銷。Example:/*使用自訂函數*/
CREATE FUNCTION Translate ( @Original_Text varchar(100))RETURNS varchar(500)AS
BEGIN DECLARE @intLength as tinyint DECLARE @strTemp as varchar(10)
DECLARE @strResult as varchar(500) DECLARE @strChar as varchar(2)
DECLARE @i as tinyint SET @intLength = len(@Original_Text)
SET strResult = '' WHILE @i <= @intLength BEGIN
SELECT @strChar = substring(@Original_Text, @i, 1)
SET @strTemp = null
SELECT @strTemp = spell FROM wordspell WHERE word = @strChar
SELECT @strResult = @strResult + isnull(@strTemp, @strChar)
SELECT @i=@i+1 END RETURN strResult ENDGO
UPDATE phonecode SET namesame=Translate(name), addsame=Translate(address)
/*使用遊標*/create proc trans asDeclare @i integer, @char varchar(2),
@tempchr varchar(2), @strtemp varchar(100), @strtemp1 varchar(100),
@strname varchar(100), @straddr varchar(100)
Declare Cur_trans Cursor local DYNAMIC For select [name],[address]
from phonecodeselect @char=""Open Cur_transFetch Cur_trans
Into @strname,@straddrSet nocount onwhile @@Fetch_Status=0begin select @i=1
select @strtemp="" select @strname = ltrim(rtrim(@strname))
while @i<=len(@strname) begin
select @char = substring(@strname,@i,1) select @tempchr = null
select @tempchr=spell from TYPER.wordspell where word=@char
select @strtemp=@strtemp + isnull(@tempchr,@char) select @i=@i+1
end select @i=1 select @strtemp1="" select @char=''
select @straddr = ltrim(rtrim(@straddr)) while @i<=len(@straddr) begin
select @char = substring(@straddr,@i,1) select @tempchr = null
select @tempchr=spell from TYPER.wordspell where word=@char
select @strtemp1=@strtemp1 + isnull(@tempchr,@char)
select @i=@i+1 end
Update phonecode set namesame=@strtemp,addsame=@strtemp1 where CURRENT OF Cur_trans
Fetch next from Cur_trans Into @strname,@straddrendclose Cur_trans
Deallocate Cur_transset nocount offreturn 0go
相比之下,不但執行效率提高了,代碼的可讀性也好多了。其實其他資料庫已經提供了這樣的功能(不記得是什麼資料庫了),不
過MS的跟隨速度是越來越快了,提高也是越來越多了,這也是它的市場份額越來越大的原因。下期預告:帶索引的視圖爭取做到每日一貼吧,寫東西真的是很累的