the code is
CREATE FUNCTION fn_parse (@str varchar(255), @delim char(1), @token tinyint)
RETURNS varchar(255)
AS
BEGIN
DECLARE @start tinyint
, @end tinyint
, @loopcnt tinyint
set @end = 0
set @loopcnt = 0
set @delim = substring(@delim, 1, 1)
-- loop to specific token
while (@loopcnt < @token) begin
set @start = @end + 1
set @loopcnt = @loopcnt + 1
set @end = charindex(@delim, @str+@delim, @start)
if @end = 0 break
end
if @end = 0
set @str = null
else
set @str = substring(@str, @start, @end-@start)
RETURN @str
source:http://www.sqlservercentral.com/scripts/Miscellaneous/30334/
END
Wednesday, November 12, 2008
Generating random number for each line of select statement
0.SELECT CAST(CAST(newid() AS binary(4)) AS int)
1. RAND(CAST(NEWID() AS BINARY(6)))
2. SELECT rand(cast(cast(newid() as binary(4)) as int)) * cast(cast(newid() as binary(4)) as int) or SELECT cast(newid() as binary(4)) ^ cast(substring(cast(newid() as binary(4)), 7,4) as int)
1. RAND(CAST(NEWID() AS BINARY(6)))
2. SELECT rand(cast(cast(newid() as binary(4)) as int)) * cast(cast(newid() as binary(4)) as int) or SELECT cast(newid() as binary(4)) ^ cast(substring(cast(newid() as binary(4)), 7,4) as int)
Subscribe to:
Posts (Atom)