摘要:
1、使用指定的字符串分割,返回分割后元素的个数create function Get_StrLength(@str varchar(1024),@split varchar(10))returns intasbegindeclare @location intdeclare @start intdeclare @length intset @str=ltrim(rtrim(@str))set @location=charindex(@split,@str)set @length=1while @location<>0beginset @start=@location+1set @l 阅读全文