I have a table with the following values:
NAME Value1 Value2
--------------------------------
N1 1 10
N1 2 11
N2 3 12
N2 4 13
N2 5 14
and I want to create the following result:
NAME Value1 Value2_CSV
-----------------------------------
N1 1 10,11
N1 2 10,11
N2 3 12,13,14
N2 4 12,13,14
N2 5 12,13,14
Could anyone help please? Thanks in advance