基于 ID 连接值
要解决所提供的组合具有相同 ID 的多行并连接相应标签的任务,请使用以下 SQL 查询:
declare @T table(Response_ID int, Label varchar(50)) insert into @T values (12147, 'It was not clear'), (12458, 'Did not Undersstand'), (12458, 'Was not resolved'), (12458, 'Did not communicate'), (12586, 'Spoke too fast'), (12587, 'Too slow') select T1.Response_ID, stuff((select ','+T2.Label from @T as T2 where T1.Response_ID = T2.Response_ID for xml path(''), type).value('.', 'varchar(max)'), 1, 1, '') as Label from @T as T1 group by T1.Response_ID
在查询:
以上是如何在 SQL 中根据匹配 ID 连接标签?的详细内容。更多信息请关注PHP中文网其他相关文章!