sql比较两个字符串相同字符的个数
摘要:---分拆字符串create function [dbo].[f_splitstr_word](@SourceSql varchar(8000))returns @temp table(No_Id int identity(1,1),F1 varchar(100))as begindeclare @i intset @SourceSql=rtrim(ltrim(@SourceSql))set @i=LEN(@SourceSql)while @i>=1begin insert @temp values(substring(@SourceSql,1,1)) set @SourceSql=su
阅读全文
posted @
2013-07-09 13:13
氵沐子
阅读(2270)
推荐(1)