本文介绍了SQL Server:GROUP BY子句在多列上获取逗号分隔值[重复]的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
嗨我有一张有5列的桌子
hi i have a table having 5 columns
ID | ReportId | Col1 | Col2 |col3
1 |1 |a |Cola |col3a
2 |2 |b |colb |col3b
3 |1 |c |null |col3c
4 |3 |d |cold |col3d
5 |3 |e |cole |null
i我正在尝试查询来编写选择查询我可以使用分组以逗号分隔的方式获取列。
输出样本
i am trying a query to write a select query where i can get the columns in comma separated way using group by
Output sample
ReportId |Col1 |Col2 |col3
1 |a,c |Cola,null |col3a,col3c
2 |b |colb |col3b
3 |d,e |cold,cole |col3d,null
请帮我这个
please help me with this
推荐答案
这篇关于SQL Server:GROUP BY子句在多列上获取逗号分隔值[重复]的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!