SQL Group by 和 concat
你好 任何人都可以帮我解决以下问题。我需要编写一个 MS SQL 语句来实现以下目标:
Table1 有 2 列:Column1
和 Column2
table1 中的数据看起来像
Column1 Column2
1 a
1 b
1 c
2 w
2 e
3 x
我需要我的 Sql 语句输出如下
Column1 Column2
1 a, b, c
2 w, e
3 x
所示换句话说,我需要按第 1 列进行分组,并将第 2 列值用逗号分隔连接起来。请注意,这需要能够在 SQL Server 2000 及更高版本上运行
Hi
Can anybody help me with the following. I need to write a MS SQL statment to achive the following:
Table1 has 2 columns: Column1
and Column2
Data in table1 looks like
Column1 Column2
1 a
1 b
1 c
2 w
2 e
3 x
I need my Sql statment to output as following
Column1 Column2
1 a, b, c
2 w, e
3 x
So in other words I need to group by column1 and have the column2 values concatenate with comma seperated. Please note this will need to be able to run on SQL Server 2000 and above
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以创建一个函数来连接值
所以假设您有这个表
您可以像这样使用它
You can create a function to concat the values
So assuming you had this table
You use it like this