SQL Server 2005 自定义split 函数
摘要:
自定义split函数,根据你传入的字符串和分割字符串标示。返回截取后的字符串table;create function fun_split ( @str varchar(8000) --要分拆的字符串 ,@split varchar(10) --字符串分隔符 ) returns @returnTable table(string varchar(8000)) as begin declare @i int declare @len int select @len = len(@split), @i= charindex(@split, @str) while @i > 0 begin . 阅读全文
posted @ 2010-11-01 11:03 java课程设计 阅读(165) 评论(0) 推荐(0) 编辑