



























2008-03-20 12:06 心愿 阅读(284) 评论(0) 收藏 举报
CREATE FUNCTION dbo.lastindexof (@stringValue as nvarchar(1000), @stringSearch as nvarchar(1000), @startPosition as int = 0) returns int AS BEGIN DECLARE @lastindex int SET @lastindex= @startPosition DECLARE @tempindex int while (1=1) begin SET @tempindex = charindex(@stringSearch, @stringValue, @lastindex + 1) if (@tempindex = 0) break SET @lastindex = @tempindex end RETURN(@lastindex) END
此内容由惯性聚合(RSS阅读器)自动聚合整理,仅供阅读参考。 原文来自 — 版权归原作者所有。