我一直在尝试这样做,直到我无法弄清楚如何,
我只是想将多行连接成一行并将其作为最终列查询的值。为了显示;
初始查询:
ColumnOne
---------
Row1 | 1 - One
Row2 | 2 - Two
Row3 | 3 - Three
我想做类似的事情,
1 - One, 2 - Two, 3 - Three
最终结果应如下所示:
Name | Age | Text
-----------------
Paul | 12 | 1 - One, 2 - Two, 3 - Three
John | 34 | 1 - One, 2 - Two, 3 - Three
Alex | 15 | 1 - One, 2 - Two, 3 - Three
我将使用文本列作为 RDL 字段的描述
有人请吗?