查询获取以逗号分隔的列值
我正在使用 Oracle 10g。我想要用逗号分隔表中列的字符串。
例如
Table : Customer
Columns: id and name
数据:
id-------name
1-------John
2-------Galt
3-------Howard
4-------Roark
查询的输出应该是Jon,Galt,Howard,Roark
Possible Duplicates:
Is there an Oracle SQL query that aggregates multiple rows into one row?
Agregate rows in Oracle SQL statement
I am working with Oracle 10g. I want to have a comma separated String from a column in a table.
e.g.
Table : Customer
Columns: id and name
Data:
id-------name
1-------John
2-------Galt
3-------Howard
4-------Roark
Output of query should be Jon,Galt,Howard,Roark
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好的,明白了,我想要的就是这样:
将所有评论标记为 +1。谢谢你们。
Ok, got it, all I wanted was this:
Marking all comments as +1. Thanks guys.