在SQL Server字符串中拆分数据

时间:2013-09-04 12:51:06

标签: sql-server-2008

3106积分

967帖子 在SQL Server字符串中拆分数据

25分钟前|链接

大家好,

我有两个逗号分隔的字符串,一个具有控件名称,另一个具有我已发送到存储过程的值以及需要插入数据的表名。

现在,我如何拆分这些字符串并在sql server 2008中形成一个插入查询?

另外,我有一个表,其中我维护的控制值应该存储在哪一列?

所以我需要使用这个来形成插入查询?我该怎么办?

1 个答案:

答案 0 :(得分:1)

此功能将帮助您分割字符串:

CREATE function dbo.split(@value varchar(8000),@delim varchar(8000))
returns table
as
return
(
select d.value,
       d.orders,
       ivalue = convert(int, case when isnumeric(d.value)=1 and d.value not like '%[^0-9 +-]%' and len(replace(replace(replace(d.value,' ',''),'-',''),'+',''))<=10 then case when convert(bigint,d.value) between -2147483648 and 2147483647 then d.value end end)

    from
        (
            select   
                    value= replace(substring(value,
                                            idx,
                                            case when cnt>=0 then cnt end /* case для защиты от нехороших планов, когда сначала идет вычисление substring, а потом ограничивающее where по s_value.number between */
                                         )
                                 ,char(1),'')
                    ,orders=( datalength(left(value,idx-1))-datalength(replace(left(value,idx-1),@delim,''))
                            )/datalength(@delim)
                from (
                       select number
                             ,idx
                             ,cnt = charindex(@delim,value, number + 1) - number - datalength(@delim)
                             ,value 
                          from 
                                (
                                   select number
                                         ,idx = number + datalength(@delim)
                                         ,value = (select @delim+char(1)+@value+char(1)+@delim)
                                      from dbo.s_value
                                        where number between 1 and datalength( (select @delim+char(1)+@value+char(1)+@delim) ) - datalength(@delim)

                                ) t            
                          where substring(t.value, number, datalength(@delim)) = @delim         
                     ) t             
       ) d          
)


GO