以逗号分隔的字符串形式检索 SQL 关系
我有一个 SQL Server 2005 数据库,其中有两个表:Order、LineItem。每个 LineItem 都有一个名为 LineItemID 和 OrderID 的字段。我有一个查询正在获取数据库中的所有订单记录。对于每个订单记录,我想检索与订单关联的以逗号分隔的 LineItemID 列表。
有没有办法在 SQL 中做到这一点?我不知道该怎么做。
谢谢你!
I have a SQL Server 2005 database with two tables: Order, LineItem. Each LineItem has a field called LineItemID and OrderID. I have a query that is getting all of the Order records in my database. With each Order record, I would like to retrieve a comma delimited list of LineItemIDs associated with the Order.
Is there a way to do this in SQL? I do not know how to do this.
Thank you!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
下面是一个示例,使用 sys.tables 中的 name 列,说明如何从列构造逗号分隔的字符串:
Here's one example, using the name column from sys.tables, of how to construct a comma-delimited string from a column: