SQL:使用查询拆分逗号分隔的字符串列表?

SQL: Split comma separated string list with a query?

这是我的 table 结构:

id PaymentCond
1  ZBE1, AP1, LST2, CC1
2  VB3, CC1, ZBE1

我需要拆分列 PaymentCond,并且很想用一个简单的 sql 查询来做到这一点,因为我不知道如何使用函数并且很想保持简单。

这是我已经找到的:

SELECT id, 
Substring(PaymentConditions, 1, Charindex(',', PaymentConditions)-1) as COND_1,
Substring(PaymentConditions, Charindex(',', PaymentConditions)+1, LEN(ANGEBOT.STDTXT)) as  COND_2
from Payment
WHERE id = '1'

但这只会输出

id    COND_1   COND_2
1     ZBE1     AP1, LST2, CC1

有没有办法将所有内容从 PaymentConditions 拆分为 COND_1COND_2COND_3 等等?

提前致谢。

首先创建函数来拆分值

create function [dbo].[udf_splitstring] (@tokens    varchar(max),
                                   @delimiter varchar(5))
returns @split table (
  token varchar(200) not null )
as



  begin

      declare @list xml

      select @list = cast('<a>'
                          + replace(@tokens, @delimiter, '</a><a>')
                          + '</a>' as xml)

      insert into @split
                  (token)
      select ltrim(t.value('.', 'varchar(200)')) as data
      from   @list.nodes('/a') as x(t)

      return

  end  


 CREATE TABLE #Table1
        ([id] int, [PaymentCond] varchar(20))
    ;

    INSERT INTO #Table1
        ([id], [PaymentCond])
    VALUES
        (1, 'ZBE1, AP1, LST2, CC1'),
        (2, 'VB3, CC1, ZBE1')
    ;
    select id, token FROM #Table1 as t1
    CROSS APPLY [dbo].UDF_SPLITSTRING([PaymentCond],',') as t2

输出

id  token
1   ZBE1
1   AP1
1   LST2
1   CC1
2   VB3
2   CC1
2   ZBE1
declare @SchoolYearList nvarchar(max)='2014,2015,2016'
declare @start int=1
declare @length int=4
create table #TempFY(SchoolYear int)
while @start<len(@SchoolYearList)
BEGIN

Insert into #TempFY
select SUBSTRING(@SchoolYearList,@start,@length)
set @start=@start+5
END
Select SchoolYear from #TempFY

SQL 服务器中有一个新的 table 值函数 STRING_SPLIT:

DECLARE @tags NVARCHAR(400) = 'aaaa,bbb,,cc,d'  
SELECT * 
FROM STRING_SPLIT(@tags, ',')  

您将获得:

但要注意它在您的数据库中的可用性:STRING_SPLIT 函数仅在兼容级别 130

下可用