您需要的基本上是unpivot
排除列名id
和warehouse
.
一种方法是在用于构建列名串联列表的子查询中使用表值构造函数。for xml path('')
select T1.id,
T1.warehouse,
stuff((
select ','+T2.company
from (values(T1.comp1, 'comp1'),
(T1.comp2, 'comp2'),
(T1.comp3, 'comp3'),
(T1.comp4, 'comp4')) as T2(value, company)
where T2.value = 1
for xml path('')
), 1, 1, '') as comp
from YourTable as T1
SQL小提琴
添加新列时需要修改上面的查询。需要动态生成将使用动态列数的查询。您可以使用sys.columns获取列名并动态构建上面的查询并使用execute执行查询。
declare @SQL nvarchar(max)
set @SQL = '
select T1.id,
T1.warehouse,
stuff((
select '',''+T2.company
from (values'+
stuff((
select ',(T1.'+name, ','''+name+''')'
from sys.columns
where object_name(object_id) = 'YourTable' and
name not in ('id', 'warehouse')
for xml path('')
), 1, 1, '') +
') as T2(value, company)
where T2.value = 1
for xml path('''')
), 1, 1, '''') as comp
from YourTable as T1'
exec (@SQL)
SQL小提琴
当我说这需要动态 SQL 时,我并不完全真实。在这种情况下,实际上可以使用一些 xQuery 东西来解决这个问题。
select id,
warehouse,
stuff((
select ','+T3.N.value('local-name(.)', 'nvarchar(128)')
from T2.X.nodes('*[not(local-name() = ("id","warehouse"))]') as T3(N)
where T3.N.value('(./text())[1] cast as xs:boolean?', 'bit') = 1
for xml path('')
), 1, 1, '') as comp
from YourTable as T1
cross apply (
select T1.*
for xml path(''), type
) as T2(X)
SQL小提琴
构建逗号分隔的列列表与前面使用for xml path('')
. 在交叉应用中,为每一行构造了一个 XML,用于查询子查询中的值和元素名称。元素名称对应于列名称,并使用local-name(.)
. 一行的值与nodes()
表达式无关(甚至是一个真实的单词)。nodes()
还确保id
并且warehouse
不作为列返回。