0
我在CSV行插入如何解析字符串字段在SQL Server 2008中,如果該字符串是CSV格式
'6 33','318011385','3183300153','Z','21.11.2011 13:33:22','51','51','2','0','032425','','','','','8 50318011100 318069332','','21.11.2011','21.11.2011','','0','','','GOT','0','0','0','0','0','0','0','0','0','0','0','21.11.2011','4','','','','','','','','','','','','',''
我需要使用T-從這個CSV格式提取幾個字段串場SQL。 我的主要方法是計數冒號(,)和基於結腸NUM兩個冒號之間解析數據:
select min(SUBSTRING(field,charindex(''',''',recorddata,charindex(''',''',recorddata)+1)+3,CHARINDEX(''',''',field,charindex(''',''',field,charindex(''',''',field)+1)+3) - (charindex(''',''',field,charindex(''',''',field)+1)+3))) as fld from TBLSYNCEXPORT where SUBSTRING(field,2,CHARINDEX(''',''',field,0)-2) = @type and substring(field,CHARINDEX(''',''',field)+3,3) = @person and SUBSTRING(field,charindex(''',''',field,charindex(''',''',field)+1)+3,CHARINDEX(''',''',field,charindex(''',''',field,charindex(''',''',field)+1)+3) - (charindex(''',''',field,charindex(''',''',field)+1)+3)) > @prev_type
有沒有更好的方法,這一個?
可能重複的[在tsql中的分割函數等效?](http://stackoverflow.com/questions/697519/split-function-equivalent-in-tsql) – MatBailie 2011-12-14 10:55:13