在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,