Hey guys,
I'm not too sure how to describe this, but here's a stab at it. I have a list of ID's which contain a few duplicates. I want to make a query that concat's all the ID's and show the non-similar data in a separate column. Something like...
ID || Name
1 || 1
1 || 2
1 || 3
1 || 4
1 || 5
1 || 6
1 || 7
And show
ID || Name
1 || 1,2,3,4,5,6,7
I'm not too sure how to describe this, but here's a stab at it. I have a list of ID's which contain a few duplicates. I want to make a query that concat's all the ID's and show the non-similar data in a separate column. Something like...
ID || Name
1 || 1
1 || 2
1 || 3
1 || 4
1 || 5
1 || 6
1 || 7
And show
ID || Name
1 || 1,2,3,4,5,6,7