I have an SQL (Oracle Solution) output which looks like below:
ID Value
1 31
1 44
2 31
3 22
4 57
4 69
ID and value are brought in from different tables using an inner join.
When I select ID and Value, I am wanting to concatenate the value (separated by a comma) when the ID is a match, so that it looks like below:
ID Value
1 31,44
2 31
3 22
4 57,69
How can I make this happen?