我正在尝试为 CSV 导入处理一些数据,但遇到了一些问题。
我的带有示例数据的表:
node_id, comment
1,comment1
1,comment2
2,comment3
3,comment4
4,comment5
4,comment6
4,comment7
我想做的是运行一个查询,将具有相同 node_id 的所有评论放在一行中:
1,comment1,comment2
2,comment3
3,comment4
4,comment5,comment6,comment7
有谁知道如何做到这一点?